diff --git a/lua/app.meta b/lua/app.meta
new file mode 100644
index 00000000..c8bd5648
--- /dev/null
+++ b/lua/app.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: bee5b0159cd785f40a74d5a225e5fc9e
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/bf.meta b/lua/app/bf.meta
new file mode 100644
index 00000000..5479d82f
--- /dev/null
+++ b/lua/app/bf.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: aeccc7afe321ee046a0d31067d07f097
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/bf/common.meta b/lua/app/bf/common.meta
new file mode 100644
index 00000000..d03d0e88
--- /dev/null
+++ b/lua/app/bf/common.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 2e378a528486f1d4381e29cd9aa82a27
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/bf/common/functions.lua b/lua/app/bf/common/functions.lua
new file mode 100644
index 00000000..108d6a82
--- /dev/null
+++ b/lua/app/bf/common/functions.lua
@@ -0,0 +1,583 @@
+--[[
+
+Copyright (c) 2014-2017 Chukong Technologies Inc.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+]]
+
+function checknumber(value, base)
+ return tonumber(value, base) or 0
+end
+
+function checkint(value)
+ return math.round(checknumber(value))
+end
+
+function checkbool(value)
+ return (value ~= nil and value ~= false)
+end
+
+function checktable(value)
+ if type(value) ~= "table" then value = {} end
+ return value
+end
+
+function clone(object)
+ local lookup_table = {}
+ local function _copy(object)
+ if type(object) ~= "table" then
+ return object
+ elseif lookup_table[object] then
+ return lookup_table[object]
+ end
+ local newObject = {}
+ lookup_table[object] = newObject
+ for key, value in pairs(object) do
+ newObject[_copy(key)] = _copy(value)
+ end
+ return setmetatable(newObject, getmetatable(object))
+ end
+ return _copy(object)
+end
+
+local function emptyFunction()
+end
+
+function class(classname, super)
+ local cls = {__cname = classname}
+
+ if super then
+ local superType = type(super)
+ assert(superType == "table",
+ string.format("class() - create class \"%s\" with invalid super class type \"%s\"",
+ classname, superType))
+ cls.super = super
+ setmetatable(cls, {__index = super})
+ end
+
+ cls.ctor = emptyFunction
+ cls.new = function(_, ...)
+ local instance = {}
+ setmetatable(instance, {__index = cls})
+ instance.class = cls
+ if instance.super then
+ local _constructor
+ _constructor = function(c, ...)
+ if c.super then
+ _constructor(c.super, ...)
+ end
+ c.ctor(instance, ...)
+ end
+ _constructor(instance.super, ...)
+ end
+ instance:ctor(...)
+ return instance
+ end
+ cls.create = cls.new
+ return cls
+end
+
+function iskindof(obj, classname)
+ local t = type(obj)
+ if t ~= "table" then return false end
+
+ local mt = getmetatable(obj)
+ if mt then
+ local __index = rawget(mt, "__index")
+ if type(__index) == "table" and rawget(__index, "__cname") == classname then return true end
+ end
+
+ if rawget(obj, "__cname") == classname then return true end
+
+ local super = obj.super
+ while super do
+ if rawget(super, "__cname") == classname then return true end
+ super = super.super
+ end
+ return false
+end
+
+function handler(obj, method)
+ return function(...)
+ return method(obj, ...)
+ end
+end
+
+function math.newrandomseed()
+ local ok, socket = pcall(function()
+ return require("socket")
+ end)
+
+ if ok then
+ math.randomseed(socket.gettime() * 1000)
+ else
+ math.randomseed(os.time())
+ end
+ math.random()
+ math.random()
+ math.random()
+ math.random()
+end
+
+function math.round(value)
+ value = checknumber(value)
+ return math.floor(value + 0.5)
+end
+
+function math.clamp(value, min, max)
+ if value < min then
+ return min
+ end
+ if value > max then
+ return max
+ end
+ return value
+end
+
+local pi_div_180 = math.pi / 180
+function math.angle2radian(angle)
+ return angle * pi_div_180
+end
+
+function math.radian2angle(radian)
+ return radian * 180 / math.pi
+end
+
+function io.exists(path)
+ local file = io.open(path, "r")
+ if file then
+ io.close(file)
+ return true
+ end
+ return false
+end
+
+function io.readfile(path)
+ local file = io.open(path, "r")
+ if file then
+ local content = file:read("*a")
+ io.close(file)
+ return content
+ end
+ return nil
+end
+
+function io.writefile(path, content, mode)
+ mode = mode or "w+b"
+ local file = io.open(path, mode)
+ if file then
+ if file:write(content) == nil then return false end
+ io.close(file)
+ return true
+ else
+ return false
+ end
+end
+
+function io.pathinfo(path)
+ local pos = string.len(path)
+ local extpos = pos + 1
+ while pos > 0 do
+ local b = string.byte(path, pos)
+ if b == 46 then -- 46 = char "."
+ extpos = pos
+ elseif b == 47 then -- 47 = char "/"
+ break
+ end
+ pos = pos - 1
+ end
+
+ local dirname = string.sub(path, 1, pos)
+ local filename = string.sub(path, pos + 1)
+ extpos = extpos - pos
+ local basename = string.sub(filename, 1, extpos - 1)
+ local extname = string.sub(filename, extpos)
+ return {
+ dirname = dirname,
+ filename = filename,
+ basename = basename,
+ extname = extname
+ }
+end
+
+function io.filesize(path)
+ local size = false
+ local file = io.open(path, "r")
+ if file then
+ local current = file:seek()
+ size = file:seek("end")
+ file:seek("set", current)
+ io.close(file)
+ end
+ return size
+end
+
+function table.nums(t)
+ local count = 0
+ for k, v in pairs(t) do
+ count = count + 1
+ end
+ return count
+end
+
+function table.keys(hashtable)
+ local keys = {}
+ for k, v in pairs(hashtable) do
+ keys[#keys + 1] = k
+ end
+ return keys
+end
+
+function table.values(hashtable)
+ local values = {}
+ for k, v in pairs(hashtable) do
+ values[#values + 1] = v
+ end
+ return values
+end
+
+function table.merge(dest, src)
+ for k, v in pairs(src) do
+ dest[k] = v
+ end
+end
+
+function table.insertto(dest, src, begin)
+ begin = checkint(begin)
+ if begin <= 0 then
+ begin = #dest + 1
+ end
+
+ local len = #src
+ for i = 0, len - 1 do
+ dest[i + begin] = src[i + 1]
+ end
+end
+
+function table.indexof(array, value, begin)
+ for i = begin or 1, #array do
+ if array[i] == value then return i end
+ end
+ return false
+end
+
+function table.keyof(hashtable, value)
+ for k, v in pairs(hashtable) do
+ if v == value then return k end
+ end
+ return nil
+end
+
+function table.removebyvalue(array, value, removeall)
+ local c, i, max = 0, 1, #array
+ while i <= max do
+ if array[i] == value then
+ table.remove(array, i)
+ c = c + 1
+ i = i - 1
+ max = max - 1
+ if not removeall then break end
+ end
+ i = i + 1
+ end
+ return c
+end
+
+function table.map(t, fn)
+ for k, v in pairs(t) do
+ t[k] = fn(v, k)
+ end
+end
+
+function table.walk(t, fn)
+ for k,v in pairs(t) do
+ fn(v, k)
+ end
+end
+
+function table.filter(t, fn)
+ for k, v in pairs(t) do
+ if not fn(v, k) then t[k] = nil end
+ end
+end
+
+function table.unique(t, bArray)
+ local check = {}
+ local n = {}
+ local idx = 1
+ for k, v in pairs(t) do
+ if not check[v] then
+ if bArray then
+ n[idx] = v
+ idx = idx + 1
+ else
+ n[k] = v
+ end
+ check[v] = true
+ end
+ end
+ return n
+end
+
+function table.containValue(t, value)
+ for k, v in pairs(t) do
+ if v == value then
+ return true
+ end
+ end
+ return false
+end
+
+function table.shuffle(t)
+ if type(t)~="table" then
+ return
+ end
+ local tab = {}
+ local index = 1
+ while #t ~= 0 do
+ local n = math.random(1, #t)
+ if t[n] ~= nil then
+ tab[index] = t[n]
+ table.remove(t,n)
+ index = index + 1
+ end
+ end
+ return tab
+end
+
+---查找一个满足条件的元素
+---@param t table
+---@param predict fun(item):boolean
+function table.find(t, predict)
+ for k, v in pairs(t) do
+ if predict(v) then
+ return v, k
+ end
+ end
+end
+
+---浅拷贝
+---@param t table
+---@return table
+function table.refCopy(t)
+ if not t then return nil end
+ local copy = {}
+ for i,v in pairs(t) do
+ copy[i] = v
+ end
+ return copy
+end
+
+---将array'from' insert到to
+function table.addArray(to, from)
+ if not to or not from then return end
+ for _, v in ipairs(from) do
+ table.insert(to, v)
+ end
+ return to
+end
+
+---将array'from' insert到to
+function table.addDic(to, from)
+ if not to or not from then return end
+ for _, v in pairs(from) do
+ to[_] = v
+ end
+ return to
+end
+
+--tbl需要删除对象的表, func用于判断是否是需要删除的对象的函数,
+--func返回两个参数,1、是否remove 2、是否继续
+---该函数会copy一次table
+function table.removeEx(tbl, func)
+ if tbl == nil or func == nil then
+ return tbl
+ end
+ local newTbl = {}
+ for k, v in pairs(tbl) do
+ local needRemove, continue = func(k, v)
+
+ if not needRemove and v then
+ newTbl[#newTbl + 1] = v
+ end
+
+ if not continue then
+ break
+ end
+ end
+ return newTbl
+end
+
+--- 反转阵列
+function table.revert(tableArray)
+ local length = #tableArray
+ local half = length / 2
+ local temp
+ for i = 1, half do
+ temp = tableArray[i]
+ tableArray[i] = tableArray[length - i + 1]
+ tableArray[length - i + 1] = temp
+ end
+ return tableArray
+end
+
+---满足任意条件
+function table.any(tbl, func)
+ for _, v in pairs(tbl) do
+ if func(v) then
+ return true
+ end
+ end
+ return false
+end
+
+--- 遍历
+function table.foreach(tbl, func)
+ for k, v in pairs(tbl) do
+ func(k, v)
+ end
+end
+
+--- 计算每一个val的满足条件的count
+function table.count(tbl, func)
+ local result = 0
+ for _, v in pairs(tbl) do
+ result = result + func(v)
+ end
+ return result
+end
+
+
+string._htmlspecialchars_set = {}
+string._htmlspecialchars_set["&"] = "&"
+string._htmlspecialchars_set["\""] = """
+string._htmlspecialchars_set["'"] = "'"
+string._htmlspecialchars_set["<"] = "<"
+string._htmlspecialchars_set[">"] = ">"
+
+function string.htmlspecialchars(input)
+ for k, v in pairs(string._htmlspecialchars_set) do
+ input = string.gsub(input, k, v)
+ end
+ return input
+end
+
+function string.restorehtmlspecialchars(input)
+ for k, v in pairs(string._htmlspecialchars_set) do
+ input = string.gsub(input, v, k)
+ end
+ return input
+end
+
+function string.nl2br(input)
+ return string.gsub(input, "\n", "
")
+end
+
+function string.text2html(input)
+ input = string.gsub(input, "\t", " ")
+ input = string.htmlspecialchars(input)
+ input = string.gsub(input, " ", " ")
+ input = string.nl2br(input)
+ return input
+end
+
+function string.split(input, delimiter)
+ input = tostring(input)
+ delimiter = tostring(delimiter)
+ if (delimiter=='') then return false end
+ local pos,arr = 0, {}
+ -- for each divider found
+ for st,sp in function() return string.find(input, delimiter, pos, true) end do
+ table.insert(arr, string.sub(input, pos, st - 1))
+ pos = sp + 1
+ end
+ table.insert(arr, string.sub(input, pos))
+ return arr
+end
+
+function string.ltrim(input)
+ return string.gsub(input, "^[ \t\n\r]+", "")
+end
+
+function string.rtrim(input)
+ return string.gsub(input, "[ \t\n\r]+$", "")
+end
+
+function string.trim(input)
+ input = string.gsub(input, "^[ \t\n\r]+", "")
+ return string.gsub(input, "[ \t\n\r]+$", "")
+end
+
+function string.ucfirst(input)
+ return string.upper(string.sub(input, 1, 1)) .. string.sub(input, 2)
+end
+
+local function urlencodechar(char)
+ return "%" .. string.format("%02X", string.byte(char))
+end
+function string.urlencode(input)
+ -- convert line endings
+ input = string.gsub(tostring(input), "\n", "\r\n")
+ -- escape all characters but alphanumeric, '.' and '-'
+ input = string.gsub(input, "([^%w%.%- ])", urlencodechar)
+ -- convert spaces to "+" symbols
+ return string.gsub(input, " ", "+")
+end
+
+function string.urldecode(input)
+ input = string.gsub (input, "+", " ")
+ input = string.gsub (input, "%%(%x%x)", function(h) return string.char(checknumber(h,16)) end)
+ input = string.gsub (input, "\r\n", "\n")
+ return input
+end
+
+function string.utf8len(input)
+ local len = string.len(input)
+ local left = len
+ local cnt = 0
+ local arr = {0, 0xc0, 0xe0, 0xf0, 0xf8, 0xfc}
+ while left ~= 0 do
+ local tmp = string.byte(input, -left)
+ local i = #arr
+ while arr[i] do
+ if tmp >= arr[i] then
+ left = left - i
+ break
+ end
+ i = i - 1
+ end
+ cnt = cnt + 1
+ end
+ return cnt
+end
+
+function string.formatnumberthousands(num)
+ local formatted = tostring(checknumber(num))
+ local k
+ while true do
+ formatted, k = string.gsub(formatted, "^(-?%d+)(%d%d%d)", '%1,%2')
+ if k == 0 then break end
+ end
+ return formatted
+end
+
+function string.isEmptyOrNil(str)
+ return not str or #str == 0
+end
\ No newline at end of file
diff --git a/lua/app/bf/common/functions.lua.meta b/lua/app/bf/common/functions.lua.meta
new file mode 100644
index 00000000..2ba4ae8b
--- /dev/null
+++ b/lua/app/bf/common/functions.lua.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 36aceca3a16f9474a9e5541202a761a6
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/bf/component.meta b/lua/app/bf/component.meta
new file mode 100644
index 00000000..ec82bf37
--- /dev/null
+++ b/lua/app/bf/component.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 84f8ba1d4c11fd341823cbc068b8a1e6
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/bf/component/lua_component.lua b/lua/app/bf/component/lua_component.lua
new file mode 100644
index 00000000..88a20b3c
--- /dev/null
+++ b/lua/app/bf/component/lua_component.lua
@@ -0,0 +1,85 @@
+---@class LuaComponent
+local Component = class("Component")
+
+function Component:ctor()
+end
+
+function Component:init()
+end
+
+function Component:getBaseObject()
+ return self.baseObject
+end
+
+function Component:getGameObject()
+ return self.baseObject:getGameObject()
+end
+
+function Component:getUIMap()
+ return self.baseObject:genAllChildren()
+end
+
+function Component:bind(data, fieldName, bindFunc, immediately)
+ self:_addOnDestroyCallback()
+ if not self._baseBindData then
+ self._baseBindData = {}
+ end
+ if not self._baseBindData[data] then
+ self._baseBindData[data] = {}
+ end
+ data:bind(fieldName, self, bindFunc, immediately)
+ table.insert(self._baseBindData[data], fieldName)
+end
+
+function Component:unBind(data, fieldName)
+ if self._baseBindData and self._baseBindData[data] then
+ for i, field in ipairs(self._baseBindData[data]) do
+ if field == fieldName then
+ data:unBind(field, self)
+ table.remove(self._baseBindData[data], i)
+ break
+ end
+ end
+ end
+end
+
+function Component:unBindAll()
+ if not self._baseBindData then
+ return
+ end
+
+ for data, fields in pairs(self._baseBindData) do
+ for _, field in ipairs(fields) do
+ data:unBind(field, self)
+ end
+ end
+ self._baseBindData = nil
+end
+
+function Component:isDestroyed()
+ return self.baseObject:isDestroyed()
+end
+
+function Component:onDestroy()
+end
+
+function Component:_init(baseObject)
+ self.baseObject = baseObject
+ if self.onDestroy ~= Component.onDestroy then -- 说明重写了onDestroy
+ self:_addOnDestroyCallback()
+ end
+ self:init()
+end
+
+function Component:_addOnDestroyCallback()
+ if self._addOnDestroyFlag then
+ return
+ end
+ self._addOnDestroyFlag = true
+ self.baseObject:addOnDestroyCallback(function()
+ self:unBindAll()
+ self:onDestroy()
+ end)
+end
+
+return Component
\ No newline at end of file
diff --git a/lua/app/bf/component/lua_component.lua.meta b/lua/app/bf/component/lua_component.lua.meta
new file mode 100644
index 00000000..a7556188
--- /dev/null
+++ b/lua/app/bf/component/lua_component.lua.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 23d302132daaaaa40a2b7fec60cb1ad7
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/bf/init.lua b/lua/app/bf/init.lua
new file mode 100644
index 00000000..a3d60470
--- /dev/null
+++ b/lua/app/bf/init.lua
@@ -0,0 +1,29 @@
+
+--禁用默认全局变量
+-- export global variable
+local __g = _G
+BF = BF or {}
+BF.exports = BF.exports or {}
+setmetatable(BF.exports, {
+ __newindex = function(_, name, value)
+ rawset(__g, name, value)
+ end,
+
+ __index = function(_, name)
+ return rawget(__g, name)
+ end
+})
+
+-- disable create unexpected global variable
+local function disableGlobal()
+ setmetatable(__g, {
+ __newindex = function(_, name, value)
+ print("new index, name is :", name)
+ error(string.format("USE \" BF.exports.%s = value \" INSTEAD OF SET GLOBAL VARIABLE", name), 0)
+ end
+ })
+end
+
+BF.disableGlobal = disableGlobal
+
+disableGlobal()
\ No newline at end of file
diff --git a/lua/app/bf/init.lua.meta b/lua/app/bf/init.lua.meta
new file mode 100644
index 00000000..0f427e62
--- /dev/null
+++ b/lua/app/bf/init.lua.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 832f162f9b7af294a9ee5439141ff67b
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/bf/state_machine.meta b/lua/app/bf/state_machine.meta
new file mode 100644
index 00000000..52ca433d
--- /dev/null
+++ b/lua/app/bf/state_machine.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: aab46fb223e2b23458d2061ab393b68a
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/bf/state_machine/state_interface.lua b/lua/app/bf/state_machine/state_interface.lua
new file mode 100644
index 00000000..5d970380
--- /dev/null
+++ b/lua/app/bf/state_machine/state_interface.lua
@@ -0,0 +1,15 @@
+local StateInterface = class("StateInterface")
+
+function StateInterface:enter(params)
+end
+
+function StateInterface:tick()
+end
+
+function StateInterface:exit()
+end
+
+function StateInterface:clear()
+end
+
+return StateInterface
\ No newline at end of file
diff --git a/lua/app/bf/state_machine/state_interface.lua.meta b/lua/app/bf/state_machine/state_interface.lua.meta
new file mode 100644
index 00000000..8b77c8b2
--- /dev/null
+++ b/lua/app/bf/state_machine/state_interface.lua.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 7c2a24b56b316e2459d21803b1121945
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/bf/state_machine/state_machine.lua b/lua/app/bf/state_machine/state_machine.lua
new file mode 100644
index 00000000..4554ec4a
--- /dev/null
+++ b/lua/app/bf/state_machine/state_machine.lua
@@ -0,0 +1,109 @@
+local StateMachine = class("StateMachine")
+
+function StateMachine:ctor()
+ self.stateMap = {}
+ self.active = false
+ self.curStateKey = nil
+ self.curState = nil
+end
+
+---- 获取是否active
+function StateMachine:getIsActive()
+ return self.active
+end
+
+---- 获取当前state StateInterface
+function StateMachine:getCurState()
+ return self.curState
+end
+
+---- 获取当前state对应的key
+function StateMachine:getCurStateKey()
+ return self.curStateKey
+end
+
+---- 获取state
+function StateMachine:getStateByKey(key)
+ return self.stateMap[key]
+end
+
+---- 注册一个state
+function StateMachine:registerState(stateKey, state)
+ if self.stateMap[stateKey] then
+ Logger.logWarning("StateMachine registerState: state machine already have state %s", stateKey)
+ return
+ end
+ self.stateMap[stateKey] = state
+end
+
+---- 改变状态
+function StateMachine:changeState(stateKey, params)
+ if not self.active then
+ Logger.logWarning("StateMachine changeState: state machine not active")
+ return
+ end
+ local newState = self.stateMap[stateKey]
+ if newState then
+ self.curState:exit()
+ self.curState = newState
+ self.curStateKey = stateKey
+ self.curState:enter(params)
+ else
+ Logger.logWarning("StateMachine changeState: state machine no such state %s", stateKey)
+ end
+end
+
+---- start状态机
+function StateMachine:start(stateKey, params)
+ if self.active then
+ return
+ end
+ local newState = self.stateMap[stateKey]
+ if newState then
+ self.curState = newState
+ self.curState:enter(params)
+ self.curStateKey = stateKey
+ self.active = true
+ else
+ Logger.logWarning("StateMachine start: state machine no such state %s", stateKey)
+ end
+end
+
+---- 重新开始状态机
+function StateMachine:restart(stateKey, params)
+ local newState = self.stateMap[stateKey]
+ if newState then
+ if self.active then
+ self.curState:exit()
+ end
+ self.curState = newState
+ self.curStateKey = stateKey
+ self.curState:enter(params)
+ self.active = true
+ else
+ Logger.logWarning("StateMachine restart: state machine no such state %s", stateKey)
+ end
+end
+
+---- 停止状态机
+function StateMachine:stop()
+ if not self.active then
+ return
+ end
+ self.curState:exit()
+ self.curState = nil
+ self.curStateKey = nil
+ self.active = false
+ for _, state in pairs(self.stateMap) do
+ state:clear()
+ end
+end
+
+---- 每帧tick当前状态
+function StateMachine:tick()
+ if self.active then
+ self.curState:tick()
+ end
+end
+
+return StateMachine
\ No newline at end of file
diff --git a/lua/app/bf/state_machine/state_machine.lua.meta b/lua/app/bf/state_machine/state_machine.lua.meta
new file mode 100644
index 00000000..adbc9288
--- /dev/null
+++ b/lua/app/bf/state_machine/state_machine.lua.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: b074e5dabbe91294fa6ea868939eb0b5
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/bf/unity.meta b/lua/app/bf/unity.meta
new file mode 100644
index 00000000..16729a9e
--- /dev/null
+++ b/lua/app/bf/unity.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: b4af23ba746bfe84f81559ac6e2a628c
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/bf/unity/base_object.lua b/lua/app/bf/unity/base_object.lua
new file mode 100644
index 00000000..1f393a74
--- /dev/null
+++ b/lua/app/bf/unity/base_object.lua
@@ -0,0 +1,574 @@
+---@class BaseObject
+local BaseObject = class("GameObject")
+
+local Vector2 = BF.Vector2(0, 0)
+local Vector3 = BF.Vector3(0, 0, 0)
+
+function BaseObject:ctor()
+ self.components = {}
+ self.childList = {}
+end
+
+function BaseObject:initWithPrefab(assetPath, prefab)
+ self.assetPath = assetPath
+ self.gameObject = prefab
+end
+
+function BaseObject:initWithGameObject(gameObject)
+ self.gameObject = gameObject
+end
+
+function BaseObject:getAssetPath()
+ return self.assetPath
+end
+
+function BaseObject:setCustomData(name, value)
+ if self.customData == nil then
+ self.customData = {}
+ end
+ self.customData[name] = value
+end
+
+function BaseObject:getCustomData(name)
+ if self.customData == nil then
+ return nil
+ end
+ return self.customData[name]
+end
+
+function BaseObject:dontDestroyOnLoad()
+ CS.UnityEngine.GameObject.DontDestroyOnLoad(self:getGameObject())
+end
+
+function BaseObject:getGameObject()
+ return self.gameObject
+end
+
+function BaseObject:getTransform()
+ if self.transform == nil then
+ local gameObject = self:getGameObject()
+ if gameObject then
+ self.transform = gameObject.transform
+ end
+ end
+ return self.transform
+end
+
+function BaseObject:getInstanceID()
+ local gameObject = self:getGameObject()
+ if gameObject then
+ return gameObject:GetInstanceID()
+ end
+ return 0
+end
+
+function BaseObject:addLuaComponent(componentType, params)
+ local comp = self.components[componentType]
+ if comp == nil then
+ comp = require(componentType):create(params)
+ comp:_init(self)
+ self.components[componentType] = comp
+ end
+ return comp
+end
+
+function BaseObject:removeLuaComponent(componentType)
+ self.components[componentType] = nil
+end
+
+function BaseObject:getLuaComponent(componentType)
+ if self.components[componentType] == nil then
+ local comp = require(componentType):create()
+ comp:_init(self)
+ self.components[componentType] = comp
+ end
+ return self.components[componentType]
+end
+
+function BaseObject:addComponent(componentType)
+ if self.components[componentType] == nil then
+ local gameObject = self:getGameObject()
+ if gameObject then
+ self.components[componentType] = gameObject:AddComponent(componentType)
+ end
+ end
+ return self.components[componentType]
+end
+
+function BaseObject:getComponent(componentType)
+ if self.components[componentType] == nil then
+ local gameObject = self:getGameObject()
+ if gameObject then
+ local com = gameObject:BFGetComponent(componentType)
+ self.components[componentType] = com
+ end
+ end
+ return self.components[componentType]
+end
+
+function BaseObject:getAllComponents()
+ return self.components
+end
+
+function BaseObject:getActiveSelf()
+ local gameObject = self:getGameObject()
+ return gameObject.activeSelf
+end
+
+function BaseObject:setActive(active)
+ local gameObject = self:getGameObject()
+ if gameObject then
+ gameObject:SetActive(active)
+ end
+end
+
+function BaseObject:setName(name)
+ self.name = name
+end
+
+function BaseObject:getName()
+ return self.name or ""
+end
+
+function BaseObject:setScrollRectCellName(nameIndex)
+ local gameObject = self:getGameObject()
+ if gameObject then
+ gameObject.name = tostring(nameIndex)
+ end
+end
+
+function BaseObject:setTag(tag)
+ self.tag = tag
+end
+
+function BaseObject:getTag()
+ return self.tag
+end
+
+function BaseObject:setLayer(layer)
+ local trans = self:getTransform():GetComponentsInChildren(GConst.TYPEOF_UNITY_CLASS.TRANSFORM, true)
+ if trans then
+ local len = trans.Length
+ for i = 0, len - 1 do
+ trans[i].gameObject.layer = layer
+ end
+ end
+end
+
+function BaseObject:getAnchoredPosition()
+ local transform = self:getTransform()
+ return transform.anchoredPosition
+end
+
+function BaseObject:getAnchoredPositionX()
+ local transform = self:getTransform()
+ return transform.anchoredPosition.x
+end
+
+function BaseObject:getAnchoredPositionY()
+ local transform = self:getTransform()
+ return transform.anchoredPosition.y
+end
+
+function BaseObject:setAnchoredPositionX(x)
+ local transform = self:getTransform()
+ Vector2.x = x
+ Vector2.y = transform.anchoredPosition.y
+ transform.anchoredPosition = Vector2
+end
+
+function BaseObject:setAnchoredPositionY(y)
+ local transform = self:getTransform()
+ Vector2.x = transform.anchoredPosition.x
+ Vector2.y = y
+ transform.anchoredPosition = Vector2
+end
+
+function BaseObject:setAnchoredPosition(x, y)
+ local transform = self:getTransform()
+ Vector2.x = x
+ Vector2.y = y
+ transform.anchoredPosition = Vector2
+end
+
+function BaseObject:addAnchoredPosition(x, y)
+ local transform = self:getTransform()
+ local anchoredPosition = transform.anchoredPosition
+ Vector2.x = x + anchoredPosition.x
+ Vector2.y = y + anchoredPosition.y
+ transform.anchoredPosition = Vector2
+end
+
+function BaseObject:getRectSize()
+ local transform = self:getTransform()
+ return transform.rect
+end
+
+function BaseObject:getSizeDeltaY()
+ local transform = self:getTransform()
+ return transform.sizeDelta.y
+end
+
+function BaseObject:getSizeDeltaX()
+ local transform = self:getTransform()
+ return transform.sizeDelta.x
+end
+
+function BaseObject:setSizeDeltaX(x)
+ local transform = self:getTransform()
+ Vector2.x = x
+ Vector2.y = transform.sizeDelta.y
+ transform.sizeDelta = Vector2
+end
+
+function BaseObject:setSizeDeltaY(y)
+ local transform = self:getTransform()
+ Vector2.x = transform.sizeDelta.x
+ Vector2.y = y
+ transform.sizeDelta = Vector2
+end
+
+function BaseObject:setSizeDelta(x, y)
+ local transform = self:getTransform()
+ Vector2.x = x
+ Vector2.y = y
+ transform.sizeDelta = Vector2
+end
+
+function BaseObject:addSizeDelta(x, y)
+ local transform = self:getTransform()
+ local sizeDelta = transform.sizeDelta
+ Vector2.x = x + sizeDelta.x
+ Vector2.y = y + sizeDelta.y
+ transform.sizeDelta = Vector2
+end
+
+function BaseObject:setPosition(x, y, z)
+ local transform = self:getTransform()
+ Vector3.x = x
+ Vector3.y = y
+ Vector3.z = z
+ transform.position = Vector3
+end
+
+function BaseObject:addPosition(x, y, z)
+ local transform = self:getTransform()
+ local position = transform.position
+ Vector3.x = x + position.x
+ Vector3.y = y + position.y
+ Vector3.z = z + position.z
+ transform.position = Vector3
+end
+
+function BaseObject:getLocalPosition()
+ local transform = self:getTransform()
+ return transform.localPosition
+end
+
+function BaseObject:setLocalPosition(x, y, z)
+ local transform = self:getTransform()
+ Vector3.x = x
+ Vector3.y = y
+ Vector3.z = z
+ transform.localPosition = Vector3
+end
+
+function BaseObject:setLocalPositionX(x)
+ local transform = self:getTransform()
+ local localPosition = transform.localPosition
+ Vector3.x = x
+ Vector3.y = localPosition.y
+ Vector3.z = localPosition.z
+ transform.localPosition = Vector3
+end
+
+function BaseObject:setLocalPositionY(y)
+ local transform = self:getTransform()
+ local localPosition = transform.localPosition
+ Vector3.x = localPosition.x
+ Vector3.y = y
+ Vector3.z = localPosition.z
+ transform.localPosition = Vector3
+end
+
+function BaseObject:setLocalPositionZ(z)
+ local transform = self:getTransform()
+ local localPosition = transform.localPosition
+ Vector3.x = localPosition.x
+ Vector3.y = localPosition.y
+ Vector3.z = z
+ transform.localPosition = Vector3
+end
+
+function BaseObject:addLocalPosition(x, y, z)
+ local transform = self:getTransform()
+ local localPosition = transform.localPosition
+ Vector3.x = x + localPosition.x
+ Vector3.y = y + localPosition.y
+ Vector3.z = z + localPosition.z
+ transform.localPosition = Vector3
+end
+
+function BaseObject:setVisible(visible, scale)
+ local transform = self:getTransform()
+ if visible then
+ Vector3.x = scale or 1
+ Vector3.y = scale or 1
+ Vector3.z = scale or 1
+ else
+ Vector3.x = 0
+ Vector3.y = 0
+ Vector3.z = 0
+ end
+ transform.localScale = Vector3
+end
+
+function BaseObject:setLocalScale(x, y, z)
+ local transform = self:getTransform()
+ Vector3.x = x
+ Vector3.y = y
+ Vector3.z = z
+ transform.localScale = Vector3
+end
+
+function BaseObject:setLocalScaleX(x)
+ local transform = self:getTransform()
+ local currScale = transform.localScale
+ Vector3.x = x
+ Vector3.y = currScale.y
+ Vector3.z = currScale.z
+ transform.localScale = Vector3
+end
+
+function BaseObject:addLocalScale(x, y, z)
+ local transform = self:getTransform()
+ local localScale = transform.localScale
+ Vector3.x = x + localScale.x
+ Vector3.y = y + localScale.y
+ Vector3.z = z + localScale.z
+ transform.localScale = Vector3
+end
+
+function BaseObject:setLocalRotation(x, y, z)
+ local transform = self:getTransform()
+ Vector3.x = x
+ Vector3.y = y
+ Vector3.z = z
+ transform.localRotation = Vector3
+end
+
+function BaseObject:setEulerAngles(x, y, z)
+ local transform = self:getTransform()
+ Vector3.x = x
+ Vector3.y = y
+ Vector3.z = z
+ transform.eulerAngles = Vector3
+end
+
+function BaseObject:addEulerAngles(x, y, z)
+ local transform = self:getTransform()
+ local eulerAngles = transform.eulerAngles
+ Vector3.x = x + eulerAngles.x
+ Vector3.y = y + eulerAngles.y
+ Vector3.z = z + eulerAngles.z
+ transform.eulerAngles = Vector3
+end
+
+function BaseObject:setLocalEulerAngles(x, y, z)
+ local transform = self:getTransform()
+ Vector3.x = x
+ Vector3.y = y
+ Vector3.z = z
+ transform.localEulerAngles = Vector3
+end
+
+function BaseObject:addLocalEulerAngles(x, y, z)
+ local transform = self:getTransform()
+ local localEulerAngles = transform.localEulerAngles
+ Vector3.x = x + localEulerAngles.x
+ Vector3.y = y + localEulerAngles.y
+ Vector3.z = z + localEulerAngles.z
+ transform.localEulerAngles = Vector3
+end
+
+function BaseObject:getAdmin()
+ return self.admin
+end
+
+-- admin可能是parent也可能不是
+function BaseObject:setAdmin(admin)
+ self.admin = admin
+end
+
+function BaseObject:removeAllChildren()
+ if self.childList then
+ local count = #self.childList
+ for i = 1, count do
+ local child = table.remove(self.childList)
+ child:setAdmin(nil)
+ child:destroy()
+ end
+ end
+end
+
+function BaseObject:removeChild(child)
+ if self.childList then
+ for k, v in ipairs(self.childList) do
+ if v == child then
+ table.remove(self.childList, k)
+ break
+ end
+ end
+ end
+end
+
+function BaseObject:getChildList()
+ return self.childList
+end
+
+function BaseObject:getFirstChild()
+ return self.childList[1]
+end
+
+function BaseObject:setParent(parent, worldPositionStays)
+ if self.admin then
+ self.admin:removeChild(self)
+ end
+ local transform = self:getTransform()
+ local parentTransform = parent and parent:getTransform() or nil
+ transform:SetParent(parentTransform, worldPositionStays)
+ if parent then
+ parent:addChildList(self)
+ else
+ self.admin = nil
+ end
+end
+
+function BaseObject:removeFromParent(isNeedCleanUp)
+ if isNeedCleanUp then
+ self:destroy()
+ else
+ if self.admin then
+ self.admin:removeChild(self)
+ self.admin = nil
+ end
+ self:getTransform():SetParent(nil, false)
+ end
+end
+
+function BaseObject:addChildList(child)
+ child:setAdmin(self)
+ table.insert(self.childList, child)
+end
+
+function BaseObject:addPrefab(prefab, worldPositionStays)
+ prefab.transform:SetParent(self:getTransform(), worldPositionStays)
+end
+
+function BaseObject:scheduleGlobal(func, inter)
+ local sid = SchedulerManager:scheduleGlobal(func, inter)
+ if self._schedulerIds == nil then
+ self._schedulerIds = {}
+ end
+ table.insert(self._schedulerIds, sid)
+ return sid
+end
+
+function BaseObject:performWithDelayGlobal(func, delay)
+ local sid = SchedulerManager:performWithDelayGlobal(func, delay)
+ if self._schedulerIds == nil then
+ self._schedulerIds = {}
+ end
+ table.insert(self._schedulerIds, sid)
+ return sid
+end
+
+function BaseObject:unscheduleGlobal(sid)
+ if self._schedulerIds == nil then
+ return
+ end
+ for k, v in ipairs(self._schedulerIds) do
+ if v == sid then
+ table.remove(self._schedulerIds, k)
+ break
+ end
+ end
+ SchedulerManager:unscheduleGlobal(sid)
+end
+
+function BaseObject:createBindTweenSequence()
+ local sequence = DOTweenManager:createSeqWithGameObject(self:getGameObject())
+ return sequence
+end
+
+function BaseObject:doScale(endValue, duration, onComplete)
+ DOTweenManager:doScale(self:getTransform(),endValue,duration,onComplete)
+end
+
+function BaseObject:addUnloadCallback(callback)
+ self._unloadCallback = callback
+end
+
+function BaseObject:addOnDestroyCallback(callback)
+ if not self._onDestroyCallbacks then
+ self._onDestroyCallbacks = {}
+ end
+ table.insert(self._onDestroyCallbacks, callback)
+end
+
+function BaseObject:clearOnDestroyCallback()
+ self._onDestroyCallbacks = nil
+end
+
+function BaseObject:isDestroyed()
+ return self._destroy
+end
+
+function BaseObject:onDestroy()
+ if self._destroy then
+ return
+ end
+ self._destroy = true
+ for k, child in ipairs(self.childList) do
+ child:onDestroy()
+ end
+ if self._schedulerIds then
+ for k, v in ipairs(self._schedulerIds) do
+ SchedulerManager:unscheduleGlobal(v)
+ end
+ self._schedulerIds = nil
+ end
+ if self._unloadCallback then
+ self._unloadCallback(self)
+ self._unloadCallback = nil
+ end
+ if self._onDestroyCallbacks then
+ for _, callback in ipairs(self._onDestroyCallbacks) do
+ callback(self)
+ end
+ self._onDestroyCallbacks = nil
+ end
+ self.childList = nil
+ for k, v in pairs(self.components) do
+ self.components[k] = nil
+ end
+ self.admin = nil
+ self.gameObject = nil
+ self.transform = nil
+end
+
+function BaseObject:destroy()
+ if self._destroy then
+ return
+ end
+ if self.admin then
+ self.admin:removeChild(self)
+ end
+ local gameObject = self.gameObject
+ if gameObject and not CS.BF.Utils.IsNull(gameObject) then
+ ResourceManager:destroyPrefab(gameObject)
+ end
+ self:onDestroy()
+end
+
+return BaseObject
\ No newline at end of file
diff --git a/lua/app/bf/unity/base_object.lua.meta b/lua/app/bf/unity/base_object.lua.meta
new file mode 100644
index 00000000..abc8662a
--- /dev/null
+++ b/lua/app/bf/unity/base_object.lua.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: c999a15d1097bf142a16255bc00cf2b2
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/bf/unity/character_object.lua b/lua/app/bf/unity/character_object.lua
new file mode 100644
index 00000000..7d197e79
--- /dev/null
+++ b/lua/app/bf/unity/character_object.lua
@@ -0,0 +1,498 @@
+local CharacterFSMManager = require "app/module/character_fsm/character_fsm_manager"
+local BaseObject = require "app/bf/unity/base_object"
+local CharacterObject = class("CharacterObject", BaseObject)
+
+local BF_CHARACTER_HELPER = GConst.TYPEOF_UNITY_CLASS.BF_CHARACTER_HELPER
+local ANIMATOR = GConst.TYPEOF_UNITY_CLASS.ANIMATOR
+local ANIMATION_FRAME_PER_SECOND = 30
+
+local SUPPORT_SHADER = {
+ ["BF/Models/Character Battle"] = true,
+}
+
+local hash = GFunc.hash
+
+local HashName = {}
+local function getHashName(str)
+ local intName = HashName[str]
+ if intName == nil then
+ intName = hash(str)
+ HashName[str] = intName
+ end
+ return intName
+end
+
+local CHILDMAP_METATABLE = {
+ __index = function(t, k)
+ if rawget(t, k) == nil then
+ local v = rawget(t, hash(k))
+ if v then
+ rawset(t, k, v)
+ end
+ return v
+ end
+ return rawget(t, k)
+ end
+}
+
+local Vector3 = BF.Vector3(0, 0, 0)
+
+local abs = math.abs
+
+function CharacterObject:ctor()
+ self.timeScale = 1
+end
+
+function CharacterObject:initWithPrefab(assetPath, prefab, modelId)
+ BaseObject.initWithPrefab(self, assetPath, prefab)
+ self.characterHelper = self:getComponent(BF_CHARACTER_HELPER)
+ if self.characterHelper == nil then
+ self.characterHelper = self:addComponent(BF_CHARACTER_HELPER)
+ end
+ self.mainModel = self.characterHelper:GetModelObject()
+ self.objectIndex = -1
+ self.modelId = modelId
+ self:_genAllBones()
+end
+
+function CharacterObject:initWithCharacterHelper(characterHelper, index, gameObject, name, admin)
+ self.characterHelper = characterHelper
+ self.objectIndex = index
+ self.gameObject = gameObject
+ self.name = name
+ self.admin = admin
+end
+
+function CharacterObject:_genAllBones()
+ local childMap = {}
+ if self.characterHelper then
+ local childNum = self.characterHelper:GetListCount()
+ for i = 0, childNum do
+ local gameObject = self.characterHelper:GetGameObjectByIndex(i)
+ local hashName = self.characterHelper:GetHashNameByIndex(i)
+ local child = CharacterObject:create()
+ child:initWithCharacterHelper(self.characterHelper, i, gameObject, hashName, self)
+ if childMap[hashName] == nil then
+ childMap[hashName] = child
+ end
+ table.insert(self.childList, child)
+ end
+ end
+ setmetatable(childMap, CHILDMAP_METATABLE)
+ self.childMap = childMap
+end
+
+function CharacterObject:getBoneByName(name)
+ return self.childMap[name]
+end
+
+function CharacterObject:fastGetPosition()
+ if self.characterHelper then
+ self.characterHelper:CachePosition(self.objectIndex)
+ return self.characterHelper.PositionX, self.characterHelper.PositionY, self.characterHelper.PositionZ
+ else
+ local position = self:getTransform().position
+ return position.x, position.y, position.z
+ end
+end
+
+function CharacterObject:getBonePositionByName(name)
+ return self.childMap[name]:fastGetPosition()
+end
+
+function CharacterObject:getHashCode()
+ local code = -1
+ if self.characterHelper then
+ code = self.characterHelper:GetModelHashCode()
+ end
+ return code
+end
+
+function CharacterObject:play(name, layer, normalizedTime)
+ layer = layer or -1
+ normalizedTime = normalizedTime or 0
+
+ if self.weaponObj and not self.weaponObj:isDestroyed() then
+ if self.weaponAniName then
+ -- local weaponAniName = self:getWeaponSpecialAni(name, self.weaponAniName, true)
+ -- if self.weaponObj:getStateTime(weaponAniName) > 0 then
+ -- self.weaponObj:play(weaponAniName, layer, normalizedTime)
+ -- end
+
+ local newName = self:getWeaponSpecialAni(name, self.weaponAniName) or name
+ if self:getStateTime(newName) > 0 then
+ name = newName
+ end
+ end
+ else
+ self:setWeaponInfo()
+ end
+
+ if self.mainAnimator == nil then
+ if self.mainModel then
+ self.mainAnimator = self.mainModel:GetComponent(ANIMATOR)
+ self.mainAnimator:Play(name, layer, normalizedTime)
+ end
+ else
+ self.mainAnimator:Play(name, layer, normalizedTime)
+ end
+end
+
+function CharacterObject:playHashName(hashName, layer, normalizedTime)
+ layer = layer or -1
+ normalizedTime = normalizedTime or 0
+
+ if self.weaponObj and not self.weaponObj:isDestroyed() then
+ if self.weaponAniName then
+ -- local weaponHashName = self:getWeaponSpecialAniHash(hashName, self.weaponAniName, true)
+ -- if self.weaponObj:getStateTimeHash(weaponHashName) > 0 then
+ -- self.weaponObj:playHashName(weaponHashName, layer, normalizedTime)
+ -- end
+
+ local newHashName = self:getWeaponSpecialAniHash(hashName, self.weaponAniName, true) or hashName
+ if self:getStateTimeHash(newHashName) > 0 then
+ hashName = newHashName
+ end
+ end
+ else
+ self:setWeaponInfo()
+ end
+
+ if self.mainAnimator == nil then
+ if self.mainModel then
+ self.mainAnimator = self.mainModel:GetComponent(ANIMATOR)
+ self.mainAnimator:Play(hashName, layer, normalizedTime)
+ end
+ else
+ self.mainAnimator:Play(hashName, layer, normalizedTime)
+ end
+end
+
+function CharacterObject:getWeaponSpecialAni(name, specialAniName, isWeapon)
+ if not self.weaponSpecialAniMap then
+ self.weaponSpecialAniMap = {}
+ end
+
+ if not self.weaponSpecialAniMap[name] then
+ self.weaponSpecialAniMap[name] = {}
+ end
+
+ if not self.weaponSpecialAniMap[name][specialAniName] then
+ self.weaponSpecialAniMap[name][specialAniName] = {}
+ end
+
+ if not isWeapon then
+ if not self.weaponSpecialAniMap[name][specialAniName].heroAniName then
+ self.weaponSpecialAniMap[name][specialAniName].heroAniName = name .. "_" .. specialAniName
+ end
+ return self.weaponSpecialAniMap[name][specialAniName].heroAniName
+ else
+ if not self.weaponSpecialAniMap[name][specialAniName].weaponAniName and self.modelId then
+ self.weaponSpecialAniMap[name][specialAniName].weaponAniName = self.modelId .. "_" .. name .. "_" .. specialAniName
+ end
+ return self.weaponSpecialAniMap[name][specialAniName].weaponAniName
+ end
+end
+
+function CharacterObject:getWeaponSpecialAniHash(hashName, specialAniName, isWeapon)
+ if not self.weaponSpecialAniHashMap then
+ self.weaponSpecialAniHashMap = {}
+ end
+
+ if not self.weaponSpecialAniHashMap[hashName] then
+ self.weaponSpecialAniHashMap[hashName] = {}
+ end
+
+ if not self.weaponSpecialAniHashMap[hashName][specialAniName] then
+ self.weaponSpecialAniHashMap[hashName][specialAniName] = {}
+ end
+
+ if not isWeapon then
+ if not self.weaponSpecialAniHashMap[hashName][specialAniName].heroAniName then
+ local name = GConst.HeroConst.HERO_ANI_HASH_MAP[hashName]
+ if name then
+ self.weaponSpecialAniHashMap[hashName][specialAniName].heroAniName = CS.UnityEngine.Animator.StringToHash(name .. "_" .. specialAniName)
+ end
+ end
+ return self.weaponSpecialAniHashMap[hashName][specialAniName].heroAniName
+ else
+ if not self.weaponSpecialAniHashMap[hashName][specialAniName].weaponAniName and self.modelId then
+ local name = GConst.HeroConst.HERO_ANI_HASH_MAP[hashName]
+ if name then
+ self.weaponSpecialAniHashMap[hashName][specialAniName].weaponAniName = CS.UnityEngine.Animator.StringToHash(self.modelId .. "_" .. name .. "_" .. specialAniName)
+ end
+ end
+ return self.weaponSpecialAniHashMap[hashName][specialAniName].weaponAniName
+ end
+end
+
+function CharacterObject:setWeaponInfo(weaponAniName, weaponObj)
+ if not weaponObj then
+ self.weaponAniName = nil
+ self.weaponObj = nil
+ end
+ self.weaponAniName = weaponAniName
+ self.weaponObj = weaponObj
+end
+
+function CharacterObject:setAnimatorBool(key, value)
+ if self.mainAnimator == nil then
+ if self.mainModel then
+ self.mainAnimator = self.mainModel:GetComponent(ANIMATOR)
+ self.mainAnimator:SetBool(key, value)
+ end
+ else
+ self.mainAnimator:SetBool(key, value)
+ end
+end
+
+function CharacterObject:getMainAnimator()
+ if self.mainAnimator == nil then
+ if self.mainModel then
+ self.mainAnimator = self.mainModel:GetComponent(ANIMATOR)
+ end
+ end
+ return self.mainAnimator
+end
+
+function CharacterObject:getMainModelTransform()
+ if self.mainModelTransform == nil then
+ self.mainModelTransform = self.mainModel and self.mainModel.transform or nil
+ end
+ return self.mainModelTransform
+end
+
+function CharacterObject:getMainModel()
+ return self.mainModel
+end
+
+function CharacterObject:getCurrentAnimationHash()
+ return CS.BF.Utils.GetCurrentAnimationHash(self:getMainAnimator())
+end
+
+function CharacterObject:setMainModelLocalScale(x, y, z)
+ local transform = self:getMainModelTransform()
+ if transform then
+ Vector3.x = x
+ Vector3.y = y
+ Vector3.z = z
+ transform.localScale = Vector3
+ end
+end
+
+function CharacterObject:setMainModelLocalPosition(x, y, z)
+ if self.characterHelper then
+ self.characterHelper:SetMainModelLocalPosition(x, y, z)
+ else
+ local transform = self:getMainModelTransform()
+ if transform then
+ Vector3.x = x
+ Vector3.y = y
+ Vector3.z = z
+ transform.localPosition = Vector3
+ end
+ end
+end
+
+function CharacterObject:getStateTime(name)
+ local hashName = getHashName(name)
+ return self.characterHelper:GetStateTime(hashName)
+end
+
+function CharacterObject:getStateTimeHash(hashName)
+ return self.characterHelper:GetStateTime(hashName)
+end
+
+function CharacterObject:getStateKeyTime(name, index)
+ local hashName = getHashName(name)
+ local keyTime = self.characterHelper:GetStateKeyFrame(hashName, index) or 0
+ return keyTime/ANIMATION_FRAME_PER_SECOND
+end
+
+function CharacterObject:containsState(name)
+ return self:getStateTime(name) > 0.00001
+end
+
+function CharacterObject:setTimeScale(timeScale)
+ if abs(self.timeScale - timeScale) < 0.00001 then
+ return
+ end
+ self.timeScale = timeScale
+ local mainAnimator = self:getMainAnimator()
+ mainAnimator.speed = timeScale*(self.timeScaleAddition or 1)
+end
+
+function CharacterObject:setTimeScaleAddition(addition)
+ self.timeScaleAddition = addition
+ local timeScale = self.timeScale*addition
+ local mainAnimator = self:getMainAnimator()
+ mainAnimator.speed = timeScale
+end
+
+function CharacterObject:setCullingMode(cullingMode)
+ local mainAnimator = self:getMainAnimator()
+ if mainAnimator then
+ mainAnimator.cullingMode = cullingMode
+ end
+end
+
+function CharacterObject:getCharacterMaterials()
+ if not self.characterMaterials then
+ self.characterMaterials = {}
+ for k, prefabObj in pairs(self.childMap) do
+ local render = prefabObj:getComponent(GConst.TYPEOF_UNITY_CLASS.SKINNED_MESH_RENDERER)
+ if not CS.BF.Utils.IsNull(render) and not CS.BF.Utils.IsNull(render.material) and SUPPORT_SHADER[render.material.shader.name] then
+ table.insert(self.characterMaterials, render.material)
+ end
+ end
+ end
+ return self.characterMaterials
+end
+
+function CharacterObject:getCharacterMeshRenderer()
+ if not self.characterMeshRenders then
+ self.characterMeshRenders = {}
+ for k, prefabObj in pairs(self.childMap) do
+ local render = prefabObj:getComponent(GConst.TYPEOF_UNITY_CLASS.SKINNED_MESH_RENDERER)
+ if not CS.BF.Utils.IsNull(render) and not CS.BF.Utils.IsNull(render.material) and SUPPORT_SHADER[render.material.shader.name] then
+ table.insert(self.characterMeshRenders, render)
+ end
+ end
+ end
+ return self.characterMeshRenders
+end
+
+function CharacterObject:getMaterialPropertyBlock()
+ if not self.mpb then
+ self.mpb = CS.UnityEngine.MaterialPropertyBlock()
+ end
+ return self.mpb
+end
+
+function CharacterObject:setCustomShadowEnable(enabled)
+ local materials = self:getCharacterMaterials()
+ for _, material in ipairs(materials) do
+ material:SetShaderPassEnabled("Always", enabled)
+ end
+end
+
+function CharacterObject:setCharacterFSM(fsm)
+ self.fsm = fsm
+end
+
+---- 默认
+function CharacterObject:setDefault()
+ if self.fsm:getCurStateKey() == CharacterFSMManager.STATE_TYPE.DEFAULT then
+ return
+ end
+ self.fsm:changeState(CharacterFSMManager.STATE_TYPE.DEFAULT)
+end
+
+---- 石化
+function CharacterObject:setStone(callback)
+ if self.fsm:getCurStateKey() == CharacterFSMManager.STATE_TYPE.STONE then
+ return
+ end
+ self.fsm:changeState(CharacterFSMManager.STATE_TYPE.STONE, {callback = callback})
+end
+
+---- 石化效果2
+function CharacterObject:setStone2(callback)
+ if self.fsm:getCurStateKey() == CharacterFSMManager.STATE_TYPE.STONE_2 then
+ return
+ end
+ self.fsm:changeState(CharacterFSMManager.STATE_TYPE.STONE_2, {callback = callback})
+end
+
+---- 冰化
+function CharacterObject:setIce()
+ if self.fsm:getCurStateKey() == CharacterFSMManager.STATE_TYPE.ICE then
+ return
+ end
+ self.fsm:changeState(CharacterFSMManager.STATE_TYPE.ICE)
+end
+
+---- 闪红
+function CharacterObject:setGlow(time, callback)
+ local state = self.fsm:getCurStateKey()
+ if state == CharacterFSMManager.STATE_TYPE.DISSOLVE or state == CharacterFSMManager.STATE_TYPE.GLOW then
+ return
+ end
+
+ if state == CharacterFSMManager.STATE_TYPE.ICE then
+ self.fsm:changeState(CharacterFSMManager.STATE_TYPE.DEFAULT)
+ end
+
+ self.fsm:changeState(CharacterFSMManager.STATE_TYPE.GLOW, {time = time or 0.7, callback = function()
+ if callback then
+ callback()
+ end
+ self.fsm:changeState(state)
+ end})
+end
+
+---- 消融
+function CharacterObject:setDissolve(time, callback, needCallback)
+ self.fsm:changeState(CharacterFSMManager.STATE_TYPE.DISSOLVE, {time = time,
+ callback = callback,
+ needCallback = needCallback})
+end
+
+function CharacterObject:setShadowColor(color)
+ local renderers = self:getCharacterMeshRenderer()
+ local mpBlock = self:getMaterialPropertyBlock()
+ for i, renderer in ipairs(renderers) do
+ renderer:GetPropertyBlock(mpBlock)
+ mpBlock:SetColor("_shadow_color", color)
+ renderer:SetPropertyBlock(mpBlock)
+ end
+end
+
+function CharacterObject:setLocalEulerAngles(x, y, z)
+ if self.characterHelper then
+ self.characterHelper:SetLocalEulerAngles(self.objectIndex, x, y, z)
+ else
+ BaseObject.setLocalEulerAngles(self, x, y, z)
+ end
+end
+
+function CharacterObject:setLocalPosition(x, y, z)
+ if self.characterHelper then
+ self.characterHelper:SetLocalPosition(self.objectIndex, x, y, z)
+ else
+ BaseObject.setLocalPosition(self, x, y, z)
+ end
+end
+
+function CharacterObject:setPosition(x, y, z)
+ if self.characterHelper then
+ self.characterHelper:SetPosition(self.objectIndex, x, y, z)
+ else
+ BaseObject.setPosition(self, x, y, z)
+ end
+end
+
+function CharacterObject:setLocalScale(x, y, z)
+ if self.characterHelper then
+ self.characterHelper:SetLocalScale(self.objectIndex, x, y, z)
+ else
+ BaseObject.setLocalScale(self, x, y, z)
+ end
+end
+
+function CharacterObject:onDestroy()
+ if self.fsm then
+ CharacterFSMManager:stopFSM(self.fsm)
+ self.fsm = nil
+ end
+ BaseObject.onDestroy(self)
+ self.characterHelper = nil
+ self.mainModel = nil
+ self.mainAnimator = nil
+ self.childMap = nil
+ self.characterMaterials = nil
+ self.characterMeshRenders = nil
+ self.mpb = nil
+end
+
+return CharacterObject
\ No newline at end of file
diff --git a/lua/app/bf/unity/character_object.lua.meta b/lua/app/bf/unity/character_object.lua.meta
new file mode 100644
index 00000000..dd2ccd8a
--- /dev/null
+++ b/lua/app/bf/unity/character_object.lua.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: ca211280dfcb404458954cb27e84cfd8
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/bf/unity/character_spine_object.lua b/lua/app/bf/unity/character_spine_object.lua
new file mode 100644
index 00000000..0a922993
--- /dev/null
+++ b/lua/app/bf/unity/character_spine_object.lua
@@ -0,0 +1,232 @@
+local BaseObject = require "app/bf/unity/base_object"
+local CharacterSpineObject = class("CharacterSpineObject", BaseObject)
+
+local BF_CHARACTER_SPINE_HELPER = GConst.TYPEOF_UNITY_CLASS.BF_CHARACTER_SPINE_HELPER
+
+local hash = GFunc.hash
+local CHILDMAP_METATABLE = {
+ __index = function(t, k)
+ if rawget(t, k) == nil then
+ local v = rawget(t, hash(k))
+ if v then
+ rawset(t, k, v)
+ end
+ return v
+ end
+ return rawget(t, k)
+ end
+}
+
+function CharacterSpineObject:ctor()
+end
+
+function CharacterSpineObject:getCharacterSpineHelper()
+ return self.characterSpineHelper
+end
+
+function CharacterSpineObject:initWithPrefab(assetPath, prefab)
+ BaseObject.initWithPrefab(self, assetPath, prefab)
+ self.characterSpineHelper = self:getComponent(BF_CHARACTER_SPINE_HELPER)
+ if self.characterSpineHelper == nil then
+ self.characterSpineHelper = self:addComponent(BF_CHARACTER_SPINE_HELPER)
+ end
+ self.mainSpine = self.characterSpineHelper:GetSpineObject()
+ self.objectIndex = -1
+ self:_genAllChildren()
+end
+
+function CharacterSpineObject:initWithCharacterHelper(characterSpineHelper, index, gameObject, name, admin)
+ self.characterSpineHelper = characterSpineHelper
+ self.objectIndex = index
+ self.gameObject = gameObject
+ self.name = name
+ self.admin = admin
+end
+
+function CharacterSpineObject:refreshSkeletonDataAsset(dataAsset)
+ local skeletonAnimation = self:getSkeletonAnimation()
+ skeletonAnimation.skeletonDataAsset = dataAsset
+ skeletonAnimation:Initialize(true)
+ self.characterSpineHelper:Reload()
+end
+
+function CharacterSpineObject:_genAllChildren()
+ local childMap = {}
+ if self.characterSpineHelper then
+ local childNum = self.characterSpineHelper:GetListCount()
+ for i = 0, childNum do
+ local gameObject = self.characterSpineHelper:GetGameObjectByIndex(i)
+ local hashName = self.characterSpineHelper:GetHashNameByIndex(i)
+ local child = CharacterSpineObject:create()
+ child:initWithCharacterHelper(self.characterSpineHelper, i, gameObject, hashName, self)
+ if childMap[hashName] == nil then
+ childMap[hashName] = child
+ end
+ table.insert(self.childList, child)
+ end
+ end
+ setmetatable(childMap, CHILDMAP_METATABLE)
+ self.childMap = childMap
+end
+
+function CharacterSpineObject:getChildByName(name)
+ return self.childMap[name]
+end
+
+function CharacterSpineObject:getMainSpine()
+ return self.mainSpine
+end
+
+function CharacterSpineObject:fastGetBonePosition(name)
+ if self.characterSpineHelper then
+ self.characterSpineHelper:CacheBonePosition(name)
+ return self.characterSpineHelper.PositionX, self.characterSpineHelper.PositionY, self.characterSpineHelper.PositionZ
+ end
+end
+
+function CharacterSpineObject:fastGetPosition()
+ if self.characterSpineHelper then
+ self.characterSpineHelper:CachePosition(self.objectIndex)
+ return self.characterSpineHelper.PositionX, self.characterSpineHelper.PositionY, self.characterSpineHelper.PositionZ
+ else
+ local position = self:getTransform().position
+ return position.x, position.y, position.z
+ end
+end
+
+function CharacterSpineObject:setPosition(x, y, z)
+ if self.characterSpineHelper then
+ self.characterSpineHelper:SetPosition(self.objectIndex, x, y, z)
+ else
+ BaseObject.SetPosition(self, x, y, z)
+ end
+end
+
+function CharacterSpineObject:setEulerAngles(x, y, z)
+ if self.characterSpineHelper then
+ self.characterSpineHelper:SetEulerAngles(self.objectIndex, x, y, z)
+ else
+ BaseObject.setEulerAngles(self, x, y, z)
+ end
+end
+
+function CharacterSpineObject:setLocalEulerAngles(x, y, z)
+ if self.characterSpineHelper then
+ self.characterSpineHelper:SetLocalEulerAngles(self.objectIndex, x, y, z)
+ else
+ BaseObject.setLocalEulerAngles(self, x, y, z)
+ end
+end
+
+function CharacterSpineObject:setLocalScale(x, y, z)
+ if self.characterSpineHelper then
+ self.characterSpineHelper:SetLocalScale(self.objectIndex, x, y, z)
+ else
+ BaseObject.setLocalScale(self, x, y, z)
+ end
+end
+
+function CharacterSpineObject:setLocalScaleX(x)
+ if self.characterSpineHelper then
+ self.characterSpineHelper:SetLocalScaleX(self.objectIndex, x)
+ else
+ BaseObject.setLocalScaleX(self, x)
+ end
+end
+
+function CharacterSpineObject:playAnimation(animName, loop, forceRefresh)
+ if self.characterSpineHelper then
+ self.characterSpineHelper:PlayAnimation(animName, loop, forceRefresh)
+ end
+end
+
+-- 战斗里面粒子特效和spine特效混用,统一调用的stop接口,这里先放一个空方法
+function CharacterSpineObject:stop()
+end
+
+function CharacterSpineObject:setTimeScale(timeScale)
+ self.timeScale = timeScale
+ if self.characterSpineHelper then
+ if self.localTimeScale then
+ self.characterSpineHelper:SetAnimationSpeed(self.timeScale*self.localTimeScale)
+ else
+ self.characterSpineHelper:SetAnimationSpeed(self.timeScale)
+ end
+ end
+end
+
+function CharacterSpineObject:setLocalTimeScale(localTimeScale)
+ self.localTimeScale = localTimeScale
+ self:setTimeScale(self.timeScale or 1)
+end
+
+function CharacterSpineObject:setLoop(isLoop)
+ if self.characterSpineHelper then
+ self.characterSpineHelper:SetLoop(isLoop)
+ end
+end
+
+function CharacterSpineObject:getAnimationDuration(animationName)
+ if self.characterSpineHelper then
+ return self.characterSpineHelper:GetAnimationDuration(animationName)
+ end
+ return 0
+end
+
+function CharacterSpineObject:addAnimationCompleteCallback(callback)
+ if self._animationStateCompleteCallback then
+ return
+ end
+ self._animationStateCompleteCallback = function(entry)
+ callback(entry.Animation.Name)
+ end
+ local state = self:getAnimationState()
+ state:Complete("+", self._animationStateCompleteCallback)
+end
+
+function CharacterSpineObject:removeAnimationCompleteCallback()
+ if self._animationStateCompleteCallback then
+ local state = self:getAnimationState()
+ state:Complete("-", self._animationStateCompleteCallback)
+ self._animationStateCompleteCallback = nil
+ end
+end
+
+function CharacterSpineObject:getSkeletonAnimation()
+ if self.skeletonAnimation == nil then
+ self.skeletonAnimation = self.characterSpineHelper:GetSkeletonAnimation()
+ end
+ return self.skeletonAnimation
+end
+
+function CharacterSpineObject:setSortingOrder(order)
+ if self.mainSpineMeshRenderer == nil then
+ self.mainSpineMeshRenderer = self.mainSpine:BFGetComponent(GConst.TYPEOF_UNITY_CLASS.MESH_RENDERER)
+ end
+ self.mainSpineMeshRenderer.sortingOrder = order
+end
+
+
+function CharacterSpineObject:getInstanceID()
+ if self.characterSpineHelper then
+ return self.characterSpineHelper:GetInstanceID(self.objectIndex)
+ end
+ return BaseObject.getInstanceID(self)
+end
+
+function CharacterSpineObject:setBattleScheduleId(id)
+ self.battleScheduleId = id
+end
+
+function CharacterSpineObject:getBattleScheduleId()
+ return self.battleScheduleId
+end
+
+function CharacterSpineObject:onDestroy()
+ self:removeAnimationCompleteCallback()
+ BaseObject.onDestroy(self)
+ self.skeletonAnimation = nil
+ self.animationState = nil
+end
+
+return CharacterSpineObject
\ No newline at end of file
diff --git a/lua/app/bf/unity/character_spine_object.lua.meta b/lua/app/bf/unity/character_spine_object.lua.meta
new file mode 100644
index 00000000..b1f42593
--- /dev/null
+++ b/lua/app/bf/unity/character_spine_object.lua.meta
@@ -0,0 +1,10 @@
+fileFormatVersion: 2
+guid: bf2cec33a8ee9894880903595af32a39
+ScriptedImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 2
+ userData:
+ assetBundleName:
+ assetBundleVariant:
+ script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
diff --git a/lua/app/bf/unity/effect_object.lua b/lua/app/bf/unity/effect_object.lua
new file mode 100644
index 00000000..91a7307c
--- /dev/null
+++ b/lua/app/bf/unity/effect_object.lua
@@ -0,0 +1,224 @@
+local BaseObject = require "app/bf/unity/base_object"
+
+local EffectObject = class("EffectObject", BaseObject)
+
+local BF_EFFECT_HELPER = GConst.TYPEOF_UNITY_CLASS.BF_EFFECT_HELPER
+local abs = math.abs
+
+local DEFAULT_DELAY_TIME = 1
+
+function EffectObject:ctor()
+ self.timeScale = 1
+end
+
+function EffectObject:initWithPrefab(assetPath, prefab)
+ BaseObject.initWithPrefab(self, assetPath, prefab)
+ self.effectHelper = self:getComponent(BF_EFFECT_HELPER)
+ if self.effectHelper == nil then
+ self.effectHelper = self:addComponent(BF_EFFECT_HELPER)
+ end
+ local animatorCount = self.effectHelper.AnimatorCount or 0
+ if animatorCount > 0 then
+ self.animators = {}
+ local animators = prefab:GetComponentsInChildren(GConst.TYPEOF_UNITY_CLASS.ANIMATOR, true)
+ if animators then
+ local len = animators.Length
+ for i = 0, len - 1 do
+ table.insert(self.animators, animators[i])
+ end
+ end
+ end
+end
+
+function EffectObject:play()
+ self.effectHelper:Play()
+end
+
+-- 延迟播放
+function EffectObject:playDelay(delayTime, hideBeforePlay)
+ if delayTime <= 0 then
+ self:play()
+ return
+ end
+ if self._effectPlayScheduleId then
+ self:unscheduleGlobal(self._effectPlayScheduleId)
+ end
+
+ if hideBeforePlay then
+ self:setActive(false)
+ end
+ self._effectPlayScheduleId = self:performWithDelayGlobal(function()
+ self._effectPlayScheduleId = nil
+ if hideBeforePlay then
+ self:setActive(true)
+ end
+ self:play()
+ end, delayTime)
+
+ return self._effectPlayScheduleId
+end
+
+function EffectObject:clear()
+ if self._effectPlayScheduleId then
+ self:unscheduleGlobal(self._effectPlayScheduleId)
+ self._effectPlayScheduleId = nil
+ end
+ self.effectHelper:Clear()
+end
+
+function EffectObject:stop()
+ if self._effectPlayScheduleId then
+ self:unscheduleGlobal(self._effectPlayScheduleId)
+ self._effectPlayScheduleId = nil
+ end
+ self.effectHelper:Stop()
+end
+
+function EffectObject:stopAndClear()
+ if self._effectPlayScheduleId then
+ self:unscheduleGlobal(self._effectPlayScheduleId)
+ self._effectPlayScheduleId = nil
+ end
+ self.effectHelper:StopAndClear()
+end
+
+
+function EffectObject:pause()
+ if self._effectPlayScheduleId then
+ self:unscheduleGlobal(self._effectPlayScheduleId)
+ self._effectPlayScheduleId = nil
+ end
+ self.effectHelper:Pause()
+end
+
+function EffectObject:setUIOrder(uiOrder)
+ self.effectHelper:SetUIOrder(uiOrder)
+end
+
+function EffectObject:setSortingOrder(uiOrder, order)
+ self.effectHelper:SetSortingOrder(uiOrder, order)
+end
+
+function EffectObject:changeSortingOrderToFudge(order, coefficient)
+ self.effectHelper:ChangeSortingOrderToFudge(order, coefficient)
+end
+
+function EffectObject:initParticleSystemRendererList()
+ self.effectHelper:InitParticleSystemRendererList()
+end
+
+function EffectObject:getDuration()
+ return self.effectHelper.EffectDuration
+end
+
+function EffectObject:setTimeScale(timeScale)
+ if abs(self.timeScale - timeScale) < 0.00001 then
+ return
+ end
+ self.timeScale = timeScale
+ self.effectHelper:SetTimeScale(timeScale)
+ if self.animators then
+ for k, v in ipairs(self.animators) do
+ v.speed = timeScale
+ end
+ end
+end
+
+function EffectObject:setIsLoop(isLoop)
+ self.isLoop = isLoop
+end
+
+function EffectObject:getIsLoop()
+ return self.isLoop
+end
+
+function EffectObject:performDurationDelay(callback, diffDuration)
+ if self.scheduleId then
+ self:unscheduleGlobal(self.scheduleId)
+ end
+
+ local duration = self.effectHelper.EffectDuration
+ if duration <= 0 then
+ duration = DEFAULT_DELAY_TIME
+ end
+
+ duration = duration + (diffDuration or 0)
+ duration = math.max(duration, 0)
+ self.scheduleId = self:performWithDelayGlobal(function()
+ self.scheduleId = nil
+ callback()
+ end, duration)
+
+ return self.scheduleId
+end
+
+function EffectObject:setEulerAngles(x, y, z)
+ if self.effectHelper then
+ self.effectHelper:SetEulerAngles(x, y, z)
+ else
+ BaseObject.setEulerAngles(self, x, y, z)
+ end
+end
+
+function EffectObject:setLocalEulerAngles(x, y, z)
+ if self.effectHelper then
+ self.effectHelper:SetLocalEulerAngles(x, y, z)
+ else
+ BaseObject.setLocalEulerAngles(self, x, y, z)
+ end
+end
+
+function EffectObject:setLocalPosition(x, y, z)
+ if self.effectHelper then
+ self.effectHelper:SetLocalPosition(x, y, z)
+ else
+ BaseObject.setLocalPosition(self, x, y, z)
+ end
+end
+
+function EffectObject:setPosition(x, y, z)
+ if self.effectHelper then
+ self.effectHelper:SetPosition(x, y, z)
+ else
+ BaseObject.setPosition(self, x, y, z)
+ end
+end
+
+function EffectObject:setLocalScale(x, y, z)
+ if self.effectHelper then
+ self.effectHelper:SetLocalScale(x, y, z)
+ else
+ BaseObject.setLocalScale(self, x, y, z)
+ end
+end
+
+function EffectObject:getIsEulerAnglesFlip()
+ if self.effectHelper then
+ return self.effectHelper.EulerAnglesFlip
+ end
+ return false
+end
+
+function EffectObject:setBattleScheduleId(id)
+ self.battleScheduleId = id
+end
+
+function EffectObject:getBattleScheduleId()
+ return self.battleScheduleId
+end
+
+function EffectObject:onDestroy()
+ if self.scheduleId then
+ self:unscheduleGlobal(self.scheduleId)
+ self.scheduleId = nil
+ end
+ if self._effectPlayScheduleId then
+ self:unscheduleGlobal(self._effectPlayScheduleId)
+ self._effectPlayScheduleId = nil
+ end
+ BaseObject.onDestroy(self)
+ self.effectHelper = nil
+ self.animators = nil
+end
+
+return EffectObject
\ No newline at end of file
diff --git a/lua/app/bf/unity/effect_object.lua.meta b/lua/app/bf/unity/effect_object.lua.meta
new file mode 100644
index 00000000..f719881f
--- /dev/null
+++ b/lua/app/bf/unity/effect_object.lua.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: d83384436f7b68045a7cfd3ce6aec70a
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/bf/unity/mesh_spine_object.lua b/lua/app/bf/unity/mesh_spine_object.lua
new file mode 100644
index 00000000..bad8fb0b
--- /dev/null
+++ b/lua/app/bf/unity/mesh_spine_object.lua
@@ -0,0 +1,77 @@
+local BaseObject = require "app/bf/unity/base_object"
+local MeshSpineObject = class("SpineObject", BaseObject)
+
+function MeshSpineObject:ctor()
+end
+
+function MeshSpineObject:initSkeletonDataAsset(dataAsset)
+ local skeletonAnimation = self:getSkeletonAnimation()
+ skeletonAnimation.skeletonDataAsset = dataAsset
+ skeletonAnimation:Initialize(false)
+end
+
+function MeshSpineObject:getSkeletonAnimation()
+ if not self.skeletonAnimation then
+ self.skeletonAnimation = self:getComponent(GConst.TYPEOF_UNITY_CLASS.SKELETON_ANIMATION)
+ end
+ return self.skeletonAnimation
+end
+
+function MeshSpineObject:getAnimationState()
+ self:getSkeletonAnimation()
+ if not self.animationState then
+ self.animationState = self.skeletonAnimation.AnimationState
+ end
+ return self.animationState
+end
+
+function MeshSpineObject:playAnim(animName, loop, forceRefresh)
+ self:getAnimationState()
+ if self.animationState then
+ local trackEntry = self.animationState:SetAnimation(0, animName, loop)
+ if forceRefresh then
+ self.skeletonAnimation:Update(0)
+ end
+ return trackEntry
+ end
+end
+
+function MeshSpineObject:setTimeScale(timeScale)
+ if self.skeletonAnimation then
+ self.skeletonAnimation.timeScale = timeScale
+ end
+end
+
+function MeshSpineObject:setIsLoop(isLoop)
+ if self.skeletonAnimation then
+ self.skeletonAnimation.loop = isLoop
+ end
+end
+
+function MeshSpineObject:addAnimationCompleteCallback(callback)
+ if self._animationStateCompleteCallback then
+ return
+ end
+ self._animationStateCompleteCallback = function(entry)
+ callback(entry.Animation.Name)
+ end
+ local state = self:getAnimationState()
+ state:Complete("+", self._animationStateCompleteCallback)
+end
+
+function MeshSpineObject:removeAnimationCompleteCallback()
+ if self._animationStateCompleteCallback then
+ local state = self:getAnimationState()
+ state:Complete("-", self._animationStateCompleteCallback)
+ self._animationStateCompleteCallback = nil
+ end
+end
+
+function MeshSpineObject:onDestroy()
+ self:removeAnimationCompleteCallback()
+ BaseObject.onDestroy(self)
+ self.skeletonAnimation = nil
+ self.animationState = nil
+end
+
+return MeshSpineObject
\ No newline at end of file
diff --git a/lua/app/bf/unity/mesh_spine_object.lua.meta b/lua/app/bf/unity/mesh_spine_object.lua.meta
new file mode 100644
index 00000000..16587114
--- /dev/null
+++ b/lua/app/bf/unity/mesh_spine_object.lua.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 55e4917dee9f5d34582e422d8b28267d
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/bf/unity/model_object.lua b/lua/app/bf/unity/model_object.lua
new file mode 100644
index 00000000..99cbc715
--- /dev/null
+++ b/lua/app/bf/unity/model_object.lua
@@ -0,0 +1,157 @@
+local CharacterObject = require "app/bf/unity/character_object"
+local EffectObject = require "app/bf/unity/effect_object"
+local BaseObject = require "app/bf/unity/base_object"
+local ModelObject = class("ModelObject", BaseObject)
+
+local BF_NODE_HELPER = GConst.TYPEOF_UNITY_CLASS.BF_NODE_HELPER
+
+local hash = GFunc.hash
+
+local CHILDMAP_METATABLE = {
+ __index = function(t, k)
+ if rawget(t, k) == nil then
+ local v = rawget(t, hash(k))
+ if v then
+ rawset(t, k, v)
+ end
+ return v
+ end
+ return rawget(t, k)
+ end
+}
+
+local function _createModelChildObject(self, index, gameObject)
+ local child = ModelObject:create()
+ child:initWithModelHelper(self.modelHelper, index, gameObject)
+ return child
+end
+
+local function _createCharacterChildObject(self, index, gameObject)
+ local child = CharacterObject:create()
+ child:initWithPrefab(nil, gameObject)
+ return child
+end
+
+local function _createEffectChildObject(self, index, gameObject)
+ local child = EffectObject:create()
+ child:initWithPrefab(nil, gameObject)
+ return child
+end
+
+ModelObject.createChildObject = {
+ [GConst.GAME_OBJECT_TYPE.CHARACTER_OBJECT] = _createCharacterChildObject,
+ [GConst.GAME_OBJECT_TYPE.EFFECT_OBJECT] = _createEffectChildObject,
+}
+
+function ModelObject:initWithPrefab(assetPath, prefab)
+ BaseObject.initWithPrefab(self, assetPath, prefab)
+ self.modelHelper = self:getComponent(BF_NODE_HELPER)
+ if self.modelHelper == nil then
+ self.modelHelper = self:addComponent(BF_NODE_HELPER)
+ end
+ self.objectIndex = -1
+ self:_genAllChildren()
+end
+
+function ModelObject:initWithModelHelper(modelHelper, index, gameObject, name, admin)
+ self.modelHelper = modelHelper
+ self.objectIndex = index
+ self.gameObject = gameObject
+ self.name = name
+ self.admin = admin
+end
+
+function ModelObject:_genAllChildren()
+ local childMap = {}
+ if self.modelHelper then
+ local childNum = self.modelHelper:GetListCount()
+ for i = 0, childNum do
+ local gameObject = self.modelHelper:GetGameObjectByIndex(i)
+ local hashName = self.modelHelper:GetHashNameByIndex(i)
+ local objectType = self.modelHelper:GetObjectTypeByIndex(i)
+ local func = self.createChildObject[objectType] or _createModelChildObject
+ local child = func(self, i, gameObject)
+ child:setName(hashName)
+ child:setAdmin(self)
+ if childMap[hashName] == nil then
+ childMap[hashName] = child
+ end
+ table.insert(self.childList, child)
+ end
+ end
+ setmetatable(childMap, CHILDMAP_METATABLE)
+ self.childMap = childMap
+end
+
+function ModelObject:getChildByName(name)
+ return self.childMap[name]
+end
+
+function ModelObject:setLocalEulerAngles(x, y, z)
+ if self.modelHelper then
+ self.modelHelper:SetLocalEulerAngles(self.objectIndex, x, y, z)
+ else
+ BaseObject.setLocalEulerAngles(self, x, y, z)
+ end
+end
+
+function ModelObject:fastGetLocalEulerAngles()
+ if self.modelHelper then
+ self.modelHelper:CacheLocalEulerAngles(self.objectIndex)
+ return self.modelHelper.PositionX, self.modelHelper.PositionY, self.modelHelper.PositionZ
+ else
+ local localEulerAngles = self:getTransform().localEulerAngles
+ return localEulerAngles.x, localEulerAngles.y, localEulerAngles.z
+ end
+end
+
+function ModelObject:setLocalPosition(x, y, z)
+ if self.modelHelper then
+ self.modelHelper:SetLocalPosition(self.objectIndex, x, y, z)
+ else
+ BaseObject.setLocalPosition(self, x, y, z)
+ end
+end
+
+function ModelObject:fastGetPosition()
+ if self.modelHelper then
+ self.modelHelper:CachePosition(self.objectIndex)
+ return self.modelHelper.PositionX, self.modelHelper.PositionY, self.modelHelper.PositionZ
+ else
+ local position = self:getTransform().position
+ return position.x, position.y, position.z
+ end
+end
+
+function ModelObject:setPosition(x, y, z)
+ if self.modelHelper then
+ self.modelHelper:SetPosition(self.objectIndex, x, y, z)
+ else
+ BaseObject.setPosition(self, x, y, z)
+ end
+end
+
+function ModelObject:setLocalScale(x, y, z)
+ if self.modelHelper then
+ self.modelHelper:SetLocalScale(self.objectIndex, x, y, z)
+ else
+ BaseObject.setLocalScale(self, x, y, z)
+ end
+end
+
+function ModelObject:onDestroy()
+ BaseObject.onDestroy(self)
+ self.modelHelper = nil
+ self.childMap = nil
+end
+
+function ModelObject:setSpriteRenderRect(x, y)
+ if not self.spriteRender then
+ self.spriteRender = self:getComponent(GConst.TYPEOF_UNITY_CLASS.SPRITE_RENDERER)
+ end
+ if self.spriteRender then
+ self.spriteRender.size = BF.Vector2(x, y)
+ end
+end
+
+return ModelObject
\ No newline at end of file
diff --git a/lua/app/bf/unity/model_object.lua.meta b/lua/app/bf/unity/model_object.lua.meta
new file mode 100644
index 00000000..b302093c
--- /dev/null
+++ b/lua/app/bf/unity/model_object.lua.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 72f36c38a103f8c4aa3b1d909acb4a2a
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/bf/unity/ui_spine_object.lua b/lua/app/bf/unity/ui_spine_object.lua
new file mode 100644
index 00000000..2d9e5f06
--- /dev/null
+++ b/lua/app/bf/unity/ui_spine_object.lua
@@ -0,0 +1,251 @@
+local BaseObject = require "app/bf/unity/base_object"
+---@class UISpineObject : BaseObject
+local UISpineObject = class("SpineObject", BaseObject)
+
+local BF_UI_TOUCH_EVENT = GConst.TYPEOF_UNITY_CLASS.BF_UI_TOUCH_EVENT
+local TYPE_OF_SPINE_ASSET = GConst.TYPEOF_UNITY_CLASS.SKELETON_DATA_ASSET
+local SPINE_ASSET_PATH = "assets/arts/spines/ui/%s/%s_skeletondata.asset"
+
+function UISpineObject:ctor()
+end
+
+function UISpineObject:initSkeletonDataAsset(dataAsset)
+ local skeletonGraphic = self:getSkeletonGraphic()
+ skeletonGraphic.skeletonDataAsset = dataAsset
+ skeletonGraphic:Initialize(false)
+ skeletonGraphic.raycastTarget = false
+end
+
+function UISpineObject:refreshAssets(dataAsset)
+ local skeletonGraphic = self:getSkeletonGraphic()
+ skeletonGraphic.skeletonDataAsset = dataAsset
+ skeletonGraphic:Initialize(true)
+end
+
+function UISpineObject:getSkeletonGraphic()
+ if not self.skeletonGraphic then
+ self.skeletonGraphic = self:getComponent(GConst.TYPEOF_UNITY_CLASS.SKELETON_GRAPHIC)
+ end
+ if not self.skeletonGraphic then
+ Logger.logFatal("UISpineObject missing component CS.Spine.Unity.SkeletonGraphic!")
+ end
+ return self.skeletonGraphic
+end
+
+function UISpineObject:getAnimationState(forceRefresh)
+ self:getSkeletonGraphic()
+ if (not self.animationState and self.skeletonGraphic) or forceRefresh then
+ self.animationState = self.skeletonGraphic.AnimationState
+ end
+ return self.animationState
+end
+
+function UISpineObject:playAnim(animName, loop, forceRefresh, forceGetSG)
+ self:getAnimationState(forceGetSG)
+ if self.animationState then
+ local trackEntry = self.animationState:SetAnimation(0, animName, loop)
+ if forceRefresh then
+ self.skeletonGraphic:Update(0)
+ end
+ return trackEntry
+ end
+end
+
+--未验证TODO
+function UISpineObject:rePlayAnim(animName, loop, forceRefresh)
+ self:getAnimationState()
+ if self.animationState then
+ self.animationState:SetEmptyAnimation(0, 1)
+ local trackEntry = self.animationState:SetAnimation(0, animName, loop)
+ if forceRefresh then
+ self.skeletonGraphic:Update(0)
+ end
+ return trackEntry
+ end
+end
+
+function UISpineObject:playAnimComplete(animName, loop, forceRefresh, complete)
+ local spineAnim = self:getAnimation(self:playAnim(animName, loop, forceRefresh))
+ local duration = spineAnim.Duration
+ local sequence = self:createBindTweenSequence()
+ sequence:AppendInterval(duration)
+ sequence:OnComplete(complete)
+ return duration
+end
+
+function UISpineObject:findAnim(animName)
+ self:getAnimationState()
+ if self.animationState then
+ return self.animationState.Data.SkeletonData:FindAnimation(animName)
+ end
+end
+
+function UISpineObject:hasAnim(animName)
+ return nil ~= self:findAnim(animName)
+end
+
+function UISpineObject:getAnimation(trackEntry)
+ return trackEntry and trackEntry.Animation
+end
+
+function UISpineObject:getAnimSpeed()
+ if self.skeletonGraphic then
+ return self.skeletonGraphic.timeScale
+ end
+end
+
+function UISpineObject:setTimeScale(timeScale)
+ if self.skeletonGraphic then
+ self.skeletonGraphic.timeScale = timeScale
+ end
+end
+
+function UISpineObject:setIsFreeze(value)
+ if self.skeletonGraphic then
+ self.skeletonGraphic.freeze = value
+ end
+end
+
+function UISpineObject:setIsUnScaledTime(value)
+ if self.skeletonGraphic then
+ self.skeletonGraphic.unscaledTime = value
+ end
+end
+
+function UISpineObject:clearTrack()
+ if self.animationState then
+ self.animationState:ClearTrack(0)
+ end
+end
+
+function UISpineObject:addClickListener(func)
+ self._addTouchFlag = true
+ local eventListener = self:getComponent(BF_UI_TOUCH_EVENT)
+ if eventListener == nil then
+ eventListener = self:addComponent(BF_UI_TOUCH_EVENT)
+ end
+ self._touchEventCallback = func
+ eventListener:AddTouchEventListener(function(eventType, x, y)
+ self:_onClickEvent(eventType, x, y)
+ end)
+end
+
+function UISpineObject:_onClickEvent(eventType, x, y)
+ if self._touchEventCallback and eventType == GConst.TOUCH_EVENT.UP_INSIDE then
+ self._touchEventCallback(eventType, x, y)
+ end
+end
+
+function UISpineObject:setTouchEnable(enable)
+ local graphic = self:getSkeletonGraphic()
+ graphic.raycastTarget = enable
+end
+
+function UISpineObject:getWidth()
+ local graphic = self:getSkeletonGraphic()
+ return graphic.SkeletonData.Width
+end
+
+function UISpineObject:getHeight()
+ local graphic = self:getSkeletonGraphic()
+ return graphic.SkeletonData.Height
+end
+
+function UISpineObject:setGrey(isGrey)
+ local component = self:getSkeletonGraphic()
+ GFunc.setGrey(component, isGrey)
+end
+
+function UISpineObject:loadAssetSync(assetName)
+ local path = string.format(SPINE_ASSET_PATH, assetName, assetName)
+ if self.curAssetPath == path then
+ return
+ end
+ self:onLoadAsset()
+ self.curAssetPath = path
+ local spineAsset = ResourceManager:loadOriginAssetAsync(path, TYPE_OF_SPINE_ASSET)
+ local skeletonGraphic = self:getSkeletonGraphic()
+ skeletonGraphic.skeletonDataAsset = spineAsset
+ skeletonGraphic:Initialize(true)
+end
+
+function UISpineObject:loadAssetAsync(assetName, callback)
+ local path = string.format(SPINE_ASSET_PATH, assetName, assetName)
+ if self.curAssetPath == path and not self.loadingAsset then
+ return callback and callback()
+ end
+ self:onLoadAsset()
+ self.curAssetPath = path
+ self.loadingAsset = true
+ ResourceManager:loadOriginAssetAsync(path, TYPE_OF_SPINE_ASSET, function(spineAssetPath, spineAsset)
+ self.loadingAsset = false
+ if self:isDestroyed() then
+ ResourceManager:unload(spineAssetPath)
+ return
+ end
+ if self.curAssetPath ~= spineAssetPath then
+ ResourceManager:unload(spineAssetPath)
+ return
+ end
+ local skeletonGraphic = self:getSkeletonGraphic()
+ skeletonGraphic.skeletonDataAsset = spineAsset
+ skeletonGraphic:Initialize(true)
+ if callback then
+ callback()
+ end
+ end)
+end
+
+function UISpineObject:onLoadAsset()
+ if self.curAssetPath then
+ ResourceManager:unload(self.curAssetPath)
+ self.curAssetPath = nil
+ end
+ self:addUnloadCallback(function()
+ if self.curAssetPath then
+ ResourceManager:unload(self.curAssetPath)
+ self.curAssetPath = nil
+ end
+ end)
+end
+
+function UISpineObject:addAnimationCompleteCallback(callback)
+ if self._animationStateCompleteCallback then
+ return
+ end
+ self._animationStateCompleteCallback = function(entry)
+ callback(entry.Animation.Name)
+ end
+ local state = self:getAnimationState()
+ if state then
+ state:Complete("+", self._animationStateCompleteCallback)
+ end
+end
+
+function UISpineObject:removeAnimationCompleteCallback()
+ if self._animationStateCompleteCallback then
+ local state = self:getAnimationState()
+ if state then
+ state:Complete("-", self._animationStateCompleteCallback)
+ end
+ self._animationStateCompleteCallback = nil
+ end
+end
+
+function UISpineObject:setTimeScale(timeScale)
+ if self.skeletonGraphic then
+ self.skeletonGraphic.timeScale = timeScale
+ end
+end
+
+function UISpineObject:onDestroy()
+ self:removeAnimationCompleteCallback()
+ if self._addTouchFlag then
+ self._touchEventCallback = nil
+ end
+ BaseObject.onDestroy(self)
+ self.skeletonGraphic = nil
+ self.animationState = nil
+end
+
+return UISpineObject
\ No newline at end of file
diff --git a/lua/app/bf/unity/ui_spine_object.lua.meta b/lua/app/bf/unity/ui_spine_object.lua.meta
new file mode 100644
index 00000000..beed3d12
--- /dev/null
+++ b/lua/app/bf/unity/ui_spine_object.lua.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: ead73859b84f6ed4a905ffa01dc33efc
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/bf/unity/uiprefab_object.lua b/lua/app/bf/unity/uiprefab_object.lua
new file mode 100644
index 00000000..9510e231
--- /dev/null
+++ b/lua/app/bf/unity/uiprefab_object.lua
@@ -0,0 +1,843 @@
+---@type BaseObject
+local BaseObject = require "app/bf/unity/base_object"
+local EffectObject = require "app/bf/unity/effect_object"
+local CharacterObject = require "app/bf/unity/character_object"
+local UISpineObject = require "app/bf/unity/ui_spine_object"
+local MeshSpineObject = require "app/bf/unity/mesh_spine_object"
+---@class UIPrefabObject : BaseObject
+local UIPrefabObject = class("UIPrefabObject", BaseObject)
+
+local BF_PREFAB_HELPER = GConst.TYPEOF_UNITY_CLASS.BF_PREFAB_HELPER
+local BF_UI_TOUCH_EVENT = GConst.TYPEOF_UNITY_CLASS.BF_UI_TOUCH_EVENT
+local BF_UI_DRAG_EVENT = GConst.TYPEOF_UNITY_CLASS.BF_UI_DRAG_EVENT
+local BF_UI_CELL_DRAG_EVNET = GConst.TYPEOF_UNITY_CLASS.BF_UI_CELL_DRAG_EVENT
+local UI_MASKABLE_GRAPHIC = GConst.TYPEOF_UNITY_CLASS.UI_MASKABLE_GRAPHIC
+
+local LANGUAGE_ATLAS_PATH = "assets/arts/language/%s/sprites/%s/%s.asset"
+local LANGUAGE_SPRITE_PATH = "assets/arts/language/%s/sprites/%s/%s.png"
+local DELAULT_LONG_PRESS_TIME = 0.5
+
+local Vector2 = BF.Vector2(0, 0)
+
+local Color4 = BF.Color(0, 0, 0, 0)
+
+local hash = GFunc.hash
+
+local CHILDMAP_METATABLE = {
+ __index = function(t, k)
+ if rawget(t, k) == nil then
+ local v = rawget(t, hash(k))
+ if v then
+ rawset(t, k, v)
+ end
+ return v
+ end
+ return rawget(t, k)
+ end
+}
+
+local function _createDefaultChildObject(self, index, gameObject)
+ local child = UIPrefabObject:create()
+ child:initWithPrefabHelper(self.prefabHelper, index, gameObject)
+ return child
+end
+
+local function _createUIChildObject(self, index, gameObject)
+ local child = UIPrefabObject:create()
+ child:initWithPrefab(nil, gameObject)
+ child:initPrefabHelper()
+ return child
+end
+
+local function _createEffectChildObject(self, index, gameObject)
+ local child = EffectObject:create()
+ child:initWithPrefab(nil, gameObject)
+ return child
+end
+
+local function _createSpineUIChildObject(self, index, gameObject)
+ local child = UISpineObject:create()
+ child:initWithPrefab(nil, gameObject)
+ child:getAnimationState()
+ local skeletonGraphic = child:getSkeletonGraphic()
+ skeletonGraphic:Initialize(false)
+ skeletonGraphic.raycastTarget = false
+ return child
+end
+
+local function _createSpineMeshChildObject(self, index, gameObject)
+ local child = MeshSpineObject:create()
+ child:initWithPrefab(nil, gameObject)
+ child:getAnimationState()
+ local skeletonAnimation = child:getSkeletonAnimation()
+ skeletonAnimation:Initialize(false)
+ return child
+end
+
+local function _createCharacterChildObject(self, index, gameObject)
+ local child = CharacterObject:create()
+ child:initWithPrefab(nil, gameObject)
+ return child
+end
+
+UIPrefabObject.createChildObject = {
+ [GConst.GAME_OBJECT_TYPE.DEFAULT] = _createDefaultChildObject,
+ [GConst.GAME_OBJECT_TYPE.UI_OBJECT] = _createUIChildObject,
+ [GConst.GAME_OBJECT_TYPE.EFFECT_OBJECT] = _createEffectChildObject,
+ [GConst.GAME_OBJECT_TYPE.MODEL_OBJECT] = _createDefaultChildObject,
+ [GConst.GAME_OBJECT_TYPE.CHARACTER_OBJECT] = _createCharacterChildObject,
+ [GConst.GAME_OBJECT_TYPE.TIMELINE_OBJECT] = _createDefaultChildObject,
+ [GConst.GAME_OBJECT_TYPE.SPINE_UI_OBJECT] = _createSpineUIChildObject,
+ [GConst.GAME_OBJECT_TYPE.SPINE_MESH_OBJECT] = _createSpineMeshChildObject,
+}
+
+function UIPrefabObject:initWithPrefabHelper(prefabHelper, index, gameObject)
+ if self.prefabHelper == nil then
+ self.prefabHelper = prefabHelper
+ self.objectIndex = index
+ self.gameObject = gameObject
+ end
+end
+
+function UIPrefabObject:initPrefabHelper()
+ if self.gameObject == nil then
+ return
+ end
+ self.prefabHelper = self.gameObject:GetComponent(BF_PREFAB_HELPER)
+ if self.prefabHelper then
+ self.objectIndex = self.prefabHelper:GetRootPrefabIndex()
+ end
+end
+
+function UIPrefabObject:getPrefabHelper()
+ return self.prefabHelper
+end
+
+function UIPrefabObject:genAllChildren(isRegenerate)
+ local childMap
+ if self.isGenChildren then
+ if isRegenerate then
+ childMap = {}
+ for k, child in ipairs(self.childList) do
+ local name = child:getName()
+ if name ~= "" and childMap[name] == nil then
+ childMap[name] = child
+ end
+ end
+ else
+ return self.childMap
+ end
+ else
+ self.isGenChildren = true
+ childMap = {}
+ if self.prefabHelper then
+ local childNum = self.prefabHelper:GetListCount()
+ for i = 0, childNum do
+ if i ~= self.objectIndex then
+ local gameObject = self.prefabHelper:GetGameObjectByIndex(i)
+ local objectType = self.prefabHelper:GetObjectTypeByIndex(i)
+ local hashName = self.prefabHelper:GetHashNameByIndex(i)
+ local func = self.createChildObject[objectType] or _createDefaultChildObject
+ local child = func(self, i, gameObject)
+ child:setName(hashName)
+ child:setAdmin(self)
+ if childMap[hashName] == nil then
+ childMap[hashName] = child
+ end
+ table.insert(self.childList, child)
+ end
+ end
+ end
+ end
+ setmetatable(childMap, CHILDMAP_METATABLE)
+ self.childMap = childMap
+ return childMap
+end
+
+function UIPrefabObject:getChildrenMap()
+ return self.childMap
+end
+
+function UIPrefabObject:getGameObject()
+ if self.gameObject == nil and self.objectIndex then
+ self.gameObject = self.prefabHelper:GetGameObjectByIndex(self.objectIndex)
+ end
+ return self.gameObject
+end
+
+function UIPrefabObject:setAnchoredPositionX(x)
+ if self.prefabHelper then
+ self.prefabHelper:SetAnchoredPositionX(self.objectIndex, x)
+ else
+ BaseObject.setAnchoredPositionX(self, x)
+ end
+end
+
+function UIPrefabObject:setAnchoredPositionY(y)
+ if self.prefabHelper then
+ self.prefabHelper:SetAnchoredPositionY(self.objectIndex, y)
+ else
+ BaseObject.setAnchoredPositionY(self, y)
+ end
+end
+
+function UIPrefabObject:setAnchoredPosition(x, y)
+ if self.prefabHelper then
+ self.prefabHelper:SetAnchoredPosition(self.objectIndex, x, y)
+ else
+ BaseObject.setAnchoredPosition(self, x, y)
+ end
+end
+
+function UIPrefabObject:fastGetAnchoredPosition()
+ if self.prefabHelper then
+ self.prefabHelper:CacheAnchoredPosition(self.objectIndex)
+ return self.prefabHelper.PositionX, self.prefabHelper.PositionY
+ else
+ local anchoredPosition = self:getTransform().anchoredPosition
+ return anchoredPosition.x, anchoredPosition.y
+ end
+end
+
+function UIPrefabObject:getAnchoredPosition()
+ if self.prefabHelper then
+ return self.prefabHelper:GetAnchoredPosition(self.objectIndex)
+ else
+ return BaseObject.getAnchoredPosition(self)
+ end
+end
+
+function UIPrefabObject:addAnchoredPosition(x, y)
+ if self.prefabHelper then
+ self.prefabHelper:AddAnchoredPosition(self.objectIndex, x, y)
+ else
+ BaseObject.addAnchoredPosition(self, x, y)
+ end
+end
+
+function UIPrefabObject:setAnchorMin(x, y)
+ if self.prefabHelper then
+ self.prefabHelper:SetAnchorMin(self.objectIndex, x, y)
+ end
+end
+
+function UIPrefabObject:setAnchorMax(x, y)
+ if self.prefabHelper then
+ self.prefabHelper:SetAnchorMax(self.objectIndex, x, y)
+ end
+end
+
+function UIPrefabObject:setSizeDelta(x, y)
+ if self.prefabHelper then
+ self.prefabHelper:SetSizeDelta(self.objectIndex, x, y)
+ else
+ BaseObject.setSizeDelta(self, x, y)
+ end
+end
+
+function UIPrefabObject:setSizeDeltaX(x)
+ if self.prefabHelper then
+ self.prefabHelper:SetSizeDeltaX(self.objectIndex, x)
+ else
+ BaseObject.setSizeDeltaX(self, x)
+ end
+end
+
+function UIPrefabObject:setSizeDeltaY(y)
+ if self.prefabHelper then
+ self.prefabHelper:SetSizeDeltaY(self.objectIndex, y)
+ else
+ BaseObject.setSizeDeltaY(self, y)
+ end
+end
+
+function UIPrefabObject:addSizeDelta(x, y)
+ if self.prefabHelper then
+ self.prefabHelper:AddSizeDelta(self.objectIndex, x, y)
+ else
+ BaseObject.addSizeDelta(self, x, y)
+ end
+end
+
+function UIPrefabObject:getSizeDelta()
+ if self.prefabHelper then
+ return self.prefabHelper:GetSizeDelta(self.objectIndex)
+ else
+ return BaseObject.getSizeDelta(self)
+ end
+end
+
+function UIPrefabObject:fastGetSizeDelta()
+ if self.prefabHelper then
+ self.prefabHelper:CacheSizeDelt(self.objectIndex)
+ return self.prefabHelper.PositionX, self.prefabHelper.PositionY
+ else
+ local sizeDelta = self:getSizeDelta()
+ return sizeDelta.x, sizeDelta.y
+ end
+end
+
+function UIPrefabObject:setPosition(x, y, z)
+ if self.prefabHelper then
+ self.prefabHelper:SetPosition(self.objectIndex, x, y, z)
+ else
+ BaseObject.setPosition(self, x, y, z)
+ end
+end
+
+function UIPrefabObject:addPosition(x, y, z)
+ if self.prefabHelper then
+ self.prefabHelper:AddPosition(self.objectIndex, x, y, z)
+ else
+ BaseObject.addPosition(self, x, y, z)
+ end
+end
+
+function UIPrefabObject:setLocalPosition(x, y, z)
+ if self.prefabHelper then
+ self.prefabHelper:SetLocalPosition(self.objectIndex, x, y, z)
+ else
+ BaseObject.setLocalPosition(self, x, y, z)
+ end
+end
+
+function UIPrefabObject:setLocalPositionX(x)
+ if self.prefabHelper then
+ self.prefabHelper:SetLocalPositionX(self.objectIndex, x)
+ else
+ BaseObject.setLocalPositionX(self, x)
+ end
+end
+
+function UIPrefabObject:setLocalPositionY(y)
+ if self.prefabHelper then
+ self.prefabHelper:SetLocalPositionY(self.objectIndex, y)
+ else
+ BaseObject.setLocalPositionY(self, y)
+ end
+end
+
+function UIPrefabObject:addLocalPosition(x, y, z)
+ if self.prefabHelper then
+ self.prefabHelper:AddLocalPosition(self.objectIndex, x, y, z)
+ else
+ BaseObject.addLocalPosition(self, x, y, z)
+ end
+end
+
+function UIPrefabObject:fastGetLocalPosition()
+ if self.prefabHelper then
+ self.prefabHelper:CacheLocalPosition(self.objectIndex)
+ return self.prefabHelper.PositionX, self.prefabHelper.PositionY, self.prefabHelper.PositionZ
+ else
+ local position = self:getTransform().localPosition
+ return position.x, position.y, position.z
+ end
+end
+
+function UIPrefabObject:getlocalRotationZ()
+ if self.prefabHelper then
+ return self.prefabHelper:GetlocalRotationZ(self.objectIndex)
+ else
+ return 0
+ end
+end
+
+function UIPrefabObject:setOffsetMin(x, y)
+ if self.prefabHelper then
+ self.prefabHelper:SetOffsetMin(self.objectIndex, x, y)
+ else
+ local transform = self:getTransform()
+ Vector2.x = x
+ Vector2.y = y
+ transform.offsetMin = Vector2
+ end
+end
+
+function UIPrefabObject:setOffsetMax(x, y)
+ if self.prefabHelper then
+ self.prefabHelper:SetOffsetMax(self.objectIndex, x, y)
+ else
+ local transform = self:getTransform()
+ Vector2.x = x
+ Vector2.y = y
+ transform.offsetMax = Vector2
+ end
+end
+
+function UIPrefabObject:setVisible(visible, scale)
+ if visible then
+ scale = scale or 1
+ self:setLocalScale(scale, scale, scale)
+ else
+ self:setLocalScale(0, 0, 0)
+ end
+end
+
+function UIPrefabObject:setLocalScale(x, y, z)
+ if self.prefabHelper then
+ self.prefabHelper:SetLocalScale(self.objectIndex, x, y, z)
+ else
+ BaseObject.setLocalScale(self, x, y, z)
+ end
+end
+
+function UIPrefabObject:fastGetLocalScale()
+ if self.prefabHelper then
+ self.prefabHelper:CacheLocalScale(self.objectIndex)
+ return self.prefabHelper.PositionX, self.prefabHelper.PositionY, self.prefabHelper.PositionZ
+ else
+ local localScale = self:getTransform().localScale
+ return localScale.x, localScale.y, localScale.z
+ end
+end
+
+function UIPrefabObject:addLocalScale(x, y, z)
+ if self.prefabHelper then
+ self.prefabHelper:AddLocalScale(self.objectIndex, x, y, z)
+ else
+ BaseObject.addLocalScale(self, x, y, z)
+ end
+end
+
+function UIPrefabObject:setEulerAngles(x, y, z)
+ if self.prefabHelper then
+ self.prefabHelper:SetEulerAngles(self.objectIndex, x, y, z)
+ else
+ BaseObject.setEulerAngles(self, x, y, z)
+ end
+end
+
+function UIPrefabObject:addEulerAngles(x, y, z)
+ if self.prefabHelper then
+ self.prefabHelper:AddEulerAngles(self.objectIndex, x, y, z)
+ else
+ BaseObject.addEulerAngles(self, x, y, z)
+ end
+end
+
+function UIPrefabObject:setLocalEulerAngles(x, y, z)
+ if self.prefabHelper then
+ self.prefabHelper:SetLocalEulerAngles(self.objectIndex, x, y, z)
+ else
+ BaseObject.setLocalEulerAngles(self, x, y, z)
+ end
+end
+
+function UIPrefabObject:addLocalEulerAngles(x, y, z)
+ if self.prefabHelper then
+ self.prefabHelper:AddLocalEulerAngles(self.objectIndex, x, y, z)
+ else
+ BaseObject.addLocalEulerAngles(self, x, y, z)
+ end
+end
+
+--cell配合scrollrect使用监听滑动方向
+function UIPrefabObject:addCellDragListener(func, bindSlideType)
+ self._addTouchFlag = true
+ local eventListener = self:getComponent(BF_UI_CELL_DRAG_EVNET)
+ if eventListener == nil then
+ eventListener = self:addComponent(BF_UI_CELL_DRAG_EVNET)
+ end
+ self._touchEventCallback = func
+ eventListener:AddTouchEventListener(function(eventType, x, y)
+ self:_onCellDragEvent(eventType, x, y)
+ end, bindSlideType)
+end
+
+function UIPrefabObject:_onCellDragEvent(eventType, x, y)
+ if self._touchEventCallback then
+ self._touchEventCallback(eventType, x, y)
+ end
+ self:_handleLongPressEvent(eventType, x, y)
+end
+
+function UIPrefabObject:addDragListener(func)
+ self._addTouchFlag = true
+ local eventListener = self:getComponent(BF_UI_TOUCH_EVENT)
+ if eventListener == nil then
+ eventListener = self:addComponent(BF_UI_DRAG_EVENT)
+ end
+ self._touchEventCallback = func
+ eventListener:AddTouchEventListener(function(eventType, x, y)
+ self:_onDragEvent(eventType, x, y)
+ end)
+end
+
+function UIPrefabObject:_onDragEvent(eventType, x, y)
+ if self._touchEventCallback then
+ self._touchEventCallback(eventType, x, y)
+ end
+ self:_handleLongPressEvent(eventType, x, y)
+end
+
+function UIPrefabObject:addTouchListener(func)
+ self._addTouchFlag = true
+ local eventListener = self:getComponent(BF_UI_TOUCH_EVENT)
+ if eventListener == nil then
+ eventListener = self:addComponent(BF_UI_TOUCH_EVENT)
+ end
+ self._touchEventCallback = func
+ eventListener:AddTouchEventListener(function(eventType, x, y)
+ self:_onTouchEvent(eventType, x, y)
+ end)
+end
+
+function UIPrefabObject:_onTouchEvent(eventType, x, y)
+ if self._touchEventCallback then
+ self._touchEventCallback(eventType, x, y)
+ end
+ self:_handleLongPressEvent(eventType, x, y)
+end
+
+function UIPrefabObject:addClickListener(func, clickSound)
+ self._addTouchFlag = true
+ local eventListener = self:getComponent(BF_UI_TOUCH_EVENT)
+ if eventListener == nil then
+ eventListener = self:addComponent(BF_UI_TOUCH_EVENT)
+ end
+ self._touchEventCallback = func
+ eventListener:AddTouchEventListener(function(eventType, x, y)
+ self:_onClickEvent(eventType, x, y, clickSound)
+ end)
+end
+
+function UIPrefabObject:_onClickEvent(eventType, x, y, clickSound)
+ if self._touchEventCallback and eventType == GConst.TOUCH_EVENT.UP_INSIDE then
+ if self.isShowClickAnimation == nil then
+ local eventListener = self:getComponent(BF_UI_TOUCH_EVENT)
+ if eventListener then
+ self.isShowClickAnimation = eventListener:GetShowClickAnimation()
+ end
+ end
+ if self.isShowClickAnimation then
+ clickSound = clickSound or GConst.CLICK_SOUND.NORMAL
+ local audioPath = AudioManager.CLICK_ID[clickSound]
+ if audioPath then
+ AudioManager:playEffect(audioPath)
+ end
+ end
+ self._touchEventCallback(eventType, x, y)
+ end
+ self:_handleLongPressEvent(eventType, x, y)
+end
+
+function UIPrefabObject:addLongPressListener(func, time)
+ self._addTouchFlag = true
+ self._longPressTime = time or DELAULT_LONG_PRESS_TIME
+ self._longPressCallback = func
+ if self._touchEventCallback == nil then
+ local eventListener = self:getComponent(BF_UI_TOUCH_EVENT)
+ if eventListener == nil then
+ eventListener = self:addComponent(BF_UI_TOUCH_EVENT)
+ end
+ eventListener:AddTouchEventListener(function(eventType, x, y)
+ self:_onTouchEvent(eventType, x, y)
+ end)
+ end
+end
+
+function UIPrefabObject:_handleLongPressEvent(eventType, x, y)
+ if self._longPressCallback then
+ if eventType == GConst.TOUCH_EVENT.DOWN then
+ if self._longPressSchedulerId then
+ self:unscheduleGlobal(self._longPressSchedulerId)
+ end
+ self._longPressSchedulerId = self:performWithDelayGlobal(function()
+ self._longPressSchedulerId = nil
+ if self._longPressCallback then
+ self._longPressCallback()
+ end
+ end, self._longPressTime)
+ elseif eventType ~= GConst.TOUCH_EVENT.DRAG then
+ if self._longPressSchedulerId then
+ self:unscheduleGlobal(self._longPressSchedulerId)
+ self._longPressSchedulerId = nil
+ end
+ end
+ end
+end
+
+function UIPrefabObject:removeTouchListener()
+ local eventListener = self:getComponent(BF_UI_TOUCH_EVENT)
+ if eventListener then
+ eventListener:RemoveEventListener()
+ end
+ self._addTouchFlag = false
+
+ self._longPressTime = nil
+ self._longPressCallback = nil
+end
+
+function UIPrefabObject:removeClickListener()
+ self:removeTouchListener()
+end
+
+function UIPrefabObject:checkHrefLink(x, y)
+ local uiCamera = UIManager:getUICameraComponent()
+ local textCom = self:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_TEXT_MESH_PRO)
+ local hrefId = CS.TMPro.TMP_TextUtilities.FindIntersectingLink(textCom, CS.UnityEngine.Vector3(x, y, 0), uiCamera)
+ return hrefId
+end
+
+function UIPrefabObject:setClickAnimation(enable)
+ local eventListener = self:getComponent(BF_UI_TOUCH_EVENT)
+ if eventListener then
+ self.isShowClickAnimation = enable
+ eventListener:SetShowClickAnimation(enable)
+ end
+end
+
+function UIPrefabObject:setTouchEnable(enable)
+ local maskableGraphic = self:getComponent(UI_MASKABLE_GRAPHIC)
+ if maskableGraphic then
+ maskableGraphic.raycastTarget = enable
+ end
+ local eventListener = self:getComponent(BF_UI_TOUCH_EVENT)
+ if eventListener then
+ eventListener:SetTouchEnable(enable)
+ end
+end
+
+function UIPrefabObject:setLanguageSprite(atlasName, spriteName, callback, com)
+ if string.isEmptyOrNil(atlasName) then
+ Logger.logError("atlasName 为空!!")
+ return
+ end
+ local languageName = I18N:getCurLanguage()
+ local name = spriteName .. "_" .. languageName
+ local path, _ = string.gsub(atlasName, "/atlas/", "/textures/")
+ local spritePath = string.sub(path, 1, -7) .. "/" .. name .. ".png"
+ if not ResourceManager:containsAsset(spritePath) then
+ languageName = I18N:getFallbackLanguage()
+ name = spriteName .. "_" .. languageName
+ spritePath = string.sub(path, 1, -7) .. "/" .. name .. ".png"
+ if not ResourceManager:containsAsset(spritePath) then
+ Logger.logError("fallback language " .. languageName .. " 不包含 " .. spritePath)
+ return
+ end
+ end
+ self:setSprite(atlasName, name, callback, com)
+end
+
+function UIPrefabObject:setSprite(atlasPath, spriteName, callback, com)
+ self:setSpriteHash(atlasPath, hash(spriteName), callback, com)
+end
+
+function UIPrefabObject:setSpriteHash(atlasPath, spriteHashName, callback, com)
+ com = com or self:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_IMAGE) or self:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_SLIDER)
+ if not com then
+ return
+ end
+ if not self.resMap then
+ self.resMap = {}
+ end
+ if not self.resMap[atlasPath] then
+ TextureManager:loadAtlas(self, atlasPath, function(path, assets)
+ if self.resMap[atlasPath] then
+ TextureManager:unloadAtlas(atlasPath)
+ else
+ self.resMap[atlasPath] = assets
+ end
+ local sprite = assets:GetSprite(spriteHashName)
+ if sprite then
+ com.sprite = sprite
+ else
+ com.sprite = nil
+ Logger.logError("图集%s丢失精灵", atlasPath)
+ end
+
+ if callback then
+ callback(com)
+ end
+ end)
+ else
+ local sprite = self.resMap[atlasPath]:GetSprite(spriteHashName)
+ if sprite then
+ com.sprite = sprite
+ if callback then
+ callback(com)
+ end
+ else
+ com.sprite = nil
+ Logger.logError("图集%s丢失精灵", atlasPath)
+ end
+ end
+end
+
+function UIPrefabObject:setTexture(texturePath, callback)
+ local rawImage = self:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_RAW_IMAGE)
+ if not rawImage then
+ return
+ end
+
+ if not self.resMap then
+ self.resMap = {}
+ end
+
+ if self.resMap[texturePath] then
+ rawImage.texture = self.resMap[texturePath]
+ if callback then
+ callback(rawImage)
+ end
+ else
+ TextureManager:loadTextureAsync(self, texturePath,function (assetsPath, texture)
+ if self.resMap[assetsPath] then
+ TextureManager:unLoadTexture(texturePath)
+ else
+ self.resMap[assetsPath] = texture
+ end
+ rawImage.texture = texture
+ if callback then
+ callback(rawImage)
+ end
+ end)
+ end
+end
+
+function UIPrefabObject:setText(value, component)
+ --其他textcompnent在外部获取
+ component = component or self:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_TEXT_MESH_PRO)
+
+ if component then
+ component.text = value
+ else
+ Logger.logWarning("can't find text component!")
+ end
+end
+
+function UIPrefabObject:addRedPoint(offsetX, offsetY, scale, iconName, count, native)
+ if not self.redPoint then
+ if not self.loadRpOver then
+ self.loadRpOver = true
+ UIPrefabManager:loadUIWidgetAsync("assets/prefabs/ui/common/red_point_cell.prefab", self, function(prefabObject)
+ ---@type UIPrefabObject
+ self.redPoint = prefabObject
+ prefabObject:initPrefabHelper()
+ local uiMap = prefabObject:genAllChildren()
+ self.redPoint:setAnchoredPosition(offsetX or 0, offsetY or 0)
+ self.redPoint:setLocalScale(scale, scale, scale)
+ iconName = iconName or "common_point"
+ self.redPoint:setSprite(GConst.ATLAS_PATH.COMMON, iconName)
+ GFunc.getShakeSeq(self.redPoint, false, scale, true)
+ if native then
+ self.redPoint:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_IMAGE):SetNativeSize()
+ end
+ self.redPointCountTx = uiMap["red_point_cell.count_tx"]
+ if count then
+ self.redPointCountTx:setText(count)
+ else
+ self.redPointCountTx:setText("")
+ end
+ end)
+ end
+ else
+ iconName = iconName or "common_point"
+ self.redPoint:setSprite(GConst.ATLAS_PATH.COMMON, iconName)
+ self.redPoint:setAnchoredPosition(offsetX or 0, offsetY or 0)
+ self.redPoint:setActive(true)
+ if native then
+ self.redPoint:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_IMAGE):SetNativeSize()
+ end
+
+ if self.redPointCountTx then
+ if count then
+ self.redPointCountTx:setText(count)
+ else
+ self.redPointCountTx:setText("")
+ end
+ end
+ end
+end
+
+function UIPrefabObject:removeRedPoint()
+ if self.redPoint then
+ self.redPoint:setActive(false)
+ end
+end
+
+function UIPrefabObject:addAdPoint(offsetX, offsetY, scale)
+ if not self.adPoint then
+ if not self.loadAdOver then
+ self.loadAdOver = true
+ UIPrefabManager:loadUIWidgetAsync("assets/prefabs/ui/common/ad_point_cell.prefab", self, function(prefabObject)
+ self.adPoint = prefabObject
+ prefabObject:initPrefabHelper()
+ self.adPoint:setAnchoredPosition(offsetX or 0, offsetY or 0)
+ GFunc.setAdsSprite(self.adPoint)
+ self.adPoint:setLocalScale(scale, scale, scale)
+ end)
+ end
+ else
+ GFunc.setAdsSprite(self.adPoint)
+ self.adPoint:setAnchoredPosition(offsetX or 0, offsetY or 0)
+ self.adPoint:setActive(true)
+ end
+end
+
+function UIPrefabObject:removeAdPoint()
+ if self.adPoint then
+ self.adPoint:setActive(false)
+ end
+end
+
+function UIPrefabObject:setGraphicFlip(horizontal, vertical)
+ local component = self:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_GRAPHIC_FLIP)
+ if component then
+ component.horizontal = horizontal or false
+ component.vertical = vertical or false
+ else
+ Logger.logWarning("can't find BF_GRAPHIC_FLIP component!")
+ end
+end
+
+function UIPrefabObject:onDestroy()
+ if self.resMap then
+ for assetPath, _ in pairs(self.resMap) do
+ ResourceManager:unload(assetPath)
+ end
+ self.resMap = nil
+ end
+ if self._addTouchFlag then
+ self._touchEventCallback = nil
+ self._longPressCallback = nil
+ if self._longPressSchedulerId then
+ self:unscheduleGlobal(self._longPressSchedulerId)
+ self._longPressSchedulerId = nil
+ end
+ end
+ self.redPoint = nil
+ self.loadRpOver = nil
+ self.prefabHelper = nil
+ BaseObject.onDestroy(self)
+ self.childMap = nil
+end
+
+function UIPrefabObject:setImageGray(grey)
+ local com = self:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_IMAGE)
+ if not com then
+ return
+ end
+ Color4.r = 1
+ if grey then
+ Color4.g = 0
+ self:setTouchEnable(false)
+ else
+ Color4.g = 1
+ self:setTouchEnable(true)
+ end
+ Color4.b = 1
+ Color4.a = 1
+ com.color = Color4
+ return true
+end
+
+function UIPrefabObject:setScrollRectCellName(nameIndex)
+ if self.prefabHelper then
+ self.prefabHelper:SetScrollRectCellName(self.objectIndex, nameIndex)
+ else
+ BaseObject.setScrollRectCellName(self, nameIndex)
+ end
+end
+
+return UIPrefabObject
\ No newline at end of file
diff --git a/lua/app/bf/unity/uiprefab_object.lua.meta b/lua/app/bf/unity/uiprefab_object.lua.meta
new file mode 100644
index 00000000..e3699330
--- /dev/null
+++ b/lua/app/bf/unity/uiprefab_object.lua.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 250398d0feaa4c4429f85d8210747412
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/bf/unity/unity.lua b/lua/app/bf/unity/unity.lua
new file mode 100644
index 00000000..ed7c0677
--- /dev/null
+++ b/lua/app/bf/unity/unity.lua
@@ -0,0 +1,62 @@
+BF = BF or {}
+
+BF.Vector3 = function(x, y, z)
+ return {x = x, y = y, z = z}
+end
+
+BF.Vector4 = function(x, y, z, w)
+ return {x = x, y = y, z = z, w = w}
+end
+
+BF.Vector2 = function(x, y)
+ return {x = x, y = y}
+end
+
+BF.Vector2Zero = CS.UnityEngine.Vector2(0, 0)
+BF.Vector3Zero = CS.UnityEngine.Vector3(0, 0, 0)
+BF.Vector3Right = CS.UnityEngine.Vector3(1, 0, 0)
+BF.Vector3Up = CS.UnityEngine.Vector3(0, 1, 0)
+BF.Vector3Forward = CS.UnityEngine.Vector3(0, 0, 1)
+
+BF.Color = function(r, g, b, a)
+ return {r = r, g = g, b = b, a = a}
+end
+
+BF.ColorWhite = CS.UnityEngine.Color(1, 1, 1, 1)
+BF.ColorPurple = CS.UnityEngine.Color(1, 0, 1, 1)
+BF.ColorWhiteAlpha = CS.UnityEngine.Color(1, 1, 1, 0)
+BF.ColorBlack = CS.UnityEngine.Color(0, 0, 0, 1)
+BF.ColorBlackAlpha = CS.UnityEngine.Color(0, 0, 0, 0)
+
+
+BF.Vector2Cross = function (l, r)
+ return l.x * r.y - l.y * r.x
+end
+
+BF.Vector2Dot = function (l, r)
+ return l.x * r.x + l.y * r.y
+end
+
+BF.Vector2Magnitude = function(v)
+ return math.sqrt(v.x * v.x + v.y * v.y)
+end
+
+BF.Vector2Normalize = function (v)
+ local normal = BF.Vector2(0, 0)
+ local m = BF.Vector2Magnitude(v)
+ if m~=0 then
+ normal.x = v.x/m
+ normal.y = v.y/m
+ end
+ return normal
+end
+
+BF.Vector2Distance = function (v1, v2)
+ local deltax = v2.x - v1.x
+ local deltay = v2.y - v1.y
+ return math.sqrt(deltax*deltax + deltay*deltay)
+end
+
+BF.Vector3Magnitude = function(v)
+ return math.sqrt(v.x * v.x + v.y * v.y + v.z * v.z)
+end
\ No newline at end of file
diff --git a/lua/app/bf/unity/unity.lua.meta b/lua/app/bf/unity/unity.lua.meta
new file mode 100644
index 00000000..1260553f
--- /dev/null
+++ b/lua/app/bf/unity/unity.lua.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 449df0d989bcd834c80d49b097189916
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/bf/unity/weapon_object.lua b/lua/app/bf/unity/weapon_object.lua
new file mode 100644
index 00000000..0e05fe67
--- /dev/null
+++ b/lua/app/bf/unity/weapon_object.lua
@@ -0,0 +1,338 @@
+local CharacterFSMManager = require "app/module/character_fsm/character_fsm_manager"
+local BaseObject = require "app/bf/unity/base_object"
+local WeaponObject = class("WeaponObject", BaseObject)
+
+local BF_WEAPON_HELPER = GConst.TYPEOF_UNITY_CLASS.BF_WEAPON_HELPER
+local ANIMATOR = GConst.TYPEOF_UNITY_CLASS.ANIMATOR
+local ANIMATION_FRAME_PER_SECOND = 30
+
+local SUPPORT_SHADER = {
+ ["BF/Models/Character Battle"] = true,
+}
+
+local hash = GFunc.hash
+
+local HashName = {}
+local function getHashName(str)
+ local intName = HashName[str]
+ if intName == nil then
+ intName = hash(str)
+ HashName[str] = intName
+ end
+ return intName
+end
+
+local CHILDMAP_METATABLE = {
+ __index = function(t, k)
+ if rawget(t, k) == nil then
+ local v = rawget(t, hash(k))
+ if v then
+ rawset(t, k, v)
+ end
+ return v
+ end
+ return rawget(t, k)
+ end
+}
+
+local Vector3 = BF.Vector3(0, 0, 0)
+
+local abs = math.abs
+
+function WeaponObject:ctor()
+ self.timeScale = 1
+end
+
+function WeaponObject:initWithPrefab(assetPath, prefab)
+ BaseObject.initWithPrefab(self, assetPath, prefab)
+ self.characterHelper = self:getComponent(BF_WEAPON_HELPER)
+ if self.characterHelper == nil then
+ self.characterHelper = self:addComponent(BF_WEAPON_HELPER)
+ end
+ self.mainModel = self.characterHelper:GetModelObject()
+ self.objectIndex = -1
+ self:_genAllBones()
+end
+
+function WeaponObject:initWithCharacterHelper(characterHelper, index, gameObject, name, admin)
+ self.characterHelper = characterHelper
+ self.objectIndex = index
+ self.gameObject = gameObject
+ self.name = name
+ self.admin = admin
+end
+
+function WeaponObject:_genAllBones()
+ local childMap = {}
+ if self.characterHelper then
+ local childNum = self.characterHelper:GetListCount()
+ for i = 0, childNum do
+ local gameObject = self.characterHelper:GetGameObjectByIndex(i)
+ local hashName = self.characterHelper:GetHashNameByIndex(i)
+ local child = WeaponObject:create()
+ child:initWithCharacterHelper(self.characterHelper, i, gameObject, hashName, self)
+ if childMap[hashName] == nil then
+ childMap[hashName] = child
+ end
+ table.insert(self.childList, child)
+ end
+ end
+ setmetatable(childMap, CHILDMAP_METATABLE)
+ self.childMap = childMap
+end
+
+function WeaponObject:getBoneByName(name)
+ return self.childMap[name]
+end
+
+function WeaponObject:fastGetPosition()
+ if self.characterHelper then
+ self.characterHelper:CachePosition(self.objectIndex)
+ return self.characterHelper.PositionX, self.characterHelper.PositionY, self.characterHelper.PositionZ
+ else
+ local position = self:getTransform().position
+ return position.x, position.y, position.z
+ end
+end
+
+function WeaponObject:getBonePositionByName(name)
+ return self.childMap[name]:fastGetPosition()
+end
+
+function WeaponObject:getHashCode()
+ local code = -1
+ if self.characterHelper then
+ code = self.characterHelper:GetModelHashCode()
+ end
+ return code
+end
+
+function WeaponObject:play(name, layer, normalizedTime)
+ layer = layer or -1
+ normalizedTime = normalizedTime or 0
+ if self.mainAnimator == nil then
+ if self.mainModel then
+ self.mainAnimator = self.mainModel:GetComponent(ANIMATOR)
+ self.mainAnimator:Play(name, layer, normalizedTime)
+ end
+ else
+ self.mainAnimator:Play(name, layer, normalizedTime)
+ end
+end
+
+function WeaponObject:playHashName(hashName, layer, normalizedTime)
+ layer = layer or -1
+ normalizedTime = normalizedTime or 0
+ if self.mainAnimator == nil then
+ if self.mainModel then
+ self.mainAnimator = self.mainModel:GetComponent(ANIMATOR)
+ self.mainAnimator:Play(hashName, layer, normalizedTime)
+ end
+ else
+ self.mainAnimator:Play(hashName, layer, normalizedTime)
+ end
+end
+
+function WeaponObject:setAnimatorBool(key, value)
+ if self.mainAnimator == nil then
+ if self.mainModel then
+ self.mainAnimator = self.mainModel:GetComponent(ANIMATOR)
+ self.mainAnimator:SetBool(key, value)
+ end
+ else
+ self.mainAnimator:SetBool(key, value)
+ end
+end
+
+function WeaponObject:getMainAnimator()
+ if self.mainAnimator == nil then
+ if self.mainModel then
+ self.mainAnimator = self.mainModel:GetComponent(ANIMATOR)
+ end
+ end
+ return self.mainAnimator
+end
+
+function WeaponObject:getMainModelTransform()
+ if self.mainModelTransform == nil then
+ self.mainModelTransform = self.mainModel and self.mainModel.transform or nil
+ end
+ return self.mainModelTransform
+end
+
+function WeaponObject:getMainModel()
+ return self.mainModel
+end
+
+function WeaponObject:getCurrentAnimationHash()
+ return CS.BF.Utils.GetCurrentAnimationHash(self:getMainAnimator())
+end
+
+function WeaponObject:setMainModelLocalScale(x, y, z)
+ local transform = self:getMainModelTransform()
+ if transform then
+ Vector3.x = x
+ Vector3.y = y
+ Vector3.z = z
+ transform.localScale = Vector3
+ end
+end
+
+function WeaponObject:setMainModelLocalPosition(x, y, z)
+ if self.characterHelper then
+ self.characterHelper:SetMainModelLocalPosition(x, y, z)
+ else
+ local transform = self:getMainModelTransform()
+ if transform then
+ Vector3.x = x
+ Vector3.y = y
+ Vector3.z = z
+ transform.localPosition = Vector3
+ end
+ end
+end
+
+function WeaponObject:getStateTime(name)
+ local hashName = getHashName(name)
+ return self.characterHelper:GetStateTime(hashName)
+end
+
+function WeaponObject:getStateTimeHash(hashName)
+ return self.characterHelper:GetStateTime(hashName)
+end
+
+function WeaponObject:getStateKeyTime(name, index)
+ local hashName = getHashName(name)
+ local keyTime = self.characterHelper:GetStateKeyFrame(hashName, index) or 0
+ return keyTime/ANIMATION_FRAME_PER_SECOND
+end
+
+function WeaponObject:containsState(name)
+ return self:getStateTime(name) > 0.00001
+end
+
+function WeaponObject:setTimeScale(timeScale)
+ if abs(self.timeScale - timeScale) < 0.00001 then
+ return
+ end
+ self.timeScale = timeScale
+ local mainAnimator = self:getMainAnimator()
+ mainAnimator.speed = timeScale*(self.timeScaleAddition or 1)
+end
+
+function WeaponObject:setTimeScaleAddition(addition)
+ self.timeScaleAddition = addition
+ local timeScale = self.timeScale*addition
+ local mainAnimator = self:getMainAnimator()
+ mainAnimator.speed = timeScale
+end
+
+function WeaponObject:setCullingMode(cullingMode)
+ local mainAnimator = self:getMainAnimator()
+ if mainAnimator then
+ mainAnimator.cullingMode = cullingMode
+ end
+end
+
+function WeaponObject:getCharacterMaterials()
+ if not self.characterMaterials then
+ self.characterMaterials = {}
+ for k, prefabObj in pairs(self.childMap) do
+ local render = prefabObj:getComponent(GConst.TYPEOF_UNITY_CLASS.SKINNED_MESH_RENDERER)
+ if not CS.BF.Utils.IsNull(render) and not CS.BF.Utils.IsNull(render.material) and SUPPORT_SHADER[render.material.shader.name] then
+ table.insert(self.characterMaterials, render.material)
+ end
+ end
+ end
+ return self.characterMaterials
+end
+
+function WeaponObject:getCharacterMeshRenderer()
+ if not self.characterMeshRenders then
+ self.characterMeshRenders = {}
+ for k, prefabObj in pairs(self.childMap) do
+ local render = prefabObj:getComponent(GConst.TYPEOF_UNITY_CLASS.SKINNED_MESH_RENDERER)
+ if not CS.BF.Utils.IsNull(render) and not CS.BF.Utils.IsNull(render.material) and SUPPORT_SHADER[render.material.shader.name] then
+ table.insert(self.characterMeshRenders, render)
+ end
+ end
+ end
+ return self.characterMeshRenders
+end
+
+function WeaponObject:getMaterialPropertyBlock()
+ if not self.mpb then
+ self.mpb = CS.UnityEngine.MaterialPropertyBlock()
+ end
+ return self.mpb
+end
+
+function WeaponObject:setCustomShadowEnable(enabled)
+ local materials = self:getCharacterMaterials()
+ for _, material in ipairs(materials) do
+ material:SetShaderPassEnabled("Always", enabled)
+ end
+end
+
+function WeaponObject:setCharacterFSM(fsm)
+ self.fsm = fsm
+end
+
+function WeaponObject:setShadowColor(color)
+ local renderers = self:getCharacterMeshRenderer()
+ local mpBlock = self:getMaterialPropertyBlock()
+ for i, renderer in ipairs(renderers) do
+ renderer:GetPropertyBlock(mpBlock)
+ mpBlock:SetColor("_shadow_color", color)
+ renderer:SetPropertyBlock(mpBlock)
+ end
+end
+
+function WeaponObject:setLocalEulerAngles(x, y, z)
+ if self.characterHelper then
+ self.characterHelper:SetLocalEulerAngles(self.objectIndex, x, y, z)
+ else
+ BaseObject.setLocalEulerAngles(self, x, y, z)
+ end
+end
+
+function WeaponObject:setLocalPosition(x, y, z)
+ if self.characterHelper then
+ self.characterHelper:SetLocalPosition(self.objectIndex, x, y, z)
+ else
+ BaseObject.setLocalPosition(self, x, y, z)
+ end
+end
+
+function WeaponObject:setPosition(x, y, z)
+ if self.characterHelper then
+ self.characterHelper:SetPosition(self.objectIndex, x, y, z)
+ else
+ BaseObject.setPosition(self, x, y, z)
+ end
+end
+
+function WeaponObject:setLocalScale(x, y, z)
+ if self.characterHelper then
+ self.characterHelper:SetLocalScale(self.objectIndex, x, y, z)
+ else
+ BaseObject.setLocalScale(self, x, y, z)
+ end
+end
+
+function WeaponObject:onDestroy()
+ if self.fsm then
+ CharacterFSMManager:stopFSM(self.fsm)
+ self.fsm = nil
+ end
+ BaseObject.onDestroy(self)
+ self.characterHelper = nil
+ self.mainModel = nil
+ self.mainAnimator = nil
+ self.childMap = nil
+ self.characterMaterials = nil
+ self.characterMeshRenders = nil
+ self.mpb = nil
+end
+
+return WeaponObject
\ No newline at end of file
diff --git a/lua/app/bf/unity/weapon_object.lua.meta b/lua/app/bf/unity/weapon_object.lua.meta
new file mode 100644
index 00000000..aa3ef2bf
--- /dev/null
+++ b/lua/app/bf/unity/weapon_object.lua.meta
@@ -0,0 +1,10 @@
+fileFormatVersion: 2
+guid: 70c3ad6fb587edf4994e34a7a27d7287
+ScriptedImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 2
+ userData:
+ assetBundleName:
+ assetBundleVariant:
+ script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
diff --git a/lua/app/common.meta b/lua/app/common.meta
new file mode 100644
index 00000000..41f9f381
--- /dev/null
+++ b/lua/app/common.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 9e289b1795b0dd04db87ebbc68ebc485
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/common/audio_manager.lua b/lua/app/common/audio_manager.lua
new file mode 100644
index 00000000..ef6800a7
--- /dev/null
+++ b/lua/app/common/audio_manager.lua
@@ -0,0 +1,255 @@
+local AudioManager = {}
+
+local BGM_VOLUME = 0.5
+local MAX_EFFECT_NUM = 30
+
+local AUDIO_CLIP = typeof(CS.UnityEngine.AudioClip)
+
+AudioManager.BGM_ID = {
+ MAINCITY = "assets/arts/sounds/music/bgm_main.wav",
+}
+
+AudioManager.CLICK_ID = {
+ [1] = "assets/arts/sounds/sfx/ui/ui_button.wav",
+}
+
+AudioManager.EFFECT_ID = {
+ BUTTON = "assets/arts/sounds/sfx/ui/ui_button.wav",
+ REWARD = "assets/arts/sounds/sfx/ui/sfx_reward.wav",
+ SFX_TOAST = "assets/arts/sounds/sfx/ui/sfx_toast.wav",
+ SFX_SUMMON = "assets/arts/sounds/sfx/ui/sfx_summon.wav",
+ SFX_ITEM_9 = "assets/arts/sounds/sfx/ui/sfx_item_9.wav",
+ SFX_ITEM_10 = "assets/arts/sounds/sfx/ui/sfx_item_10.wav",
+ SFX_ITEM_11 = "assets/arts/sounds/sfx/ui/sfx_item_11.wav",
+ SFX_UPGRADE = "assets/arts/sounds/sfx/ui/sfx_upgrade.wav",
+ SFX_TRAIN = "assets/arts/sounds/sfx/ui/sfx_train.wav",
+}
+
+AudioManager.EFFECT_PREFIX = "assets/arts/sounds/sfx/ui/%s.wav"
+
+function AudioManager:init()
+ self.musicEnabled = nil
+ self.effectEnabled = nil
+ self.musicVolume = 1
+ self.effectVolume = 1
+ self:setMusicVolume(LocalData:getAudioMusicVolume())
+ self:setEffectVolume(LocalData:getAudioEffectVolume())
+
+ self.audioSourcePool = {}
+ self.bgmAudioSource = nil
+ self.currentMusic = nil
+end
+
+function AudioManager:playMusic(audioPath, isLoop)
+ if audioPath == nil or audioPath == "" then
+ return
+ end
+ if not self.musicEnabled then
+ self.disableMusic = audioPath
+ self.disableMusicIsLoop = isLoop
+ return
+ end
+ if self.currentMusic == audioPath then
+ local as = self:getMusicSource()
+ if self.currentMusicIsLoop ~= isLoop then
+ if isLoop == nil then
+ as.loop = true
+ else
+ as.loop = isLoop
+ end
+ end
+ else
+ self.currentMusic = audioPath
+ self.currentMusicIsLoop = isLoop
+ if self.musicPath then
+ ResourceManager:unload(self.musicPath)
+ self.musicPath = nil
+ end
+ ResourceManager:loadOriginAssetAsync(audioPath, AUDIO_CLIP, function(path, audioClip)
+ if path == self.currentMusic then
+ self.musicPath = path
+ local as = self:getMusicSource()
+ as.clip = audioClip
+ if isLoop == nil then
+ isLoop = true
+ end
+ as.loop = isLoop
+ as:Play()
+ else
+ ResourceManager:unload(path)
+ end
+ end)
+ end
+end
+
+function AudioManager:stopMusicById(id, isClear)
+ if self.currentMusic == id then
+ self:stopMusic(isClear)
+ end
+end
+
+function AudioManager:stopMusic(isClear)
+ local bgmAudioSource = self:getMusicSource()
+ if bgmAudioSource then
+ bgmAudioSource:Stop()
+ if isClear then
+ bgmAudioSource.clip = nil
+ if self.musicPath then
+ ResourceManager:unload(self.musicPath)
+ self.musicPath = nil
+ end
+ self.currentMusic = nil
+ end
+ end
+end
+
+function AudioManager:pauseMusic()
+ local bgmAudioSource = self:getMusicSource()
+ if bgmAudioSource then
+ bgmAudioSource:Pause()
+ end
+end
+
+function AudioManager:resumeMusic()
+ local bgmAudioSource = self:getMusicSource()
+ if bgmAudioSource then
+ bgmAudioSource:UnPause()
+ end
+end
+
+function AudioManager:getAudioSourceFromPool(path)
+ local audioObj
+ for i, v in ipairs(self.audioSourcePool) do
+ if not v.audioSource.isPlaying then
+ audioObj = v
+ if v.path and v.path ~= path then
+ ResourceManager:unload(v.path)
+ v.path = path
+ end
+ break
+ end
+ end
+ if not audioObj and #self.audioSourcePool < MAX_EFFECT_NUM then
+ local audioSource = CS.BF.BFMain.Instance.SoundManager:addEffectAudioSource()
+ audioObj = {
+ path = path,
+ audioSource = audioSource
+ }
+ table.insert(self.audioSourcePool, audioObj)
+ end
+ return audioObj
+end
+
+function AudioManager:getMusicSource()
+ if not self.bgmAudioSource then
+ self.bgmAudioSource = CS.BF.BFMain.Instance.SoundManager:getMusicAudioSource()
+ end
+
+ self.bgmAudioSource.volume = self.musicVolume
+ return self.bgmAudioSource
+end
+
+function AudioManager:playEffect(audioPath, volume)
+ if audioPath == nil or audioPath == "" then
+ return
+ end
+ if not self.effectEnabled then
+ return
+ end
+ if volume then
+ volume = volume*self.effectVolume
+ else
+ volume = self.effectVolume
+ end
+
+ ResourceManager:loadOriginAssetAsync(audioPath, AUDIO_CLIP, function(path, audioClip)
+ if audioClip then
+ local asObj = self:getAudioSourceFromPool(path)
+ if asObj then
+ local audioSource = asObj.audioSource
+ audioSource.clip = audioClip
+ audioSource.loop = false
+ audioSource.volume = volume
+ audioSource:Play()
+ end
+ end
+ end)
+end
+
+function AudioManager:stopEffect(path)
+ for i, v in ipairs(self.audioSourcePool) do
+ if v.path and v.path == path then
+ v.audioSource:Stop()
+ end
+ end
+end
+
+function AudioManager:isMusicEnabled()
+ return self.musicEnabled
+end
+
+function AudioManager:isEffectEnabled()
+ return self.effectEnabled
+end
+
+function AudioManager:setMusicVolume(value)
+ self.musicVolume = value or 1
+ LocalData:setAudioMusicVolume(self.musicVolume)
+ self.musicEnabled = self.musicVolume > 0
+
+ if self.musicEnabled then
+ self:getMusicSource()
+ if self.disableMusic and self.disableMusic ~= "" then
+ self:playMusic(self.disableMusic, self.disableMusicIsLoop)
+ end
+ else
+ if self.currentMusic and self.currentMusic ~= "" then
+ self.disableMusic = self.currentMusic
+ self.disableMusicIsLoop = self.currentMusicIsLoop
+ end
+ self:stopMusic(true)
+ end
+end
+
+function AudioManager:getMusicVolume()
+ return self.musicVolume
+end
+
+function AudioManager:setEffectVolume(value)
+ self.effectVolume = value or 1
+ LocalData:setAudioEffectVolume(self.effectVolume)
+ self.effectEnabled = self.effectVolume > 0
+
+ if not self.effectEnabled then
+ self:stopAndClearAudioFx()
+ end
+end
+
+function AudioManager:getEffectVolume()
+ return self.effectVolume
+end
+
+function AudioManager:stopAndClearAudioFx()
+ if self.audioSourcePool then
+ for i, v in ipairs(self.audioSourcePool) do
+ v.audioSource:Stop()
+ if v.audioSource.clip then
+ v.audioSource.clip = nil
+ if v.path then
+ ResourceManager:unload(v.path)
+ v.path = nil
+ end
+ end
+ end
+ end
+end
+
+function AudioManager:clear()
+ self:stopMusic(true)
+ self:stopAndClearAudioFx()
+ self.bgmAudioSource = nil
+ self.audioSourcePool = nil
+ CS.BF.BFMain.Instance.SoundManager:clearAudioSource()
+end
+
+return AudioManager
\ No newline at end of file
diff --git a/lua/app/common/audio_manager.lua.meta b/lua/app/common/audio_manager.lua.meta
new file mode 100644
index 00000000..22172f86
--- /dev/null
+++ b/lua/app/common/audio_manager.lua.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 221836402f4fd974c8ae11d1029dc2fb
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/common/bi_report.lua b/lua/app/common/bi_report.lua
new file mode 100644
index 00000000..461aff4d
--- /dev/null
+++ b/lua/app/common/bi_report.lua
@@ -0,0 +1,1414 @@
+local BIReport = {}
+
+-- 客户端的所有的上报事件都要加"client_"前缀
+local EVENT_NAME_TUTORIAL = "client_tutorial"
+local EVENT_NAME_LUA_CRASH = "client_lua_crash"
+local EVENT_NAME_OPEN_UI = "client_open_ui"
+
+-- BIReport.FIREBASE_UI_TYPE = {
+-- SHOP = "Shop",
+-- BUY_VIT = "BuyVit",
+-- QUICK_HANG_UP = "QuickHangUp",
+-- SUPER_TURNTABLE = "SuperTurntable",
+-- DAILY_GIFT = "DailyGift",
+-- NEW_WISH_GIFT = "NewWishGift",
+-- NEW_PLAYER_GIFT = "NewPlayerGift",
+-- BALLTE_JEWELRY_SELECT_BUFF = "BallteJewelrySelectBuff",
+-- BALLTE_RESURRECTION = "BallteResurrection",
+-- BALLTE_SELECT_BUFF = "BallteSelectBuff",
+-- }
+
+-- BIReport.FIGHT_END_TYPE = {
+-- WIN = "Win",
+-- FAIL = "Fail",
+-- QUIT = "Quit",
+-- }
+-- BIReport.FIGHT_DEATH_TYPE = {
+-- SURVIVE = "Survive",
+-- ELITE_FAIL = "EliteFail",
+-- BOSS_FAIL = "BossFail",
+-- NORMAL_FAIL = "NormalFail",
+-- }
+
+-- BIReport.SKILL_REFRESH_TYPE = {
+-- FREE = "Free",
+-- ADS = "Ads",
+-- GEM = "Gem",
+-- }
+
+-- 所有需要上报的按钮点击事件
+BIReport.CLICK_BTN_TYPE = {
+ EQUIP = "Equip",
+ DUNGEON = "Dungeon",
+ TRAIN = "Train",
+ MALL = "Mall",
+ SHOP = "Shop",
+}
+
+BIReport.ADS_OPT_TYPE = {
+ CLICK = "Click",
+ SUC = "Scu",
+ RETURN = "Return",
+}
+
+BIReport.PAY_OPT_TYPE = {
+ POP = "Pop",
+ CLICK = "Click",
+ BUY = "Buy",
+ REWARD = "Reward",
+ CANCEL = "Cancel",
+ FAILED = "Failed",
+ INIT_SUC = "InitSuc",
+ INIT_FAILED = "InitFailed",
+}
+
+BIReport.EQUIP_OPT_TYPE = {
+ EQUIP_GET = "EquipGet",
+ EQUIP_LV_UP = "EquipLvUp",
+ EQUIP_WEAR = "EquipWear",
+ LEGACY_GET = "LegacyGet",
+ LEGACY_LV_UP = "LegacyLvUp",
+ LEGACY_WEAR = "LegacyWear",
+ LEGACY_REMOVE = "LegacyRemove",
+}
+
+BIReport.BATTLE_PASS_OPT_TYPE = {
+ OPEN = "Open",
+ TASK_CLAIM = "TaskClaim",
+ REWARD_CLAIM = "RewardClaim",
+ EXP_GET = "ExpGet",
+}
+
+BIReport.ACCOUNT_OPT_TYPE = {
+ LOGIN_CLICK = "LoginClick",
+ LOGIN_FINISH = "LoginFinish",
+ LOGIN_FAILED = "LoginFailed",
+ BIND_CLICK = "BindClick",
+ BIND_FINISH = "BindFinish",
+}
+
+BIReport.TASK_OPT_TYPE = {
+ FINISH = "Finish",
+ REWARD = "Reward",
+}
+
+BIReport.MAIL_OPT_TYPE = {
+ OPEN = "Open",
+ CLAIM = "Claim",
+}
+
+BIReport.TRAIN_OPT_TYPE = {
+ TRAIN = "Train",
+ REBORN = "Reborn",
+ QUICK_PASS = "QuickPass",
+ QUICK_PASS_UP = "QuickPassUp",
+}
+
+BIReport.CHAPTER_OPT_TYPE = {
+ PASS = "Pass",
+}
+
+BIReport.RUNE_OPT_TYPE = {
+ GET = "Get",
+ LV_UP = "LvUp",
+ WEAR = "Wear",
+}
+
+BIReport.ITEM_GET_TYPE = {
+ RUNE_LV_UP = "RuneLvUp", -- 符文升级
+ RUNE_SUMMON = "RuneSummon", -- 符文召唤
+ MINING_DIGGING = "MiningDigging", -- 挖矿
+ MINING_RECOVER = "MiningRecover", -- 挖矿回复
+ MINING_REWARD = "MiningReward", -- 挖矿领奖
+ RESEARCH = "Research", -- 研究快速结束
+ MASTERY_UPGRADE = "MasteryUpgrade",
+ MASTERY_RESET = "MasteryReset",
+ TRAIN_UP = "TrainUp", -- 修炼升级
+ QUICK_PASS_UP = "QuickPassUp", -- 速通升级
+ REBORN = "Reborn", -- 领悟
+ QUICK_PASS = "QuickPass", -- 速通
+ SIGNIN = "SignIn", -- 签到
+ CHAPTER_DROP = "ChapterDrop",
+ CHAPTER_PASS = "ChapterPass", -- 章节通关
+ CHAPTER_REWARD_STAGE = "ChapterRewardStage", -- 章节奖励
+ LOOK_ADS = "LookAds",-- 看广告
+ DAILY_TASK = "DailyTask", -- 每日任务
+ IDLE_BASE = "IdleBase", -- 普通挂机
+ IDLE_AD = "IdleAd", -- 广告挂机
+ SEVEN_DAY_TASK = "SevenDayTask",
+ SEVEN_DAY_STEP_REWARD = "SevenDayStepReward",
+ SDK_PAY = "SdkPay",
+ TUTORIAL_TASK = "TutorialTask",
+ DUNGEON = "Dungeon", -- 副本
+ ARENA = "Arena", -- 英雄大会
+ MONTH_CARD = "MnonthCard", -- 月卡
+ BATTLE_PASS_REWARD = "BattlePassReward",
+ BATTLE_PASS_TASK = "BattlePassTask",
+ BATTLE_REVIVE = "BattleRevive",
+ RENAME = "Rename",
+ MAIL = "Mail",
+ FUND_CHAPTER = "FuncChapter",
+
+ MALL_POP_GIFT = "MallPopGift",
+ MALL_SKIP_AD_GIFT = "MallSkipAdGift",
+ MALL_SUBSCRIBE_BLESSING_GIFT = "MallSubscribeBlessingGift",
+ MALL_MONTH_CARD = "MallMonthCard",
+ MALL_LIMIT_GIFT = "MallLimitGift",
+ MALL_FIRST_RECHARGE_GIFT = "MallFirstRechargeGift",
+ MALL_CHAPTER_FUND = "MallChapterFund",
+ MALL_BATTLE_PASS = "MallBattlePass",
+
+ MALL_TREASURE = "MallTreasure",
+ DAILY_GIFT = "DailyGift",
+ WEEKLY_GIFT = "WeeklyGift",
+
+ UPDATE_TIME = "UpdateTime",
+ CROSS_DAY = "CrossDay",
+
+ SUMMON = "Summon", -- 抽卡获取
+}
+
+BIReport.ADS_CLICK_TYPE = {
+ SUMMON = "Summon",
+ MINING = "Mine",
+ RESEARCH = "Research",
+ DUNGEON = "Dungeon",
+ ARENA = "Arena",
+ DAILY_TASK = "DailyTask",
+ QUICK_PASS = "QuickPass",
+ GIFT = "Gift",
+ BATTLE_SPEEDUP = "BattleSpeedup",
+ BLESSING = "Blessing",
+ IDLE_EXT_REWARDS = "IdleExtRewards",
+ MAIL = "Mail",
+}
+
+-- BIReport.OPEN_STORE_TYPE = {
+-- ICON = "Icon",
+-- NO_GOLD = "NoGold",
+-- FIRST_PAY = "FirstPay",
+-- }
+
+BIReport.FIGHT_TYPE = {
+ START = "Start",
+ END = "End",
+}
+
+BIReport.BATTLE_TYPE = {
+ ["1"] = "Stage",
+ ["2"] = "DungeonGold",
+ ["3"] = "DungeonGem",
+ ["4"] = "DungeonMithril",
+ ["5"] = "DungeonArena",
+}
+
+BIReport.GIFT_TYPE = {
+ MALL_POP_GIFT = "MallPopGift",
+ MALL_SKIP_AD_GIFT = "MallSkipAdGift",
+ MALL_SUBSCRIBE_BLESSING_GIFT = "MallSubscribeBlessingGift",
+ MALL_MONTH_CARD = "MallMonthCard",
+ MALL_LIMIT_GIFT = "MallLimitGift",
+ MALL_FIRST_RECHARGE_GIFT = "MallFirstRechargeGift",
+ MALL_CHAPTER_FUND = "MallChapterFund",
+ MALL_BATTLE_PASS = "MallBattlePass",
+
+ MALL_TREASURE = "MallTreasure",
+ DAILY_GIFT = "DailyGift",
+ WEEKLY_GIFT = "WeeklyGift",
+}
+
+BIReport.COIN_TYPE = {
+ [1] = "Gold",
+ [2] = "Gem",
+}
+
+-- BIReport.MONTHLY_CARD_TYPE = {
+-- NONE = "None", -- 无月卡
+-- SMALL = "OnlySmall", -- 小月卡
+-- BIG = "OnlyBig", -- 大月卡
+-- BOTH = "Both", -- 大小月卡
+-- NO_TIME = "NoTime", -- 没登录无月卡数据
+-- }
+
+-- 割草
+local EVENT_NAME_EXIT = "exit"
+local EVENT_NAME_FIGHT = "fight"
+local EVENT_NAME_CLICK_BTN = "click_btn"
+local EVENT_NAME_ITEM_GET = "item_get"
+local EVENT_NAME_ITEM_USE = "item_use"
+local EVENT_NAME_COIN_GET = "coin_get"
+local EVENT_NAME_COIN_USE = "coin_use"
+local EVENT_NAME_AD_OPT = "ads_opt"
+local EVENT_NAME_PAY_OPT = "pay_opt"
+local EVENT_NAME_EQUIP_OPT = "equip_opt"
+local EVENT_NAME_LOGIN_FINISH = "login_finish"
+local EVENT_NAME_LOGIN = "login"
+local EVENT_NAME_BATTLE_PASS_OPT = "battle_pass_opt"
+local EVENT_NAME_PING_SERVER = "ping_server"
+local EVENT_NAME_ACCOUNT_OPT = "account_opt"
+local EVENT_NAME_SUMMON = "summon"
+local EVENT_NAME_TASK_OPT = "task_opt"
+local EVENT_NAME_MAIL_OPT = "mail_opt"
+local EVENT_NAME_TRAIN_OPT = "train_opt"
+local EVENT_NAME_CHAPTER_OPT = "chapter_opt" -- 章节
+local EVENT_NAME_RUNE_OPT = "rune_opt" -- 符文
+
+-- adjust
+function BIReport:postAdjustSimpleTrackEvent(eventName, eventValue)
+ if not Platform:getIsPublishChannel() or EDITOR_MODE then
+ return
+ end
+ if not eventName or not eventValue then
+ return
+ end
+ CS.BF.BFMain.Instance.SDKMgr.BFThirdReportSDKMgr:PostAdjustSimpleTrackEvent(eventName, json.encode(eventValue))
+end
+
+-- Firebase
+-- function BIReport:postFirebaseLog(eventName, eventValue)
+-- if not Platform:getIsPublishChannel() or EDITOR_MODE then
+-- return
+-- end
+-- if not eventName or not eventValue then
+-- return
+-- end
+-- if CS.UnityEngine.Application.platform == CS.UnityEngine.RuntimePlatform.Android then
+-- CS.BF.BFMain.Instance.SDKMgr.BFThirdReportSDKMgr:PostFireBaseEvent(eventName, json.encode(eventValue))
+-- end
+-- end
+
+function BIReport:updateAccountId(id)
+ if id == nil then
+ return
+ end
+ self:clearAccountId()
+ CS.BF.BFMain.Instance.SDKMgr.BFThirdReportSDKMgr:SetThinkingAnalyticsAccountId(tostring(id))
+end
+
+function BIReport:clearAccountId()
+ CS.BF.BFMain.Instance.SDKMgr.BFThirdReportSDKMgr:ClearThinkingAnalyticsAccountId()
+end
+
+function BIReport:report(name, args)
+ -- 内网dev包和编辑器模式不上报
+ if Platform and Platform:getIsDevChannel() or EDITOR_MODE then
+ return
+ end
+ -- 审核模式不上报
+ if CS.BF.BFMain.IsShenhe then
+ return
+ end
+ --@TODO 2023-02-22 17:15:51 开发期间不上报
+ if args and type(args) == "table" then
+ -- Level_ID 关卡ID Int 事件发生时所处关卡ID
+ -- MaxLevel 最大关卡 Int 事件发生时已解锁的最大关卡
+ -- IsNew 是否是新用户 Boolean 事件发生时用户是否为新用户
+ -- gold 金币数 Int 事件发生后剩余金币数
+ -- gem 钻石数 Int 事件发生后剩余钻石数
+ -- Energy 体力数 Int 事件发生后剩余体力数
+ -- ResourceVersion 热更资源版本 String 事件发生时资源更新版本
+ -- WearEquip 当前装备 String 装备id:等级|装备id:等级|装备id:等级|装备id:等级|装备id:等级(按武器盔甲头盔的顺序)
+ -- WearCherish 当前传家宝 String 传家宝id:等级|传家宝id:等级|传家宝id:等级|传家宝id:等级|传家宝id:等级
+ -- WearRunes 当前符文 String 符文id:等级|符文id:等级|符文id:等级|符文id:等级|符文id:等级
+ -- UserGrade 用户等级 int 事件发生后用户等级
+ -- Skill 当前精通能力 int 精通能力强化次数
+ if DataManager and DataManager:getIsInitWithServer() then
+ if DataManager.ChapterData then
+ if not args.max_level then
+ args.max_level = DataManager.ChapterData:getHistoryChapterId() + 1
+ end
+ if not args.level_id then
+ args.level_id = DataManager.ChapterData:getCurChapterId() + 1
+ end
+ end
+ if DataManager.BagData and DataManager.BagData.ItemData then
+ local goldBigBNum = DataManager.BagData.ItemData:getItemBigNumById(GConst.ItemConst.ITEM_ID_GOLD)
+ args.gold_value = goldBigBNum.value
+ args.gold_unit = goldBigBNum.unit
+
+ local gemBigNum = DataManager.BagData.ItemData:getItemBigNumById(GConst.ItemConst.ITEM_ID_GEM)
+ args.gem = BigNumOpt.bigNum2Num(gemBigNum)
+ end
+ end
+ args.current_version = CS.BF.BFMain.Instance.GameLaunchMgr:GetCurrentVersion()
+ -- args.is_today_first = LocalData:getTodayFirst()
+ args.device_unique_identifier = CS.UnityEngine.SystemInfo.deviceUniqueIdentifier
+ CS.BF.BFMain.Instance.SDKMgr.BFThirdReportSDKMgr:PostThinkingAnalyticsEvent(name, json.encode(args))
+ else
+ CS.BF.BFMain.Instance.SDKMgr.BFThirdReportSDKMgr:PostThinkingAnalyticsEvent(name)
+ end
+end
+
+-- 上报引导每一步
+function BIReport:postTutorialStep(id)
+ local level = DataManager.PlayerData:getLv()
+ local args = {
+ client_tutorial_id = id,
+ level = level
+ }
+ self:report(EVENT_NAME_TUTORIAL, args)
+end
+
+-- Lua crash
+function BIReport:postLuaCrash(logString, stackTrace)
+ local msg = logString .. stackTrace
+ if #msg > 2000 then
+ msg = string.sub(msg, 1, 2000)
+ end
+ local args = {
+ client_lua_crash_msg = msg,
+ }
+ self:report(EVENT_NAME_LUA_CRASH, args)
+end
+
+-- 上报界面打开
+function BIReport:postOpenUI(uiName, childUI)
+ if uiName == nil or uiName == "" then
+ return
+ end
+ local args = {
+ client_ui_name = uiName,
+ client_ui_child_name = childUI,
+ }
+ self:report(EVENT_NAME_OPEN_UI, args)
+ BIReport:printArgsStr(EVENT_NAME_OPEN_UI, args)
+end
+
+-- 上报内购事件,单独处理,只上报到AF和FB,不上报数数
+function BIReport:postPurchase(price, content, originOrderId, orderId)
+ -- 只有外网正式渠道真机包才上报
+ if not Platform:getIsPublishChannel() or EDITOR_MODE then
+ return
+ end
+ -- 审核模式不上报
+ if CS.BF.BFMain.IsShenhe then
+ return
+ end
+ -- 上报AF,AF的所有事件值都是String类型
+ local args = {
+ af_revenue = tostring(price),
+ af_currency = "USD",
+ af_quantity = "1",
+ af_content_id = content,
+ af_order_id = originOrderId,
+ af_receipt_id = orderId
+ }
+ CS.BF.BFMain.Instance.SDKMgr.BFThirdReportSDKMgr:PostAppsflyerEvent("af_purchase", json.encode(args))
+
+ -- 上报FB的付费事件
+ local fbArgs = {
+ order_id = originOrderId,
+ product_id = content
+ }
+ CS.BF.BFMain.Instance.SDKMgr.BFLoginSDKMgr.FBSdk:LogPurchase(price, "USD", json.encode(fbArgs))
+
+ -- 上报付费到adjust
+ CS.BF.BFMain.Instance.SDKMgr.BFThirdReportSDKMgr:PostAdjustRevenueTrackEvent("qm803c", price, "USD")
+end
+
+-- 上报等级提升事件,单独处理,只上报到AF和FB,不上报数数
+function BIReport:postFirstLoginEvent()
+ -- 只有外网正式渠道真机包才上报
+ if not Platform:getIsPublishChannel() or EDITOR_MODE then
+ return
+ end
+ -- 审核模式不上报
+ if CS.BF.BFMain.IsShenhe then
+ return
+ end
+ CS.BF.BFMain.Instance.SDKMgr.BFThirdReportSDKMgr:PostAppsflyerEvent("af_first_login", json.encode({}))
+ CS.BF.BFMain.Instance.SDKMgr.BFLoginSDKMgr.FBSdk:LogAppEvent("fb_first_login", json.encode({}))
+end
+
+-- 上报等级提升事件,单独处理,只上报到AF和FB,不上报数数
+-- function BIReport:postLvEvent(lv)
+-- -- 只有外网正式渠道真机包才上报
+-- if not Platform:getIsPublishChannel() or EDITOR_MODE then
+-- return
+-- end
+-- -- 审核模式不上报
+-- if CS.BF.BFMain.IsShenhe then
+-- return
+-- end
+-- if not lv then
+-- return
+-- end
+-- local postLV = {
+-- [1] = true,
+-- [2] = true,
+-- [3] = true,
+-- [5] = true,
+-- [10] = true,
+-- [15] = true,
+-- [20] = true,
+-- [30] = true,
+-- [40] = true,
+-- [50] = true,
+-- [60] = true,
+-- [70] = true,
+-- [80] = true,
+-- [90] = true,
+-- [100] = true,
+-- }
+-- -- CS.BF.BFMain.Instance.SDKMgr.BFThirdReportSDKMgr:PostAppsflyerEvent("af_Grade", json.encode({}))
+-- -- CS.BF.BFMain.Instance.SDKMgr.BFLoginSDKMgr.FBSdk:LogAppEvent("fb_Grade", json.encode({}))
+-- -- if not postLV[lv] then
+-- -- return
+-- -- end
+-- -- local args = {}
+-- -- CS.BF.BFMain.Instance.SDKMgr.BFThirdReportSDKMgr:PostAppsflyerEvent("af_Grade_" .. lv, json.encode(args))
+-- -- CS.BF.BFMain.Instance.SDKMgr.BFLoginSDKMgr.FBSdk:LogAppEvent("fb_Grade_" .. lv, json.encode(args))
+-- end
+
+-- 上报广告播放提升事件,单独处理,只上报到AF和FB,不上报数数
+-- function BIReport:postAdEvent()
+-- -- 只有外网正式渠道真机包才上报
+-- if not Platform:getIsPublishChannel() or EDITOR_MODE then
+-- return
+-- end
+-- -- 审核模式不上报
+-- if CS.BF.BFMain.IsShenhe then
+-- return
+-- end
+-- local adCount = DataManager.PlayerData:getAdCount()
+-- if not adCount then
+-- return
+-- end
+-- -- CS.BF.BFMain.Instance.SDKMgr.BFThirdReportSDKMgr:PostAppsflyerEvent("af_AdRewardAD", json.encode({}))
+-- -- CS.BF.BFMain.Instance.SDKMgr.BFLoginSDKMgr.FBSdk:LogAppEvent("fb_AdRewardAD", json.encode({}))
+-- -- local postAdCount = {
+-- -- [1] = true,
+-- -- [2] = true,
+-- -- [3] = true,
+-- -- [5] = true,
+-- -- [10] = true,
+-- -- [15] = true,
+-- -- [20] = true,
+-- -- [30] = true,
+-- -- [40] = true,
+-- -- [50] = true,
+-- -- [60] = true,
+-- -- }
+-- -- if not postAdCount[adCount] then
+-- -- return
+-- -- end
+-- -- local args = {}
+-- -- CS.BF.BFMain.Instance.SDKMgr.BFThirdReportSDKMgr:PostAppsflyerEvent("af_AdRewardAD_" .. adCount, json.encode(args))
+-- -- CS.BF.BFMain.Instance.SDKMgr.BFLoginSDKMgr.FBSdk:LogAppEvent("fb_AdRewardAD_" .. adCount, json.encode(args))
+-- end
+
+-- 上报部分档位首次付费
+-- function BIReport:postFirstRechargeEvent(id)
+-- -- 只有外网正式渠道真机包才上报
+-- if not Platform:getIsPublishChannel() or EDITOR_MODE then
+-- return
+-- end
+-- -- 审核模式不上报
+-- if CS.BF.BFMain.IsShenhe then
+-- return
+-- end
+-- local postRechargeID = {
+-- [1] = false, -- 0.99
+-- [2] = false, -- 1.99
+-- [3] = false, -- 2.99
+-- [4] = true, -- 4.99
+-- [5] = true, -- 9.99
+-- [6] = false, -- 14.99
+-- [7] = true, -- 19.99
+-- [8] = false, -- 24.99
+-- [9] = true, -- 29.99
+-- [10] = true, -- 49.99
+-- [11] = false, -- 69.99
+-- [12] = false, -- 99.99
+-- }
+-- if not postRechargeID[id] then
+-- return
+-- end
+-- local cfg = ConfigManager:getConfig("recharge")[id]
+-- if not cfg then
+-- return
+-- end
+-- local args = {}
+-- -- CS.BF.BFMain.Instance.SDKMgr.BFThirdReportSDKMgr:PostAppsflyerEvent("af_package_" .. cfg.price, json.encode(args))
+-- end
+
+-- 上报进入章节事件,单独处理,只上报到AF和FB,不上报数数
+-- function BIReport:postChapterEvent(chapter)
+-- -- 只有外网正式渠道真机包才上报
+-- if not Platform:getIsPublishChannel() or EDITOR_MODE then
+-- return
+-- end
+-- -- 审核模式不上报
+-- if CS.BF.BFMain.IsShenhe then
+-- return
+-- end
+-- if not chapter then
+-- return
+-- end
+-- -- CS.BF.BFMain.Instance.SDKMgr.BFThirdReportSDKMgr:PostAppsflyerEvent("af_Chapter", json.encode({}))
+-- -- CS.BF.BFMain.Instance.SDKMgr.BFLoginSDKMgr.FBSdk:LogAppEvent("fb_Chapter", json.encode({}))
+-- -- local args = {}
+-- -- CS.BF.BFMain.Instance.SDKMgr.BFThirdReportSDKMgr:PostAppsflyerEvent("af_Chapter_" .. chapter, json.encode(args))
+-- -- CS.BF.BFMain.Instance.SDKMgr.BFLoginSDKMgr.FBSdk:LogAppEvent("fb_Chapter_" .. chapter, json.encode(args))
+-- end
+
+-- 以下为数数
+function BIReport:printArgsStr(eventName, args)
+ if EDITOR_MODE then
+ local tab = clone(args)
+ tab.eventName = eventName
+ Logger.log("============report %s===========", eventName)
+ Logger.printTable(tab or {})
+ end
+end
+
+-- 开启游戏
+-- function BIReport:postGameLogin(isFirstLogin)
+-- local args = {
+-- first_begin = isFirstLogin,
+-- }
+-- self:report(EVENT_NAME_LOGIN, args)
+-- BIReport:printArgsStr(EVENT_NAME_LOGIN, args)
+-- end
+
+-- 登录完成
+function BIReport:postGameLoginFinish()
+ -- FirstBegin 是否是首次登陆
+ -- DailyFirstBegin 是否当日首次登录
+ -- LogType 进入类型
+ -- PushID 推送id
+ -- MaxLevel 已解锁最大关卡
+ -- Duration 登录加载时长
+ -- MyEquip 拥有装备
+ -- MyCherish 拥有传家宝
+ -- MyRunes 拥有符文
+ -- MaxTrial 副本进度
+ -- IsNew 是否是新用户
+ local args = {
+ is_daily_first = DataManager:getIsTodayFirstLogin(),
+ is_first = DataManager:getIsFirstLogin(),
+ }
+ local equips = DataManager.BagData.EquipData:getAllEquips()
+ for k,v in pairs(equips) do
+ if not args.my_equip then
+ args.my_equip = v:getId() .. ":" .. v:getLv() .. ":" .. v:getCount()
+ else
+ args.my_equip = args.my_equip .. "|" .. v:getId() .. ":" .. v:getLv() .. ":" .. v:getCount()
+ end
+ end
+ args.my_equip = args.my_equip or ""
+
+ local legacies = DataManager.BagData.LegacyData:getAllLegacies()
+ for k,v in pairs(legacies) do
+ if not args.my_legacy then
+ args.my_legacy = v:getId() .. ":" .. v:getLv() .. ":" .. v:getCount()
+ else
+ args.my_legacy = args.my_legacy .. "|" .. v:getId() .. ":" .. v:getLv() .. ":" .. v:getCount()
+ end
+ end
+ args.my_legacy = args.my_legacy or ""
+
+ local runes = DataManager.BagData.RuneData:getAllRunes()
+ for k,v in pairs(runes) do
+ if not args.my_rune then
+ args.my_rune = v:getId() .. ":" .. v:getLv()
+ else
+ args.my_rune = args.my_rune .. "|" .. v:getId() .. ":" .. v:getLv()
+ end
+ end
+ args.my_rune = args.my_rune or ""
+
+ for i = 1, 4 do
+ local info = DataManager.DungeonData:getPassedMaxLevel(i)
+ if info then
+ if not args.my_dungeon then
+ args.my_dungeon = i .. ":" .. info
+ else
+ args.my_dungeon = args.my_dungeon .. "|" .. i .. ":" .. info
+ end
+ end
+ end
+
+ args.my_dungeon = args.my_dungeon or ""
+ local info = DataManager.ArenaData:getSegment() or 0
+ if not args.my_dungeon then
+ args.my_dungeon = "5:" .. info
+ else
+ args.my_dungeon = args.my_dungeon .. "|5:" .. info
+ end
+ self:report(EVENT_NAME_LOGIN_FINISH, args)
+ BIReport:printArgsStr(EVENT_NAME_LOGIN_FINISH, args)
+end
+
+-- 游戏退出
+function BIReport:postGameExit()
+ local nowTime = Time:getServerTime()
+ local args = {}
+ -- if DataManager then
+ -- args.duration = nowTime - DataManager:getLoginTime()
+ -- end
+ self:report(EVENT_NAME_EXIT, args)
+ BIReport:printArgsStr(EVENT_NAME_EXIT, args)
+end
+
+-- 进入战斗
+function BIReport:postFightBegin(battleType, currLevelId, maxLevelId)
+ -- Level_ID 进入关卡编号
+ -- LevelType 进入关卡类型
+ -- MaxLevel 已解锁最大关卡
+ -- StartTimes 累计进入次数
+ -- IsNew 是否是新用户
+
+ local args = {
+ -- level_id = currLevelId + 1,
+ -- max_level = maxLevelId + 1,
+ battle_type = BIReport.BATTLE_TYPE[battleType],
+ event_type = BIReport.FIGHT_TYPE.START,
+ }
+ self:report(EVENT_NAME_FIGHT, args)
+ BIReport:printArgsStr(EVENT_NAME_FIGHT, args)
+end
+
+function BIReport:postFightEnd(battleType, currLevelId, maxLevelId, passType)
+ -- Level_ID 进入关卡编号
+ -- LevelType 进入关卡类型
+ -- MaxLevel 已解锁最大关卡
+ -- StartTimes 累计进入次数
+ -- IsNew 是否是新用户
+
+ local args = {
+ level_id = currLevelId,
+ -- max_level = maxLevelId + 1,
+ pass_type = passType,
+ battle_type = BIReport.BATTLE_TYPE[battleType],
+ event_type = BIReport.FIGHT_TYPE.END,
+ }
+ self:report(EVENT_NAME_FIGHT, args)
+ BIReport:printArgsStr(EVENT_NAME_FIGHT, args)
+end
+
+function BIReport:postDungeonFightBegin(battleType, currLevelId, maxLevelId)
+ -- Level_ID 进入关卡编号
+ -- LevelType 进入关卡类型
+ -- MaxLevel 已解锁最大关卡
+ -- StartTimes 累计进入次数
+ -- IsNew 是否是新用户
+
+ local args = {
+ level_id = currLevelId,
+ max_dungeon_level = maxLevelId,
+ battle_type = BIReport.BATTLE_TYPE[battleType],
+ event_type = BIReport.FIGHT_TYPE.START,
+ }
+ self:report(EVENT_NAME_FIGHT, args)
+ BIReport:printArgsStr(EVENT_NAME_FIGHT, args)
+end
+
+function BIReport:postDungeonFightEnd(battleType, currLevelId, maxLevelId, passType)
+ -- Level_ID 进入关卡编号
+ -- LevelType 进入关卡类型
+ -- MaxLevel 已解锁最大关卡
+ -- StartTimes 累计进入次数
+ -- IsNew 是否是新用户
+
+ local args = {
+ level_id = currLevelId,
+ max_dungeon_level = maxLevelId,
+ pass_type = passType,
+ battle_type = BIReport.BATTLE_TYPE[battleType],
+ event_type = BIReport.FIGHT_TYPE.END,
+ }
+ self:report(EVENT_NAME_FIGHT, args)
+ BIReport:printArgsStr(EVENT_NAME_FIGHT, args)
+end
+
+-- 首页按钮点击
+function BIReport:postBtnCilck(clickType)
+ local args = {
+ event_type = clickType,
+ }
+ self:report(EVENT_NAME_CLICK_BTN, args)
+ BIReport:printArgsStr(EVENT_NAME_CLICK_BTN, args)
+end
+
+-- 道具获取
+function BIReport:postItemGet(bigNum, itemId, getType)
+ -- Item 道具id
+ -- Type 获得方式
+ -- MaxLevel 最大关卡
+ -- ItemNum 获取道具数量
+ -- ItemAll 获取后道具数量
+ -- IsNew 是否是新用户
+ local itemBigNum = DataManager.BagData.ItemData:getItemBigNumById(itemId)
+ local args = {
+ item_value = bigNum.value,
+ item_unit = bigNum.unit,
+ item_id = itemId,
+ item_all_value = itemBigNum.value,
+ item_all_unit = itemBigNum.unit,
+ type = getType,
+ }
+ self:report(EVENT_NAME_ITEM_GET, args)
+ BIReport:printArgsStr(EVENT_NAME_ITEM_GET, args)
+end
+
+-- 道具使用
+function BIReport:postItemUse(bigNum, itemId, getType)
+ -- Item 道具id
+ -- Type 消耗方式
+ -- MaxLevel 最大关卡
+ -- ItemNum 消耗道具数量
+ -- ItemAll 消耗后道具数量
+ -- IsNew 是否是新用户
+ local itemBigNum = DataManager.BagData.ItemData:getItemBigNumById(itemId)
+ local args = {
+ item_value = bigNum.value,
+ item_unit = bigNum.unit,
+ item_id = itemId,
+ item_all_value = itemBigNum.value,
+ item_all_unit = itemBigNum.unit,
+ type = getType,
+ }
+ self:report(EVENT_NAME_ITEM_USE, args)
+ BIReport:printArgsStr(EVENT_NAME_ITEM_USE, args)
+end
+
+-- 钻石增加
+function BIReport:postGemGet(bigNum, getType, itemId)
+ -- CoinNum 代币数量
+ -- Type 获得类型
+ -- CoinsType 代币类型
+ -- IsNew 是否是新用户
+ -- MaxLevel 最大关卡
+ local args = {
+ type = getType,
+ -- coin_value = bigNum.value,
+ -- coin_unit = bigNum.unit,
+ coin_type = BIReport.COIN_TYPE[itemId],
+ }
+ if itemId == GConst.ItemConst.ITEM_ID_GEM then
+ args.coin_value = BigNumOpt.bigNum2Num(bigNum)
+ args.coin_unit = 0
+ else
+ args.coin_value = bigNum.value
+ args.coin_unit = bigNum.unit
+ end
+ self:report(EVENT_NAME_COIN_GET, args)
+ BIReport:printArgsStr(EVENT_NAME_COIN_GET, args)
+end
+
+-- 钻石使用
+function BIReport:postGemUse(bigNum, getType, itemId)
+ -- CoinNum 代币数量
+ -- Type 使用类型
+ -- CoinsType 代币类型
+ -- IsNew 是否是新用户
+ -- MaxLevel 最大关卡
+ local itemBigNum = DataManager.BagData.ItemData:getItemBigNumById(itemId)
+ local args = {
+ type = getType,
+ -- coin_value = bigNum.value,
+ -- coin_unit = bigNum.unit,
+ coin_type = BIReport.COIN_TYPE[itemId],
+ -- coin_all_value = itemBigNum.value,
+ -- coin_all_unit = itemBigNum.unit,
+ }
+ if itemId == GConst.ItemConst.ITEM_ID_GEM then
+ args.coin_value = BigNumOpt.bigNum2Num(bigNum)
+ args.coin_unit = 0
+ args.coin_all_value = BigNumOpt.bigNum2Num(itemBigNum)
+ args.coin_all_unit = 0
+ else
+ args.coin_value = bigNum.value
+ args.coin_unit = bigNum.unit
+ args.coin_all_value = itemBigNum.value
+ args.coin_all_unit = itemBigNum.unit
+ end
+ self:report(EVENT_NAME_COIN_USE, args)
+ BIReport:printArgsStr(EVENT_NAME_COIN_USE, args)
+end
+
+-- 点击广告按钮
+function BIReport:postAdClick(adsType)
+ local args = {
+ ad_type = adsType,
+ event_type = BIReport.ADS_OPT_TYPE.CLICK,
+ }
+ self:report(EVENT_NAME_AD_OPT, args)
+ BIReport:printArgsStr(EVENT_NAME_AD_OPT, args)
+end
+
+-- 广告播放视频成功
+function BIReport:postAdPlaySuccess(adsType)
+ local args = {
+ ad_type = adsType,
+ event_type = BIReport.ADS_OPT_TYPE.SUC,
+ }
+ self:report(EVENT_NAME_AD_OPT, args)
+ BIReport:printArgsStr(EVENT_NAME_AD_OPT, args)
+end
+
+-- 广告奖励发放成功
+function BIReport:postAdRewardGet(adsType)
+ local args = {
+ ad_type = adsType,
+ event_type = BIReport.ADS_OPT_TYPE.RETURN,
+ }
+ self:report(EVENT_NAME_AD_OPT, args)
+ BIReport:printArgsStr(EVENT_NAME_AD_OPT, args)
+end
+
+-- 支付sdk初始化成功
+function BIReport:postPayInitSuccess()
+ local args = {
+ event_type = BIReport.PAY_OPT_TYPE.INIT_SUC,
+ }
+ self:report(EVENT_NAME_PAY_OPT, args)
+ BIReport:printArgsStr(EVENT_NAME_PAY_OPT, args)
+end
+
+-- 支付sdk初始化失败
+function BIReport:postPayInitFailed(failedDesc)
+ local args = {
+ failed_desc = failedDesc or GConst.EMPTY_STRING,
+ event_type = BIReport.PAY_OPT_TYPE.INIT_FAILED,
+ }
+ self:report(EVENT_NAME_PAY_OPT, args)
+ BIReport:printArgsStr(EVENT_NAME_PAY_OPT, args)
+end
+
+-- 点击商品购买按钮
+function BIReport:postPayClick(giftType, id, rechargeId)
+ local args = {
+ gift_type = giftType,
+ commodity_id = id,
+ -- commodity_state = payDouble,
+ recharge_id = rechargeId,
+ event_type = BIReport.PAY_OPT_TYPE.CLICK,
+ }
+ self:report(EVENT_NAME_PAY_OPT, args)
+ BIReport:printArgsStr(EVENT_NAME_PAY_OPT, args)
+end
+
+-- 跳转购买界面
+function BIReport:postPayTurn(giftType, id, rechargeId)
+ local args = {
+ gift_type = giftType,
+ commodity_id = id,
+ -- commodity_state = payDouble,
+ recharge_id = rechargeId,
+ event_type = BIReport.PAY_OPT_TYPE.BUY,
+ }
+ self:report(EVENT_NAME_PAY_OPT, args)
+ BIReport:printArgsStr(EVENT_NAME_PAY_OPT, args)
+end
+
+-- 取消购买
+function BIReport:postPayCancel(productId, orderId, rechargeId, giftType)
+ local args = {
+ pay_product_id = productId,
+ pay_order_id = orderId,
+ recharge_id = rechargeId,
+ gift_type = giftType,
+ event_type = BIReport.PAY_OPT_TYPE.CANCEL,
+ }
+ self:report(EVENT_NAME_PAY_OPT, args)
+ BIReport:printArgsStr(EVENT_NAME_PAY_OPT, args)
+end
+
+-- 购买失败
+function BIReport:postPayFailed(productId, orderId, rechargeId, failedType, giftType)
+ local args = {
+ pay_product_id = productId,
+ pay_order_id = orderId,
+ recharge_id = rechargeId,
+ pay_failed_type = failedType,
+ gift_type = giftType,
+ event_type = BIReport.PAY_OPT_TYPE.FAILED,
+ }
+ self:report(EVENT_NAME_PAY_OPT, args)
+ BIReport:printArgsStr(EVENT_NAME_PAY_OPT, args)
+end
+
+-- -- 获得购买物品
+function BIReport:postPayGet(giftType, id, rechargeId, orderId, originOrderId, buyNum, rewards)
+ -- local itemStr = GFunc.getRewardsStr(rewards)
+ local args = {
+ gift_type = giftType,
+ commodity_id = id,
+ -- commodity_state = payDouble,
+ -- commodity_item = itemStr,
+ buy_num = buyNum,
+ origin_order_id_new = tostring(originOrderId),
+ recharge_id = rechargeId,
+ event_type = BIReport.PAY_OPT_TYPE.REWARD,
+ }
+ self:report(EVENT_NAME_PAY_OPT, args)
+ BIReport:printArgsStr(EVENT_NAME_PAY_OPT, args)
+
+ if EDITOR_MODE then
+ if not giftType or not id or not rechargeId then
+ local params = {
+ content = "BI Report postPayGet has no basic params",
+ boxType = GConst.MESSAGE_BOX_TYPE.MB_OK,
+ okText = I18N:getGlobalText(I18N.GlobalConst.BTN_TEXT_OK),
+ }
+ GFunc.showMessageBox(params)
+ Logger.log("BI Report postPayGet has no basic params")
+ end
+ end
+end
+
+-- 装备穿戴
+function BIReport:postEquipWear(equipPart, equipLv, equipId)
+ -- MaxLevel 最大关卡
+ -- IsNew 是否是新用户
+ -- Equip_Lv 装备等级
+ -- Equip_ID 装备ID
+
+ local args = {
+ equip_part = equipPart,
+ equip_lv = equipLv,
+ equip_id = equipId,
+ event_type = BIReport.EQUIP_OPT_TYPE.EQUIP_WEAR,
+ }
+ self:report(EVENT_NAME_EQUIP_OPT, args)
+ BIReport:printArgsStr(EVENT_NAME_EQUIP_OPT, args)
+end
+
+-- 装备升级
+function BIReport:postEquipUp(equipPart, equipLv, equipId)
+ -- MaxLevel 最大关卡
+ -- IsNew 是否是新用户
+ -- Equip_Lv 升级后装备等级
+ -- Equip_ID 装备ID
+ -- Type 消耗类型
+
+ local args = {
+ equip_part = equipPart,
+ equip_lv = equipLv,
+ equip_id = equipId,
+ event_type = BIReport.EQUIP_OPT_TYPE.EQUIP_LV_UP,
+ }
+ self:report(EVENT_NAME_EQUIP_OPT, args)
+ BIReport:printArgsStr(EVENT_NAME_EQUIP_OPT, args)
+end
+
+function BIReport:postEquipGet(equipId, getType)
+ -- MaxLevel 最大关卡
+ -- IsNew 是否是新用户
+ -- Equip_Lv 获取的装备等级
+ -- Equip_ID 获取的装备ID
+ -- Type 获取类型
+ local args = {
+ equip_id = equipId,
+ type = getType,
+ event_type = BIReport.EQUIP_OPT_TYPE.EQUIP_GET,
+ }
+ self:report(EVENT_NAME_EQUIP_OPT, args)
+ BIReport:printArgsStr(EVENT_NAME_EQUIP_OPT, args)
+end
+
+function BIReport:postLegacyWear(equipPart, equipLv, equipId)
+ -- MaxLevel 最大关卡
+ -- IsNew 是否是新用户
+ -- Equip_Lv 装备等级
+ -- Equip_ID 装备ID
+
+ local args = {
+ equip_part = equipPart,
+ equip_lv = equipLv,
+ equip_id = equipId,
+ event_type = BIReport.EQUIP_OPT_TYPE.LEGACY_WEAR,
+ }
+ self:report(EVENT_NAME_EQUIP_OPT, args)
+ BIReport:printArgsStr(EVENT_NAME_EQUIP_OPT, args)
+end
+
+-- 装备升级
+function BIReport:postLegacyUp(equipPart, equipLv, equipId)
+ -- MaxLevel 最大关卡
+ -- IsNew 是否是新用户
+ -- Equip_Lv 升级后装备等级
+ -- Equip_ID 装备ID
+ -- Type 消耗类型
+
+ local args = {
+ equip_part = equipPart,
+ equip_lv = equipLv,
+ equip_id = equipId,
+ event_type = BIReport.EQUIP_OPT_TYPE.LEGACY_LV_UP,
+ }
+ self:report(EVENT_NAME_EQUIP_OPT, args)
+ BIReport:printArgsStr(EVENT_NAME_EQUIP_OPT, args)
+end
+
+function BIReport:postLegacyGet(equipId, getType)
+ -- MaxLevel 最大关卡
+ -- IsNew 是否是新用户
+ -- Equip_Lv 获取的装备等级
+ -- Equip_ID 获取的装备ID
+ -- Type 获取类型
+ local args = {
+ equip_id = equipId,
+ type = getType,
+ event_type = BIReport.EQUIP_OPT_TYPE.LEGACY_GET,
+ }
+ self:report(EVENT_NAME_EQUIP_OPT, args)
+ BIReport:printArgsStr(EVENT_NAME_EQUIP_OPT, args)
+end
+
+function BIReport:postLegacyRemove(equipPart, equipId)
+ -- MaxLevel 最大关卡
+ -- IsNew 是否是新用户
+ -- Equip_Lv 获取的装备等级
+ -- Equip_ID 获取的装备ID
+ -- Type 获取类型
+ local args = {
+ equip_part = equipPart,
+ equip_id = equipId,
+ event_type = BIReport.EQUIP_OPT_TYPE.LEGACY_REMOVE,
+ }
+ self:report(EVENT_NAME_EQUIP_OPT, args)
+ BIReport:printArgsStr(EVENT_NAME_EQUIP_OPT, args)
+end
+
+function BIReport:postDataException(itemId, count, getType)
+ -- local args = {
+ -- item_num = count,
+ -- item_id = itemId,
+ -- type = getType,
+ -- }
+ -- self:report(EVENT_NAME_DATA_EXCEPTION, args)
+ -- BIReport:printArgsStr(EVENT_NAME_DATA_EXCEPTION, args)
+end
+
+-- 战令打点
+function BIReport:postBattlePassOpen()
+ local args = {
+ event_type = BIReport.BATTLE_PASS_OPT_TYPE.OPEN,
+ }
+ self:report(EVENT_NAME_BATTLE_PASS_OPT, args)
+ BIReport:printArgsStr(EVENT_NAME_BATTLE_PASS_OPT, args)
+end
+
+function BIReport:postBattlePassTaskClaim(id, lv, progress)
+ local args = {
+ task_id = id,
+ task_level = lv,
+ task_progress = progress,
+ event_type = BIReport.BATTLE_PASS_OPT_TYPE.TASK_CLAIM,
+ }
+ self:report(EVENT_NAME_BATTLE_PASS_OPT, args)
+ BIReport:printArgsStr(EVENT_NAME_BATTLE_PASS_OPT, args)
+end
+
+function BIReport:postBattlePassRewardClaim(lv, highLv)
+ local args = {
+ task_level = lv,
+ task_high_lv = highLv,
+ event_type = BIReport.BATTLE_PASS_OPT_TYPE.REWARD_CLAIM,
+ }
+ self:report(EVENT_NAME_BATTLE_PASS_OPT, args)
+ BIReport:printArgsStr(EVENT_NAME_BATTLE_PASS_OPT, args)
+end
+
+function BIReport:postBattlePassExpGet(getExp, lv, exp)
+ local args = {
+ task_get_exp = getExp,
+ task_level = lv,
+ task_exp = exp,
+ event_type = BIReport.BATTLE_PASS_OPT_TYPE.EXP_GET,
+ }
+ self:report(EVENT_NAME_BATTLE_PASS_OPT, args)
+ BIReport:printArgsStr(EVENT_NAME_BATTLE_PASS_OPT, args)
+end
+
+-- 登录
+-- 点击登录
+function BIReport:postAccountLoginClick(loginType)
+ local args = {
+ login_type = loginType,
+ event_type = BIReport.ACCOUNT_OPT_TYPE.LOGIN_CLICK,
+ }
+ self:report(EVENT_NAME_ACCOUNT_OPT, args)
+ BIReport:printArgsStr(EVENT_NAME_ACCOUNT_OPT, args)
+end
+
+-- 登录成功
+function BIReport:postAccountLoginFinish(loginType)
+ local args = {
+ login_type = loginType,
+ event_type = BIReport.ACCOUNT_OPT_TYPE.LOGIN_FINISH,
+ }
+ self:report(EVENT_NAME_ACCOUNT_OPT, args)
+ BIReport:printArgsStr(EVENT_NAME_ACCOUNT_OPT, args)
+end
+
+-- 登录失败
+function BIReport:postAccountLoginFailed(loginType, reason)
+ local args = {
+ login_type = loginType,
+ login_reason = reason,
+ event_type = BIReport.ACCOUNT_OPT_TYPE.LOGIN_FAILED,
+ }
+ self:report(EVENT_NAME_ACCOUNT_OPT, args)
+ BIReport:printArgsStr(EVENT_NAME_ACCOUNT_OPT, args)
+end
+
+-- 点击绑定
+function BIReport:postAccountBindClick(loginType)
+ local args = {
+ login_type = loginType,
+ event_type = BIReport.ACCOUNT_OPT_TYPE.BIND_CLICK,
+ }
+ self:report(EVENT_NAME_ACCOUNT_OPT, args)
+ BIReport:printArgsStr(EVENT_NAME_ACCOUNT_OPT, args)
+end
+
+-- 绑定成功
+function BIReport:postAccountBindFinish(loginType)
+ local args = {
+ login_type = loginType,
+ event_type = BIReport.ACCOUNT_OPT_TYPE.BIND_FINISH,
+ }
+ self:report(EVENT_NAME_ACCOUNT_OPT, args)
+ BIReport:printArgsStr(EVENT_NAME_ACCOUNT_OPT, args)
+end
+
+-- -- 切换账号
+-- function BIReport:postAccountChange(loginType)
+-- local args = {
+-- loginType = loginType,
+-- }
+-- self:report(EVENT_NAME_ACCOUNT_CHANGE, args)
+-- BIReport:printArgsStr(EVENT_NAME_ACCOUNT_CHANGE, args)
+-- end
+
+-- -- 删除账号
+-- function BIReport:postAccountDelete(loginType)
+-- local args = {
+-- loginType = loginType,
+-- }
+-- self:report(EVENT_NAME_ACCOUNT_DELETE, args)
+-- BIReport:printArgsStr(EVENT_NAME_ACCOUNT_DELETE, args)
+-- end
+
+-- 上报ping服务器地址情况
+function BIReport:postPingServer(address, time, resultType)
+ local args = {
+ address = address,
+ time = time,
+ type = resultType
+ }
+ self:report(EVENT_NAME_PING_SERVER, args)
+ BIReport:printArgsStr(EVENT_NAME_PING_SERVER, args)
+end
+
+-- -- CDKey兑换结果
+-- function BIReport:postCDKeyResult(CDKeyStr, result, code)
+-- local args = {
+-- cdkey = CDKeyStr,
+-- success = result,
+-- code = code
+-- }
+-- self:report(CDKEY_EXCHANGE_RESULT, args)
+-- BIReport:printArgsStr(CDKEY_EXCHANGE_RESULT, args)
+-- end
+
+-- -- 网络异常
+-- function BIReport:postNetFail(errorType, msgName, time, failedTime)
+-- local args = {
+-- error_type = errorType,
+-- message_name = msgName,
+-- time = time,
+-- failed_time = failedTime
+-- }
+-- self:report(EVENT_NAME_NET_FAIL, args)
+-- BIReport:printArgsStr(EVENT_NAME_NET_FAIL, args)
+-- end
+
+-- -- 通信成功
+-- function BIReport:postNetSuccess(msgName, retryTimes, time, code)
+-- local args = {
+-- message_name = msgName,
+-- retry_times = retryTimes,
+-- time = time,
+-- code = code
+-- }
+-- self:report(EVENT_NAME_NET_SUCCESS, args)
+-- BIReport:printArgsStr(EVENT_NAME_NET_SUCCESS, args)
+-- end
+
+-- -- 重复订单
+-- function BIReport:postRepeatPayOrder(productId, originOrderId, orderId)
+-- local args = {
+-- product_id = productId,
+-- origin_order_id = tostring(originOrderId),
+-- order_id = orderId
+-- }
+-- self:report(EVENT_NAME_PAY_ORDER_REPEAT, args)
+-- BIReport:printArgsStr(EVENT_NAME_PAY_ORDER_REPEAT, args)
+-- end
+
+-- 召唤
+function BIReport:postSummonSuc(summonType, diamondType)
+ -- MaxLevel 最大关卡
+ -- IsNew 是否是新用户
+ -- Type 召唤类型 Equip=武器召唤、Defense=防具召唤、Cherish=传家宝召唤、Rune=符文召唤
+ -- DiamondType 消耗钻石类型 Free=免费召唤、Ad1=当日第1次广告召唤、Ad2=第2次、Ad3=当日第3次、Daimond11=召唤11次、Diamond35=召唤35次
+ local args = {
+ diamond_type = diamondType,
+ type = summonType,
+ }
+ self:report(EVENT_NAME_SUMMON, args)
+ BIReport:printArgsStr(EVENT_NAME_SUMMON, args)
+end
+
+-- 任务
+function BIReport:postTaskFinish(taskType, taskId)
+ -- MaxLevel 最大关卡
+ -- IsNew 是否是新用户
+ -- TaskType 任务类型
+ -- Task_ID 任务id
+ -- FinishTimes 任务完成数
+
+ local args = {
+ task_type = taskType,
+ task_id = taskId,
+ event_type = BIReport.TASK_OPT_TYPE.FINISH,
+ }
+ self:report(EVENT_NAME_TASK_OPT, args)
+ BIReport:printArgsStr(EVENT_NAME_TASK_OPT, args)
+end
+
+function BIReport:postTaskReward(taskType, taskId)
+ -- MaxLevel 最大关卡
+ -- IsNew 是否是新用户
+ -- TaskType 任务类型
+ -- Task_ID 任务id
+ -- FinishTimes 累计领取奖励数
+
+ local args = {
+ task_type = taskType,
+ task_id = taskId,
+ event_type = BIReport.TASK_OPT_TYPE.REWARD,
+ }
+ self:report(EVENT_NAME_TASK_OPT, args)
+ BIReport:printArgsStr(EVENT_NAME_TASK_OPT, args)
+end
+
+-- 邮箱
+function BIReport:postMailOpen(mailId)
+ -- IsNew 是否是新用户
+ -- MaxLevel 最大关卡
+ -- Email_ID 邮件编号
+
+ local args = {
+ mail_id = mailId,
+ event_type = BIReport.MAIL_OPT_TYPE.OPEN,
+ }
+ self:report(EVENT_NAME_MAIL_OPT, args)
+ BIReport:printArgsStr(EVENT_NAME_MAIL_OPT, args)
+end
+
+function BIReport:postMailClaim(mailId)
+ -- IsNew 是否是新用户
+ -- MaxLevel 最大关卡
+ -- Email_ID 邮件编号
+
+ local args = {
+ mail_id = mailId,
+ event_type = BIReport.MAIL_OPT_TYPE.CLAIM,
+ }
+ self:report(EVENT_NAME_MAIL_OPT, args)
+ BIReport:printArgsStr(EVENT_NAME_MAIL_OPT, args)
+end
+
+-- 修炼
+function BIReport:postTrainFinish(trainType, trainLv)
+ -- IsNew 是否是新用户
+ -- MaxLevel 最大关卡
+ -- TrainLv 训练属性等级
+ -- TrainType 训练类型
+
+ local args = {
+ type = tostring(trainType),
+ train_lv = trainLv,
+ event_type = BIReport.TRAIN_OPT_TYPE.TRAIN,
+ }
+ self:report(EVENT_NAME_TRAIN_OPT, args)
+ BIReport:printArgsStr(EVENT_NAME_TRAIN_OPT, args)
+end
+
+function BIReport:postTrainReborn()
+ local args = {
+ event_type = BIReport.TRAIN_OPT_TYPE.REBORN,
+ }
+ self:report(EVENT_NAME_TRAIN_OPT, args)
+ BIReport:printArgsStr(EVENT_NAME_TRAIN_OPT, args)
+end
+
+function BIReport:postTrainQuickPass()
+ local args = {
+ event_type = BIReport.TRAIN_OPT_TYPE.QUICK_PASS,
+ }
+ self:report(EVENT_NAME_TRAIN_OPT, args)
+ BIReport:printArgsStr(EVENT_NAME_TRAIN_OPT, args)
+end
+
+function BIReport:postTrainQuickPassUp(level)
+ local args = {
+ train_lv = level,
+ event_type = BIReport.TRAIN_OPT_TYPE.QUICK_PASS,
+ }
+ self:report(EVENT_NAME_TRAIN_OPT, args)
+ BIReport:printArgsStr(EVENT_NAME_TRAIN_OPT, args)
+end
+
+-- function BIReport:postChapterPass(oldId, chapterId, passType)
+-- local args = {
+-- old_id = oldId,
+-- chapter_id = chapterId,
+-- pass_type = passType,
+-- event_type = BIReport.CHAPTER_OPT_TYPE.PASS,
+-- }
+
+-- self:report(EVENT_NAME_CHAPTER_OPT, args)
+-- BIReport:printArgsStr(EVENT_NAME_CHAPTER_OPT, args)
+-- end
+
+-- 符文
+function BIReport:postRuneGet(runeId)
+ local args = {
+ equip_id = runeId,
+ event_type = BIReport.RUNE_OPT_TYPE.GET,
+ }
+
+ self:report(EVENT_NAME_RUNE_OPT, args)
+ BIReport:printArgsStr(EVENT_NAME_RUNE_OPT, args)
+end
+
+function BIReport:postRuneUp(runeId, runeLv)
+ local args = {
+ equip_id = runeId,
+ equip_lv = runeLv,
+ event_type = BIReport.RUNE_OPT_TYPE.LV_UP,
+ }
+
+ self:report(EVENT_NAME_RUNE_OPT, args)
+ BIReport:printArgsStr(EVENT_NAME_RUNE_OPT, args)
+end
+
+function BIReport:postRuneWear(runeId, runeLv)
+ local args = {
+ equip_id = runeId,
+ equip_lv = runeLv,
+ event_type = BIReport.RUNE_OPT_TYPE.WEAR,
+ }
+
+ self:report(EVENT_NAME_RUNE_OPT, args)
+ BIReport:printArgsStr(EVENT_NAME_RUNE_OPT, args)
+end
+
+return BIReport
\ No newline at end of file
diff --git a/lua/app/common/bi_report.lua.meta b/lua/app/common/bi_report.lua.meta
new file mode 100644
index 00000000..8b120143
--- /dev/null
+++ b/lua/app/common/bi_report.lua.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 18b39d75878166f43a80036dd82df93c
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/common/camera_manager.lua b/lua/app/common/camera_manager.lua
new file mode 100644
index 00000000..92423a16
--- /dev/null
+++ b/lua/app/common/camera_manager.lua
@@ -0,0 +1,59 @@
+local CameraManager = {}
+
+local ADJUST_SCREEN_W = 720
+local ADJUST_SCREEN_H = 1560
+
+function CameraManager:init()
+ self.mainCamera = CS.UnityEngine.Camera.main
+ CS.UnityEngine.GameObject.DontDestroyOnLoad(self.mainCamera.gameObject)
+
+ self.originPosition = self.mainCamera.transform.position
+ self.originOrthographicSize = self.mainCamera.orthographicSize
+
+ -- self.originFieldOfView = self.mainCamera.gameObject:GetComponent(GConst.TYPEOF_UNITY_CLASS.BF_CAMERA_HELPER).OriginFieldOfView
+ -- self:adjustCameraForFight()
+ -- 战斗相机参数调整
+ self.mainCamera.transparencySortMode = CS.UnityEngine.TransparencySortMode.CustomAxis
+ self.mainCamera.transparencySortAxis = BF.Vector3(0, 0, 1)
+end
+
+function CameraManager:getMainCamera()
+ return self.mainCamera
+end
+
+function CameraManager:resetMainCamera()
+ self.mainCamera.transform.position = self.originPosition
+ self.mainCamera.orthographicSize = self.originOrthographicSize
+end
+
+function CameraManager:getMainCameraOriginPosition()
+ return self.originPosition
+end
+
+function CameraManager:getOriginOrthographicSize()
+ return self.originOrthographicSize
+end
+
+-- 适配战斗相机
+function CameraManager:adjustCameraForFight()
+ local manualHeight
+ -- 然后得到当前屏幕的高宽比 和 你自定义需求的高宽比。通过判断他们的大小,来不同赋值
+ if CS.UnityEngine.Screen.height / CS.UnityEngine.Screen.width ~= ADJUST_SCREEN_H / ADJUST_SCREEN_W then
+ -- 如果屏幕的高宽比大于自定义的高宽比 。则通过公式 ADJUST_SCREEN_W * manualHeight = Screen.width * Screen.height;
+ -- 来求得适应的manualHeight ,用它求出 实际高度与理想高度的比率 scale
+ manualHeight = ADJUST_SCREEN_W / CS.UnityEngine.Screen.width * CS.UnityEngine.Screen.height
+ else
+ -- 否则 直接给manualHeight 自定义的 ADJUST_SCREEN_H 的值,那么相机的fieldOfView就会原封不动
+ manualHeight = ADJUST_SCREEN_H
+ end
+ -- Camera.fieldOfView 视野: 这是垂直视野:水平FOV取决于视口的宽高比,当相机是正交时fieldofView被忽略
+ -- 把实际高度与理想高度的比率scale乘加给Camera.fieldOfView。
+ -- 这样就能达到自动调节分辨率的效果
+ local scale = manualHeight / ADJUST_SCREEN_H
+ if scale < 0.7 then
+ scale = 0.7
+ end
+ self.mainCamera.fieldOfView = self.originFieldOfView*scale
+end
+
+return CameraManager
\ No newline at end of file
diff --git a/lua/app/common/camera_manager.lua.meta b/lua/app/common/camera_manager.lua.meta
new file mode 100644
index 00000000..208de242
--- /dev/null
+++ b/lua/app/common/camera_manager.lua.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: ce97e1b52619a91449c6bc7a9c7ddb00
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/common/cell_manager.lua b/lua/app/common/cell_manager.lua
new file mode 100644
index 00000000..a66e6258
--- /dev/null
+++ b/lua/app/common/cell_manager.lua
@@ -0,0 +1,20 @@
+local PrefabObject = require "app/bf/unity/uiprefab_object"
+
+local CellManager = {}
+
+function CellManager:loadCellAsync(path, cellComp, parent, callback)
+ UIPrefabManager:loadUIWidgetAsync(path, parent, function(prefab)
+ local cell = self:addCellComp(prefab, cellComp)
+ if callback then
+ callback(cell)
+ end
+ end)
+end
+
+function CellManager:addCellComp(prefab, type)
+ prefab:initPrefabHelper()
+ prefab:genAllChildren()
+ return prefab:addLuaComponent(type)
+end
+
+return CellManager
diff --git a/lua/app/common/cell_manager.lua.meta b/lua/app/common/cell_manager.lua.meta
new file mode 100644
index 00000000..7b5f8d5a
--- /dev/null
+++ b/lua/app/common/cell_manager.lua.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 5166b8127fdf5cc46b58c1436b7a0832
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/common/config_manager.lua b/lua/app/common/config_manager.lua
new file mode 100644
index 00000000..e3acc92d
--- /dev/null
+++ b/lua/app/common/config_manager.lua
@@ -0,0 +1,119 @@
+local ConfigManager = {
+ configs = {}
+}
+
+local CONFIG_PATH = "app/config/"
+
+function ConfigManager:_getConfig(configName)
+ local config = require(CONFIG_PATH .. configName)
+ self.configs[configName] = config
+ return config
+end
+
+function ConfigManager:getConfig(configName)
+ local config = self.configs[configName]
+ if config == nil then
+ config = self:_getConfig(configName)
+ end
+ return config.data
+end
+
+if NOT_PUBLISH then
+ ConfigManager.__getConfig = ConfigManager.getConfig
+ function ConfigManager:getConfig(configName)
+ if string.lower(configName) ~= configName then
+ Logger.logFatal("ConfigManager:getConfig 传入的表名不能有大写 " .. configName)
+ end
+ return self:__getConfig(configName)
+ end
+end
+
+function ConfigManager:reloadConfig(configName)
+ self:clearConfigCache(configName)
+ self.configs[configName] = nil
+ self:getConfig(configName)
+end
+
+function ConfigManager:getConfigNum(configName)
+ local config = self.configs[configName]
+ if config == nil then
+ config = self:_getConfig(configName)
+ end
+ return config.count
+end
+
+function ConfigManager:getConfigWithOtherKey(configName, keyName)
+ local config = self.configs[configName]
+ if config == nil then
+ config = self:_getConfig(configName)
+ end
+ if config.keys == nil then
+ return nil
+ end
+ return config.keys[keyName]
+end
+
+function ConfigManager:reloadAllConfig()
+ for configName, v in pairs(self.configs) do
+ self:reloadConfig(configName)
+ end
+ self:preLoadConfig()
+end
+
+function ConfigManager:preLoadConfig()
+ local monsterBase = self:_getConfig("monster_base")
+ self:clearConfigCache("monster_base")
+ local baseData = monsterBase.data
+ local monsterFullData = {}
+ local count = 0
+ local function handleMonsterGrow(name)
+ local monsterGrowConfig = self:_getConfig(name)
+ local growData = monsterGrowConfig.data
+ for k, v in pairs(growData) do
+ monsterFullData[k] = v
+ local data = baseData[v.monster_baseid]
+ if data then
+ monsterFullData[k].collision_radius = data.collision_radius
+ monsterFullData[k].model_id = data.model_id
+ monsterFullData[k].model_fight = data.model_fight
+ monsterFullData[k].fx_fight = data.fx_fight
+ monsterFullData[k].size = data.size
+ -- else
+ -- Logger.logHighlight("not data monster_baseid = " .. v.monster_baseid)
+ end
+ count = count + 1
+ end
+ self:clearConfigCache(name)
+ end
+ handleMonsterGrow("monster_stage")
+
+ self.configs["monster"] = {
+ data = monsterFullData,
+ count = count
+ }
+
+ if EDITOR_MODE then
+ local realCount = 0
+ for k, v in pairs(monsterFullData) do
+ realCount = realCount + 1
+ end
+ if count ~= realCount then
+ Logger.logFatal("same id in monster config")
+ end
+ end
+end
+
+function ConfigManager:getChapterConfig(id)
+ if not id then
+ return
+ end
+ local idx = math.ceil(id/5000)
+ local cfg = ConfigManager:getConfig("chapter" .. idx)
+ return cfg[id], cfg
+end
+
+function ConfigManager:clearConfigCache(configName)
+ package.loaded[CONFIG_PATH .. configName] = nil
+end
+
+return ConfigManager
\ No newline at end of file
diff --git a/lua/app/common/config_manager.lua.meta b/lua/app/common/config_manager.lua.meta
new file mode 100644
index 00000000..d11396fb
--- /dev/null
+++ b/lua/app/common/config_manager.lua.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 0086c4bdcaf18cc4ab0fa4c03ff47cf0
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/common/data_manager.lua b/lua/app/common/data_manager.lua
new file mode 100644
index 00000000..4458c698
--- /dev/null
+++ b/lua/app/common/data_manager.lua
@@ -0,0 +1,379 @@
+---@class DataManager
+local DataManager = {
+ initByServer = false
+}
+
+function DataManager:init()
+ self.cdCallBack = {}
+ self._cacheManager = {}
+ self:initManager("GameSettingData", "app/userdata/game_setting/game_setting_data")
+ self:initManager("BattleData", "app/userdata/battle/battle_data")
+ self:initManager("PlayerData", "app/userdata/player/player_data")
+ self:initManager("BagData", "app/userdata/bag/bag_data")
+ self:initManager("SummonData", "app/userdata/summon/summon_data")
+ self:initManager("MallActData", "app/userdata/shop/mall_act_data")
+ self:initManager("MallDailyData", "app/userdata/shop/mall_daily_data")
+ self:initManager("MallRechargeData", "app/userdata/shop/mall_recharge_data")
+ self:initManager("HeroData", "app/userdata/hero/hero_data")
+ self:initManager("ShopData","app/userdata/shop/shop_data")
+ self:initManager("MasteryData", "app/userdata/mastery/mastery_data")
+ self:initManager("FightInfoData","app/userdata/fight_info/fight_info_data")
+ self:initManager("MiningData","app/userdata/mining/mining_data")
+ self:initManager("ChapterData", "app/userdata/chapter/chapter_data")
+ self:initManager("ResearchData", "app/userdata/research/research_data")
+ self:initManager("DungeonData", "app/userdata/dungeon/dungeon_data")
+ self:initManager("ArenaData", "app/userdata/arena/arena_data")
+ self:initManager("IdleData", "app/userdata/idle/idle_data")
+ self:initManager("DailyTaskData", "app/userdata/activity/daily_task/daily_task_data")
+ self:initManager("SevenDayData", "app/userdata/activity/seven_day/seven_day_data")
+ self:initManager("TutorialTaskData", "app/userdata/tutorial/tutorial_task_data")
+ self:initManager("TutorialData", "app/userdata/tutorial/tutorial_data")
+ self:initManager("BlessingData", "app/userdata/blessing/blessing_data")
+ self:initManager("AccelerationData", "app/userdata/acceleration/acceleration_data")
+ self:initManager("BountyData", "app/userdata/bounty/bounty_data")
+ self:initManager("CollectionData", "app/userdata/collection/collection_data")
+ self:initManager("MailData", "app/userdata/mail/mail_data")
+ self:initManager("FundChapterData", "app/userdata/fund/fund_chapter_data")
+ if EDITOR_MODE then
+ self:initDataForLazy()
+ end
+end
+
+function DataManager:initManager(name, path)
+ if self[name] then
+ self._cacheManager[name] = self[name]
+ end
+ self[name] = require(path):create()
+end
+
+function DataManager:checkDataBind()
+ local changeBindFunc = function(baseData, curBaseData)
+ local data = baseData.data
+ if data then
+ local bindList = baseData.bindList
+ if bindList then
+ for fieldName, list in pairs(bindList) do
+ for _, v in ipairs(list) do
+ if v.binder.unBind then
+ v.binder:unBind(baseData, fieldName)
+ end
+
+ if v.binder.bind then
+ if baseData.data[fieldName] ~= curBaseData.data[fieldName] then
+ v.binder:bind(curBaseData, fieldName, v.bindFunc, true)
+ else
+ v.binder:bind(curBaseData, fieldName, v.bindFunc)
+ end
+ end
+ end
+ end
+ end
+ baseData:clearBindAll()
+ end
+ end
+
+ if self._cacheManager then -- 如果已经存在就检查一下绑定
+ for name, baseData in pairs(self._cacheManager) do
+ if name == "BagData" then
+ changeBindFunc(baseData.ItemData, self[name].ItemData)
+ changeBindFunc(baseData.EquipData, self[name].EquipData)
+ changeBindFunc(baseData.LegacyData, self[name].LegacyData)
+ changeBindFunc(baseData.RuneData, self[name].RuneData)
+ else
+ changeBindFunc(baseData, self[name])
+ end
+ end
+ end
+end
+
+function DataManager:clear()
+ self.initWithServer = false
+ if self.cacheTimer then
+ SchedulerManager:unscheduleGlobal(self.cacheTimer)
+ self.cacheTimer = nil
+ end
+ self.cdCallBack = {}
+
+ self.BattleData:clear()
+ self.MasteryData:clear()
+ self.DailyTaskData:clear()
+ self.SevenDayData:clear()
+ self.TutorialTaskData:clear()
+ self.TutorialData:clear()
+ self.AccelerationData:clear()
+ self.BountyData:clear()
+ self.MailData:clear()
+ self.PlayerData:clear()
+
+ ModuleManager.TaskManager:clear()
+end
+
+function DataManager:initWithServerData(data)
+ self:init()
+ Logger.logHighlight("------------------initWithServerData-----------------------")
+ Logger.printTable(data)
+ Time:setServerTimeZone(0)
+ Time:updateServerTime(data.now_ts)
+ Time:updateServerTimeToday(data.today_ts)
+
+ self.initWithServer = true
+ self.signInfo = data.sign
+ self.todayFirstLogin = data.today_first_login
+ self.serverAttr = data.attrs
+ self.registerTs = (data.stat.register_ts or 0) // 1000
+ data.heros = {
+ {cfg_id = 60001, lv = 4, curHid = 60001}
+ }
+
+ self.PlayerData:init(data.basic_info)
+ self.BagData:init(data.bag)
+ self.ResearchData:init(data.mine)
+ self.FightInfoData:init(data.fight_info)
+ self.ShopData:init(data.mall)
+ self.SummonData:init(data.summon)
+ self.MasteryData:initData(data.mastery)
+ self.MiningData:init(data.mine)
+ self.ChapterData:init(data.chapter)
+ self.BattleData:init()
+ self.DungeonData:init(data.dungeon_info)
+ self.ArenaData:init(data.arena_info)
+ self.DailyTaskData:init(data.task_daily, true)
+ self.IdleData:init(data.idle)
+ self.SevenDayData:init(data.seven_day, true)
+ self.TutorialTaskData:init(data.task_tutor, true)
+ self.BlessingData:init(data.blessing)
+ self.CollectionData:init(data.collection)
+ -- 属性计算 依赖部分数据初始化
+ self.HeroData:init(data.heros)
+ self.TutorialData:init(data.guide)
+ self.AccelerationData:init(data.acceleration)
+ self.BountyData:init(data.battle_pass, true)
+ self.FundChapterData:init(data.fund)
+ -- self.MailData:init(data.mail_info)
+ -- self._cacheManager["HeroData"]:init(data.items)
+
+ --self.loginCount = data.loginCount or 1
+ --self.createPlayerTime = GFunc.formatTimeStep(data.infoData.registerTime or Time:getServerTime())
+ ----********** init start *******************
+ --self.crossDayTS = Time:getOverOfServerToday()
+ self:scheduleGlobal()
+
+ self:checkDataBind()
+ -- 检查属性是否和服务器一致
+ GFunc.checkAttrWhitServerAttr()
+end
+
+function DataManager:onServerTimeBack(serverTime, loginCount, loginTime)
+ self.loginCount = loginCount or 1
+ self.loginTime = loginTime or Time:getServerTime()
+ self:scheduleGlobal()
+end
+
+-- 是否首次登录
+function DataManager:getIsFirstLogin()
+ local nowTime = Time:getServerTime()
+ if self.registerTs%86400 == nowTime %8640 and self:getIsTodayFirstLogin() then
+ return true
+ end
+ return false
+end
+
+function DataManager:getIsTodayFirstLogin()
+ return self.todayFirstLogin or false
+end
+
+function DataManager:getIsInitWithServer()
+ return self.initWithServer
+end
+
+function DataManager:getLoginTime()
+ return self.loginTime or 0
+end
+
+function DataManager:registerDataCd(dataName)
+ if not dataName then
+ return
+ end
+ for k, v in ipairs(self.cdCallBack) do
+ if v == dataName then
+ return
+ end
+ end
+ table.insert(self.cdCallBack, dataName)
+end
+
+function DataManager:unregisterDataCd(dataName)
+ if not dataName then
+ return
+ end
+ for k, v in ipairs(self.cdCallBack) do
+ if v == dataName then
+ table.remove(self.cdCallBack, k)
+ break
+ end
+ end
+end
+
+function DataManager:registerCrossDayFunc(bindId, func)
+ if not bindId or not func then
+ return
+ end
+
+ if not self.crossDayCallbacks then
+ self.crossDayCallbacks = {}
+ end
+ for i, info in ipairs(self.crossDayCallbacks) do
+ if info.bindId == bindId then
+ self.crossDayCallbacks[i].func = func
+ self.crossDayCallbacks[i].open = true
+ return
+ end
+ end
+
+ table.insert(self.crossDayCallbacks,{
+ bindId = bindId,
+ func = func,
+ open = true
+ })
+end
+
+function DataManager:unregisterCrossDayFunc(bindId)
+ if not bindId then
+ return
+ end
+
+ if not self.crossDayCallbacks then
+ return
+ end
+ for i, info in ipairs(self.crossDayCallbacks) do
+ if info.bindId == bindId then
+ self.crossDayCallbacks[i].open = false
+ return
+ end
+ end
+end
+
+function DataManager:scheduleGlobal()
+ if self.cacheTimer then
+ return
+ end
+
+ self.crossDayTS = Time:getOverOfServerToday()
+ self.cacheTimer = SchedulerManager:scheduleGlobal(function (inter)
+ for k, v in ipairs(self.cdCallBack) do
+ if self[v] and self[v].updateCd then
+ self[v]:updateCd()
+ end
+ end
+
+ if Time:getServerTime() > self.crossDayTS then
+ self.crossDayTS = Time:getOverOfServerToday()
+ if self.crossDayCallbacks then
+ for i, info in ipairs(self.crossDayCallbacks) do
+ if info.func and info.open then
+ info.func()
+ end
+ end
+ end
+
+ ModuleManager.TaskManager:addTaskProgress(GConst.TaskConst.TASK_TYPE.X_LOGIN_DAY)
+ end
+ end, 1)
+end
+
+-- 获取登录天数
+function DataManager:getLoginCount()
+ return self.loginCount or 1
+end
+
+function DataManager:getSignInfo()
+ local nowTime = Time:getServerTime()
+ local lastSignTime = self.signInfo.latest_at // 1000
+ local todayBeginTime = nowTime - nowTime % 86400
+ local canSign = lastSignTime < todayBeginTime
+ if not ModuleManager:getIsOpen(ModuleManager.MODULE_KEY.SIGNIN) then
+ canSign = false
+ end
+ return self.signInfo.count or 0, canSign, self.hasSigned
+end
+
+function DataManager:setSignCount(count)
+ self.hasSigned = true
+ self.signInfo.count = count
+ self.signInfo.latest_at = Time:getServerTime() * 1000
+ --Logger.logHighlight("签到成功次数:"..count)
+end
+
+function DataManager:resetSignInInfo()
+ self.hasSigned = false
+end
+
+function DataManager:setLoginSuccess(success)
+ self.loginSuccess = success
+end
+
+function DataManager:getLoginSuccess()
+ return self.loginSuccess
+end
+
+-- 获取建号时间
+function DataManager:getCreatePlayerTime()
+ return self.createPlayerTime or Time:getServerTime()
+end
+
+-- 记录sync了多少次数据,如果以后游戏中要回到登录界面,则此值应当被清除
+function DataManager:markSyncDataCount()
+ if not self.syncDataCount then
+ self.syncDataCount = 1
+ else
+ self.syncDataCount = self.syncDataCount + 1
+ end
+end
+
+function DataManager:getSyncDataCount()
+ return self.syncDataCount or 0
+end
+
+function DataManager:needDealGm()
+ return self:getSyncDataCount() >= 2
+end
+
+---方便检索,仅编辑器模式使用
+function DataManager:initDataForLazy()
+ ---@type BagData
+ self.BagData = self:getManager("BagData")
+ ---@type PlayerData
+ self.PlayerData = self:getManager("PlayerData")
+ ---@type SummonData
+ self.SummonData = self:getManager("SummonData")
+ ---@type MallActData
+ self.MallActData = self:getManager("MallActData")
+ ---@type MallDailyData
+ self.MallDailyData = self:getManager("MallDailyData")
+ ---@type MallRechargeData
+ self.MallRechargeData = self:getManager("MallRechargeData")
+ ---@type ShopData
+ self.ShopData = self:getManager("ShopData")
+ ---@type MiningData
+ self.MiningData = self:getManager("MiningData")
+ ---@type ResearchData
+ self.ResearchData = self:getManager("ResearchData")
+ ---@type DungeonData
+ self.DungeonData = self:getManager("DungeonData")
+ ---@type ChapterData
+ self.ChapterData = self:getManager("ChapterData")
+ ---@type ArenaData
+ self.ArenaData = self:getManager("ArenaData")
+ ---@type FundChapterData
+ self.FundChapterData = self:getManager("FundChapterData")
+end
+
+function DataManager:getManager(name, path)
+ if self[name] then
+ return self[name]
+ end
+ self[name] = require(path):create()
+ return self[name]
+end
+
+return DataManager
\ No newline at end of file
diff --git a/lua/app/common/data_manager.lua.meta b/lua/app/common/data_manager.lua.meta
new file mode 100644
index 00000000..9e9f2db8
--- /dev/null
+++ b/lua/app/common/data_manager.lua.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 2f79b49cc05702742bc7fe6f56fd83d4
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/common/device_helper.lua b/lua/app/common/device_helper.lua
new file mode 100644
index 00000000..085f2765
--- /dev/null
+++ b/lua/app/common/device_helper.lua
@@ -0,0 +1,52 @@
+local DeviceHelper = {}
+
+local ThinkingAnalyticsAPI = CS.ThinkingAnalytics.ThinkingAnalyticsAPI
+local PresetProperties = CS.ThinkingAnalytics.ThinkingAnalyticsAPI.GetPresetProperties()
+
+-- 提供给其他模块的接口 ***************************************************************
+
+-- 获取device_model
+function DeviceHelper:getDeviceModel()
+ local name = CS.UnityEngine.SystemInfo.deviceModel
+ if not name or name == "" then
+ name = PresetProperties and PresetProperties.DeviceModel or ""
+ end
+ return name
+end
+
+-- 获取device_id
+function DeviceHelper:getDeviceId()
+ -- local id = ""
+ -- if ThinkingAnalyticsAPI then
+ -- id = ThinkingAnalyticsAPI:GetDeviceId() or ""
+ -- end
+ -- if not id or id == "" then
+ -- id = CS.UnityEngine.SystemInfo.deviceUniqueIdentifier or ""
+ -- end
+ -- return id
+ return CS.UnityEngine.SystemInfo.deviceUniqueIdentifier
+end
+
+-- 获取os_version
+function DeviceHelper:getOSVersion()
+ local version = CS.UnityEngine.SystemInfo.operatingSystem
+ if not version or version == "" then
+ version = PresetProperties and PresetProperties.OSVersion or ""
+ end
+ return version
+end
+
+-- 获取网络状态
+function DeviceHelper:getNetworkType()
+ local networkType = "WIFI"
+ if CS.UnityEngine.Application.internetReachability == CS.UnityEngine.NetworkReachability.NotReachable then
+ networkType = "NONE"
+ elseif CS.UnityEngine.Application.internetReachability == CS.UnityEngine.NetworkReachability.ReachableViaCarrierDataNetwork then
+ networkType = "DATA"
+ elseif CS.UnityEngine.Application.internetReachability == CS.UnityEngine.NetworkReachability.ReachableViaLocalAreaNetwork then
+ networkType = "WIFI"
+ end
+ return networkType
+end
+
+return DeviceHelper
diff --git a/lua/app/common/device_helper.lua.meta b/lua/app/common/device_helper.lua.meta
new file mode 100644
index 00000000..f9a031cf
--- /dev/null
+++ b/lua/app/common/device_helper.lua.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 4680cd9b6d735ce40a4167d4349a35c7
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/common/dotween_manager.lua b/lua/app/common/dotween_manager.lua
new file mode 100644
index 00000000..b59a3bd6
--- /dev/null
+++ b/lua/app/common/dotween_manager.lua
@@ -0,0 +1,54 @@
+local DOTweenManager = {}
+
+local DOTweenSequence = CS.DG.Tweening.DOTween.Sequence
+
+function DOTweenManager:init()
+ -- 三个参数分别是recycleAllByDefault, useSafeMode, logBehaviour
+ if IS_PUBLISH then
+ CS.DG.Tweening.DOTween.Init(false, false, CS.DG.Tweening.LogBehaviour.ErrorsOnly)
+ else
+ CS.DG.Tweening.DOTween.Init(false, false, CS.DG.Tweening.LogBehaviour.Default)
+ end
+end
+
+function DOTweenManager:createSeqWithIntId(id)
+ id = id or GConst.DOTWEEN_IDS.DEFAULT
+ local seq = DOTweenSequence()
+ seq:SetIntId(id)
+ return seq
+end
+
+function DOTweenManager:createDOTweenToWithIntId(id, getter, setter, to, duration)
+ id = id or GConst.DOTWEEN_IDS.DEFAULT
+ local tween = CS.DG.Tweening.DOTween.To(getter, setter, to, duration)
+ tween:SetIntId(id)
+ return tween
+end
+
+function DOTweenManager:createDOTweenTo(getter, setter, to, duration)
+ local tween = CS.DG.Tweening.DOTween.To(getter, setter, to, duration)
+ return tween
+end
+
+-- 返回一个跟gameObject绑定的Sequence,当gameObject销毁的时候这个Sequence会跟着一起销毁
+-- 但是偶尔会有gameObject销毁的时候这个Sequence没有跟着一起销毁,尚未查明原因,所以谨慎使用
+function DOTweenManager:createSeqWithGameObject(gameObject)
+ local seq = DOTweenSequence()
+ seq:SetLink(gameObject)
+ return seq
+end
+
+---@param trans UnityEngine.Transform
+function DOTweenManager:doScale(trans,endValue, duration,onComplete)
+ ---@type DG.Tweening.Tweener
+ local tween = trans:DOScale(endValue, duration)
+ tween.onComplete = function()
+ if onComplete then
+ onComplete()
+ end
+ end
+end
+
+
+
+return DOTweenManager
\ No newline at end of file
diff --git a/lua/app/common/dotween_manager.lua.meta b/lua/app/common/dotween_manager.lua.meta
new file mode 100644
index 00000000..63470870
--- /dev/null
+++ b/lua/app/common/dotween_manager.lua.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 96fe20bcfb5550147baf975320c6fbb9
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/common/effect_manager.lua b/lua/app/common/effect_manager.lua
new file mode 100644
index 00000000..83de096e
--- /dev/null
+++ b/lua/app/common/effect_manager.lua
@@ -0,0 +1,139 @@
+local EffectObject = require "app/bf/unity/effect_object"
+
+local EffectManager = {
+ battleCacheList = {},
+ battleCacheMap = {}
+}
+
+local TypeOfGameObject = GConst.TYPEOF_UNITY_CLASS.GAME_OBJECT
+local BATTLE_CACHE_SIZE = 60 -- 战斗特效缓存容量s
+local HERO_SHOW_FX_PATH = "assets/prefabs/effects/show/%s.prefab"
+
+function EffectManager:loadUIEffectAsync(path, ui, parent, order, callback)
+ ResourceManager:loadAsync(path, TypeOfGameObject, function(assetPath, prefab)
+ if ui:isClosed() then
+ ResourceManager:destroyPrefab(prefab)
+ ResourceManager:unload(assetPath)
+ return
+ end
+ if parent == nil or parent:isDestroyed() then
+ ResourceManager:destroyPrefab(prefab)
+ ResourceManager:unload(assetPath)
+ return
+ end
+ local effectObject = EffectObject:create()
+ effectObject:initWithPrefab(assetPath, prefab)
+ effectObject:addUnloadCallback(function(obj)
+ ResourceManager:unload(obj:getAssetPath())
+ end)
+ ui:addEffect(effectObject, parent, order)
+ if callback then
+ callback(effectObject)
+ end
+ end)
+end
+
+function EffectManager:loadEffectAsync(path, parent, callback)
+ ResourceManager:loadAsync(path, TypeOfGameObject, function(assetPath, prefab)
+ if parent and parent:isDestroyed() then
+ ResourceManager:destroyPrefab(prefab)
+ ResourceManager:unload(assetPath)
+ return
+ end
+ local effectObject = EffectObject:create()
+ effectObject:initWithPrefab(assetPath, prefab)
+ effectObject:addUnloadCallback(function(obj)
+ ResourceManager:unload(obj:getAssetPath())
+ end)
+ if parent then
+ effectObject:setParent(parent, false)
+ end
+ if callback then
+ callback(effectObject)
+ end
+ end)
+end
+
+function EffectManager:loadHeroShowEffectAsync(name, parent, callback)
+ local path = string.format(HERO_SHOW_FX_PATH, name)
+ ResourceManager:loadAsync(path, TypeOfGameObject, function(assetPath, prefab)
+ if parent and parent:isDestroyed() then
+ ResourceManager:destroyPrefab(prefab)
+ ResourceManager:unload(assetPath)
+ return
+ end
+ local effectObject = EffectObject:create()
+ effectObject:initWithPrefab(assetPath, prefab)
+ effectObject:addUnloadCallback(function(obj)
+ ResourceManager:unload(obj:getAssetPath())
+ end)
+ if parent then
+ effectObject:setParent(parent, false)
+ end
+ if callback then
+ callback(effectObject)
+ end
+ end)
+end
+
+function EffectManager:loadBattleEffectAsync(path, parent, callback)
+ ResourceManager:loadAsync(path, TypeOfGameObject, function(assetPath, prefab)
+ if parent and parent:isDestroyed() then
+ ResourceManager:destroyPrefab(prefab)
+ ResourceManager:unload(assetPath)
+ return
+ end
+ local effectObject = EffectObject:create()
+ effectObject:initWithPrefab(assetPath, prefab)
+ effectObject:addUnloadCallback(function(obj)
+ local effectPath = obj:getAssetPath()
+ if self.battleCacheMap[effectPath] then
+ ResourceManager:unload(effectPath)
+ else
+ if #self.battleCacheList == BATTLE_CACHE_SIZE then
+ local headPath = table.remove(self.battleCacheList, 1)
+ ResourceManager:unload(headPath)
+ self.battleCacheMap[headPath] = nil
+ end
+ self.battleCacheMap[effectPath] = true
+ table.insert(self.battleCacheList, effectPath)
+ end
+ end)
+ if parent then
+ effectObject:setParent(parent, false)
+ end
+ if callback then
+ callback(effectObject)
+ end
+ end)
+end
+
+function EffectManager:markCache(path)
+ if #self.battleCacheList >= BATTLE_CACHE_SIZE then
+ return false
+ end
+ if self.battleCacheMap[path] == nil then
+ self.battleCacheMap[path] = true
+ table.insert(self.battleCacheList, path)
+ return true
+ end
+ return false
+end
+
+function EffectManager:isCacheFull()
+ return #self.battleCacheList == BATTLE_CACHE_SIZE
+end
+
+function EffectManager:getCacheMaxSize()
+ return BATTLE_CACHE_SIZE
+end
+
+function EffectManager:clearCache()
+ for _, path in ipairs(self.battleCacheList) do
+ ResourceManager:unload(path)
+ end
+ self.battleCacheList = {}
+ self.battleCacheMap = {}
+end
+
+return EffectManager
\ No newline at end of file
diff --git a/lua/app/common/effect_manager.lua.meta b/lua/app/common/effect_manager.lua.meta
new file mode 100644
index 00000000..29b2a73d
--- /dev/null
+++ b/lua/app/common/effect_manager.lua.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: a7961ab6279bf974aa9f71d8a2797922
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/common/event_manager.lua b/lua/app/common/event_manager.lua
new file mode 100644
index 00000000..547132dd
--- /dev/null
+++ b/lua/app/common/event_manager.lua
@@ -0,0 +1,277 @@
+local EventManager = {
+ listeners = {},
+ listenerIndex = 0,
+ dispatchCount = 0,
+ waitRemoveMap = {},
+ waitAddMap = {},
+}
+
+EventManager.CUSTOM_EVENT = {
+ -- MAIN_SOCKET_MESSAGE = "MAIN_SOCKET_MESSAGE", -- 游戏主链接所有消息
+ -- UI_LOADING_PERCENT = "UI_LOADING_PERCENT", -- loading进度
+ ON_BATTLE_START = "ON_BATTLE_START", -- 战斗开始
+ BATTLE_OPERATION_FINISH = "BATTLE_OPERATION_FINISH", -- 战斗中操作完毕
+ BATTLE_OPERATION_START = "BATTLE_OPERATION_START", -- 战斗中当玩家开始操作时
+ BATTLE_END = "BATTLE_END", -- 战斗结束
+ UI_SHOW_COMPLETE = "UI_SHOW_COMPLETE", -- UI打开完毕
+ UI_CUSTOM_ANIMATION_COMPLETE = "UI_CUSTOM_ANIMATION_COMPLETE", -- UI自定义动画完毕
+ UI_CLOSE = "UI_CLOSE", -- UI关闭
+ -- I18N_CHANGE_LANGUAGE = "I18N_CHANGE_LANGUAGE", -- 切换语言
+ UPGRADE_EQUIP = "UPGRADE_EQUIP", -- 升级装备
+ STAGE_TEAM_UP_FORMATION = "STAGE_TEAM_UP_FORMATION", -- 关卡上阵英雄
+ -- SELL_EQUIP = "SELL_EQUIP", -- 战斗结算界面出售装备
+ LOGIN_REQ_SUCCESS = "LOGIN_REQ_SUCCESS", -- 登录请求成功,准备进入游戏
+ HERO_WEAR_EQUIP = "HERO_WEAR_EQUIP", -- 英雄穿上一件装备
+ GET_MAIN_TASK_REWARD = "GET_MAIN_TASK_REWARD", -- 主线任务奖励领取成功
+ -- MARKET_HAD_REFRESH = "MARKET_HAD_REFRESH", -- 市集已刷新
+ -- SHOW_MAIN_TASK_WEAK_FINGER = "SHOW_MAIN_TASK_WEAK_FINGER", -- 显示主线任务的弱引导手指
+ -- CLOSE_LV_UP_UI_WITHOUT_GOTO = "CLOSE_LV_UP_UI_WITHOUT_GOTO", -- 正常关闭升级界面,没有触发前往
+ -- BIND_SDK_SUCCESS = "BIND_SDK_SUCCESS", -- 绑定SDK成功
+ ON_TUTORIAL_BATTLE_TEAM_ENTER = "ON_TUTORIAL_BATTLE_TEAM_ENTER", -- 假战斗引导专用,当队伍入场完后
+ ON_BATTLE_INIT_OVER = "ON_BATTLE_INIT_OVER", -- 战斗初始化完成
+ -- EXPEDITION_SHOW_DOUBLE_CHECK_UI = "EXPEDITION_SHOW_DOUBLE_CHECK_UI", -- 远征展示二次确认框
+ -- EXPEDITION_RESET_HEAD_POS = "EXPEDITION_RESET_HEAD_POS", -- 远征重置头像位置
+ -- EXPEDITION_SHOW_BUFF_VFX = "EXPEDITION_SHOW_BUFF_VFX", -- 远征显示buff特效动画
+ MAIN_UI_CHECK_POP = "MAIN_UI_CHECK_POP", -- 主界面检查弹出界面
+ -- CHANGE_WELCOME_COMP = "CHANGE_WELCOME_COMP", -- 切换新手活动comp
+
+ -- 公会成员已达上限
+ -- GUILD_MEMBER_MAX = "GUILD_MEMBER_MAX", -- 公会成员已达上限
+ -- 装备上锁
+ -- EQUIP_LOCK = "EQUIP_LOCK", -- 装备上锁
+
+ -- 割草
+ CHANGE_MAIN_CITY_PAGE = "CHANGE_MAIN_CITY_PAGE", -- 切换主城页签
+ -- CHANGE_MAIN_CITY_PAGE_VIT = "CHANGE_MAIN_CITY_PAGE_VIT", -- 切换主城页签
+ -- 英雄降临
+ -- CHANGE_NEW_HERO_COMP = "CHANGE_NEW_HERO_COMP", -- 切换英雄活动COMP
+ -- 转盘
+ -- CHANGE_TURNTABLE_COMP = "CHANGE_TURNTABLE_COMP", -- 切换转盘活动COMP
+ -- 守护活动
+ -- CHANGE_GUARD_COMP = "CHANGE_GUARD_COMP", -- 切换守护活动COMP
+ -- EQUIP_LV_UP = "EQUIP_LV_UP", -- 装备升级成功
+ -- EQUIP_RESOLVE = "EQUIP_RESOLVE", -- 装备重置成功
+ -- EQUIP_MERGE = "EQUIP_MERGE", -- 装备合成成功
+ -- EQUIP_QUICK_MERGE = "EQUIP_QUICK_MERGE", -- 装备快速合成成功
+ -- EQUIP_REBACK = "EQUIP_REBACK", -- 装备回退成功
+ -- EQUIP_REFINE = "EQUIP_REFINE", -- 装备精炼成功
+ -- HERO_UNLOCK = "HERO_UNLOCK", -- 英雄解锁
+ -- HERO_STAR_UP = "HERO_STAR_UP", -- 英雄升星成功
+ -- HERO_LV_UP = "HERO_LV_UP", -- 英雄升级成功
+ -- TALENT_UP = "TALENT_UP", -- 天赋升级
+ -- BATTLE_FINISH = "BATTLE_FINISH", -- 战斗结束
+ -- CHAPTER_BOX_REWARD = "CHAPTER_BOX_REWARD", -- 领取宝箱奖励
+ -- UPDATE_DATA = "UPDATE_DATA", -- 更新数据
+ SUMMON_FINISH = "SUMMON_FINISH", -- 抽卡结束
+ -- REVIVE_SUCC = "REVIVE_SUCC", -- 战斗复活成功
+ -- CHANGE_ACTIVITY_NORMAL_COMP = "CHANGE_ACTIVITY_NORMAL_COMP", -- 切换活动COMP
+
+ -- NAME_REPEAT = "NAME_REPEAT", -- 重名
+ -- BUY_MONTH_CARD = "BUY_MONTH_CARD", -- 购买月卡
+ -- PLAY_FLY_ANI = "PLAY_FLY_ANI",
+ -- NEWSUMMON_OVER = "NEWSUMMON_OVER",
+ -- WISHSUMMON_OVER = "WISHSUMMON_OVER",
+ -- JEWELRY_MERGE_OVER = "JEWELRY_MERGE_OVER",
+ -- JEWELRY_AUTO_MERGE_OVER = "JEWELRY_AUTO_MERGE_OVER",
+ -- CDKEY_FINISH = "CDKEY_FINISH",
+ -- BLACK_SUMMON_OVER = "BLACK_SUMMON_OVER",
+ -- ON_CLAIMED_ASK_REWARD = "ON_CLAIMED_ASK_REWARD",
+ -- ON_CLAIMED_GUESS_REWARD = "ON_CLAIMED_GUESS_REWARD",
+ -- ON_ASKING_CONFIRM = "ON_ASKING_CONFIRM",
+
+ -- PLAY_DRAGON_BUILD_ANIMATION = "PLAY_DRAGON_BUILD_ANIMATION", -- 邪龙动画
+
+ -- SPRING_DUEL_CROSS_DAY = "SPRING_DUEL_CROSS_DAY",
+ -- SPRING_DUEL_REQUEST_RANK_LIST = "SPRING_DUEL_REQUEST_RANK_LIST",
+
+ -- ON_VIT_CHANGED = "ON_VIT_CHANGED", -- 体力变更时
+
+ -- B5新增
+ BATTLE_HERO_USE_ACTIVE_SKILL = "BATTLE_HERO_USE_ACTIVE_SKILL",
+ BATTLE_HERO_REFRESH_SKILL = "BATTLE_HERO_REFRESH_SKILL",
+ BATTLE_CHAPTER_CHANGE = "BATTLE_CHAPTER_CHANGE",
+ BATTLE_SHOW_CHAPTER_BLACK_UI = "BATTLE_SHOW_CHAPTER_BLACK_UI",
+ BATTLE_CLOSE_CHAPTER_BLACK_UI = "BATTLE_CLOSE_CHAPTER_BLACK_UI",
+ BATTLE_SHOW_TOAST = "BATTLE_SHOW_TOAST",
+ BATTLE_BLACK_UI_CLOSE = "BATTLE_BLACK_UI_CLOSE",
+ BATTLE_READY_ENTER_DUNGEON = "BATTLE_READY_ENTER_DUNGEON",
+ BATTLE_REVIVE = "BATTLE_REVIVE",
+ BATTLE_REVIVE_RSP = "BATTLE_REVIVE_RSP",
+ BATTLE_ADD_PASSIVE_SKILL = "BATTLE_ADD_PASSIVE_SKILL",
+ BATTLE_CHANGE_PAS_SKILL = "BATTLE_CHANGE_PAS_SKILL",
+ PLAYER_RENAME = "PLAYER_RENAME",
+ GET_ANY_KEY_DOWN = "GET_ANY_KEY_DOWN",
+ NAME_REPEAT = "NAME_REPEAT",
+ TRAIN_REBORN = "TRAIN_REBORN", -- 重生
+ TRAIN_PASS_UP = "TRAIN_PASS_UP", -- 速通
+
+ CLOSE_BATTLE_FAIL = "CLOSE_BATTLE_FAIL",
+ SIGN_IN_SUCCESS = "SIGN_IN_SUCCESS", -- 签到成功
+ CURRENCY_BAR_FLY = "CURRENCY_BAR_FLY",
+ CURRENCY_BAR_FLY_OVER = "CURRENCY_BAR_FLY_OVER",
+ -- 挂机广告
+ IDLE_DROP_AD_GET = "IDLE_DROP_AD_GET",
+ ATK_TRAIN_LEVEL_UP = "ATK_TRAIN_LEVEL_UP",
+ -- 装备变化
+ WEAR_WEAPON_CHANGE = "WEAR_WEAPON_CHANGE",
+ -- 速通结束
+ QUICK_PASS_FINISH = "QUICK_PASS_FINISH",
+ TUTORIAL_TASK_REWARD = "TUTORIAL_TASK_REWARD",
+ ATK_TRAIN_TUTORIAL_OVER = "ATK_TRAIN_TUTORIAL_OVER",
+ TUTORIAL_TASK_STOP = "TUTORIAL_TASK_STOP",
+}
+
+-- 此方法不能直接在外部调用,请使用例如BaseUI,BaseModule等封装好的接口
+function EventManager:addEventListener(name, func, priority)
+ if self.listeners[name] == nil then
+ self.listeners[name] = {}
+ end
+ local tag = self.listenerIndex + 1
+ self.listenerIndex = tag
+ priority = priority or 0
+ if self.dispatchCount > 0 then
+ if not self.waitAddMap[name] then
+ self.waitAddMap[name] = {}
+ end
+ table.insert(self.waitAddMap[name], {func, tag, priority})
+ else
+ local insert = false
+ if priority > 0 then
+ for k, v in ipairs(self.listeners[name]) do
+ if priority <= v[3] then
+ insert = true
+ table.insert(self.listeners[name], k, {func, tag, priority})
+ break
+ end
+ end
+ end
+ if not insert then
+ table.insert(self.listeners[name], {func, tag, priority})
+ end
+ end
+ return tag
+end
+
+function EventManager:removeEventListener(name, tag)
+ if self.listeners[name] then
+ for k, v in ipairs(self.listeners[name]) do
+ if v[2] == tag then
+ if self.dispatchCount > 0 then
+ v[4] = 1
+ self.waitRemoveMap[name] = 1
+ else
+ table.remove(self.listeners[name], k)
+ end
+ break
+ end
+ end
+ end
+
+ if self.waitAddMap[name] then
+ local listenerList = self.waitAddMap[name]
+ for index, listener in ipairs(listenerList) do
+ if listener[2] == tag then
+ table.remove(listenerList, index)
+ break
+ end
+ end
+ end
+end
+
+function EventManager:removeEventListenersByEvent(name)
+ self.listeners[name] = nil
+ self.waitAddMap[name] = nil
+ self.waitRemoveMap[name] = nil
+end
+
+function EventManager:dispatchEvent(name, ...)
+ self.dispatchCount = self.dispatchCount + 1
+ local listenerList = self.listeners[name]
+ if listenerList then
+ local continue = nil
+ for k, v in ipairs(listenerList) do
+ if v[4] == nil then
+ continue = v[1](...)
+ if continue == false then
+ break
+ end
+ end
+ end
+ end
+ self.dispatchCount = self.dispatchCount - 1
+
+ if self.dispatchCount > 0 then
+ return
+ end
+
+ -- 处理等待移除
+ for removeName, v in pairs(self.waitRemoveMap) do
+ local listenerList = self.listeners[removeName]
+ if listenerList then
+ local count = #listenerList
+ for i = count, 1, -1 do
+ if listenerList[i] and listenerList[i][4] then
+ table.remove(listenerList, i)
+ end
+ end
+ end
+ self.waitRemoveMap[removeName] = nil
+ end
+
+ -- 处理等待添加
+ for addName, v in pairs(self.waitAddMap) do
+ for i = 1, #v do
+ local insert = false
+ local listener = table.remove(v)
+ local listenerPriority = listener[3]
+ if listenerPriority > 0 then
+ for k, existListener in ipairs(self.listeners[addName]) do
+ if listenerPriority <= existListener[3] then
+ insert = true
+ table.insert(self.listeners[addName], k, listener)
+ break
+ end
+ end
+ end
+ if not insert then
+ table.insert(self.listeners[addName], listener)
+ end
+ end
+ self.waitAddMap[addName] = nil
+ end
+end
+
+function EventManager:removeAllEventListeners()
+ self.listeners = {}
+ self.waitRemoveMap = {}
+ self.waitAddMap = {}
+ self.listenerIndex = 0
+end
+
+function EventManager:clear()
+ self:removeAllEventListeners()
+end
+
+if NOT_PUBLISH then
+ function EventManager:_checkDebugAddEventListenerFuncMap()
+ if self._debugAddEventListenerFuncMap == nil then
+ self._debugAddEventListenerFuncMap = {
+ [BaseUI.addEventListener] = true,
+ [BaseScene.addEventListener] = true,
+ [BaseModule.addEventListener] = true,
+ }
+ end
+ end
+
+ EventManager._releaseAddEventListener = EventManager.addEventListener
+ function EventManager:addEventListener(...)
+ self:_checkDebugAddEventListenerFuncMap()
+ local currFunc = debug.getinfo(2, "f").func
+ if self._debugAddEventListenerFuncMap[currFunc] == nil then
+ Logger.logFatal("you can not call EventManager:addEventListener directly")
+ end
+ return self:_releaseAddEventListener(...)
+ end
+end
+
+return EventManager
\ No newline at end of file
diff --git a/lua/app/common/event_manager.lua.meta b/lua/app/common/event_manager.lua.meta
new file mode 100644
index 00000000..9409a22c
--- /dev/null
+++ b/lua/app/common/event_manager.lua.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 1d164e3f2ae911e489e090f7155b2743
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/common/font_manager.lua b/lua/app/common/font_manager.lua
new file mode 100644
index 00000000..40f342a9
--- /dev/null
+++ b/lua/app/common/font_manager.lua
@@ -0,0 +1,166 @@
+local FontManager = {
+ defaultFontAssets = nil,
+ fallbackFontAssetsName = nil,
+ fallbackFontAssets = nil,
+}
+
+local DEFAULT_FONT_PATH = "assets/arts/fonts/tmpfonts/default/tmpfont/font_sdf.asset"
+-- local DEFAULT_FONT_TITLE_PATH = "assets/arts/fonts/tmpfonts/default/tmpfont/font_title_sdf.asset"
+
+local LANGUAGE_FONT_PATH = {
+ [GConst.LANGUAGE.CHINESE] = "assets/arts/fonts/tmpfonts/cn/tmpfont/font_sdf.asset",
+ [GConst.LANGUAGE.ENGLISH] = "assets/arts/fonts/tmpfonts/en/tmpfont/font_sdf.asset",
+ [GConst.LANGUAGE.CHINESE_TC] = "assets/arts/fonts/tmpfonts/zh/tmpfont/font_sdf.asset",
+ [GConst.LANGUAGE.RUSSIAN] = "assets/arts/fonts/tmpfonts/ru/tmpfont/font_sdf.asset",
+ [GConst.LANGUAGE.THAILAND] = "assets/arts/fonts/tmpfonts/th/tmpfont/font_sdf.asset",
+ [GConst.LANGUAGE.INDONESIA] = "assets/arts/fonts/tmpfonts/id/tmpfont/font_sdf.asset",
+ [GConst.LANGUAGE.VIETNAMESE] = "assets/arts/fonts/tmpfonts/vi/tmpfont/font_sdf.asset",
+}
+
+local LANGUAGE_FONT_TITLE_PATH = {
+ [GConst.LANGUAGE.CHINESE] = "assets/arts/fonts/tmpfonts/cn/tmpfont/font_title_sdf.asset",
+ [GConst.LANGUAGE.ENGLISH] = "assets/arts/fonts/tmpfonts/en/tmpfont/font_title_sdf.asset",
+ [GConst.LANGUAGE.CHINESE_TC] = "assets/arts/fonts/tmpfonts/zh/tmpfont/font_title_sdf.asset",
+ [GConst.LANGUAGE.RUSSIAN] = "assets/arts/fonts/tmpfonts/ru/tmpfont/font_title_sdf.asset",
+ [GConst.LANGUAGE.THAILAND] = "assets/arts/fonts/tmpfonts/th/tmpfont/font_title_sdf.asset",
+ [GConst.LANGUAGE.INDONESIA] = "assets/arts/fonts/tmpfonts/id/tmpfont/font_title_sdf.asset",
+ [GConst.LANGUAGE.VIETNAMESE] = "assets/arts/fonts/tmpfonts/vi/tmpfont/font_title_sdf.asset",
+}
+
+function FontManager:changeLanguage(language, callback)
+ self.fontLoaded = false
+ -- if not self.defaultFontAssets or not self.defaultFontTitleAssets then
+ if not self.defaultFontAssets then
+ local count = 0
+ -- local totalCount = 2
+ local totalCount = 1
+ local function finish()
+ count = count + 1
+ if count == totalCount then
+ self:_changeLanguage(language, callback)
+ end
+ end
+
+ ResourceManager:loadOriginAssetAsync(DEFAULT_FONT_PATH, GConst.TYPEOF_UNITY_CLASS.TMP_FONT_ASSET, function (path, obj)
+ self.defaultFontAssets = obj
+ -- --特殊处理下划线
+ -- local underlineCharater = self.defaultFontAssets:GetTMPCharacter(0x5F)
+ -- self.defaultFontAssets:ClearTMPCharacter()
+ -- self.defaultFontAssets:AddTMPCharacter(0x5F, underlineCharater)
+ finish()
+ end)
+
+ -- ResourceManager:loadOriginAssetAsync(DEFAULT_FONT_TITLE_PATH, GConst.TYPEOF_UNITY_CLASS.TMP_FONT_ASSET, function (path, obj)
+ -- self.defaultFontTitleAssets = obj
+ -- --特殊处理下划线
+ -- local underlineCharater = self.defaultFontTitleAssets:GetTMPCharacter(0x5F)
+ -- self.defaultFontTitleAssets:ClearTMPCharacter()
+ -- self.defaultFontTitleAssets:AddTMPCharacter(0x5F, underlineCharater)
+ -- finish()
+ -- end)
+ else
+ --特殊处理下划线
+ -- local underlineCharater = self.defaultFontAssets:GetTMPCharacter(0x5F)
+ -- self.defaultFontAssets:ClearTMPCharacter()
+ -- self.defaultFontAssets:AddTMPCharacter(0x5F, underlineCharater)
+
+ -- underlineCharater = self.defaultFontTitleAssets:GetTMPCharacter(0x5F)
+ -- self.defaultFontTitleAssets:ClearTMPCharacter()
+ -- self.defaultFontTitleAssets:AddTMPCharacter(0x5F, underlineCharater)
+
+ self:_changeLanguage(language, callback)
+ end
+end
+
+function FontManager:_changeLanguage(language, callback)
+ -- self.defaultFontAssets.fallbackFontAssetTable:Clear()
+ -- self.defaultFontTitleAssets.fallbackFontAssetTable:Clear()
+
+ -- local fontPath = LANGUAGE_FONT_PATH[language]
+ -- local fontTitlePath = LANGUAGE_FONT_TITLE_PATH[language]
+ -- if fontPath and fontTitlePath then
+ -- if fontPath then
+ -- local count = 0
+ -- local totalCount = 2
+ -- local totalCount = 1
+ -- local function finish()
+ -- count = count + 1
+ -- if count == totalCount then
+ -- self.fontLoaded = true
+ -- if callback then
+ -- callback()
+ -- end
+ -- if self.onFontLoadedCallback then
+ -- local func = self.onFontLoadedCallback
+ -- self.onFontLoadedCallback = nil
+ -- func()
+ -- end
+ -- end
+ -- end
+
+ -- if self.fallbackFontAssetsName then
+ -- ResourceManager:unload(self.fallbackFontAssetsName)
+ -- end
+ -- ResourceManager:loadOriginAssetAsync(fontPath, GConst.TYPEOF_UNITY_CLASS.TMP_FONT_ASSET, function (path, obj)
+ -- self.fallbackFontAssetsName = fontPath
+ -- self.fallbackFontAssets = obj
+ -- local faceInfo = self.fallbackFontAssets.faceInfo
+ -- self.defaultFontAssets.faceInfo = faceInfo
+ -- -- 编辑模式下就实例化一下,否则对字体资源的fallback的修改会保存到本地
+ -- if EDITOR_MODE then
+ -- self.defaultFontAssets.fallbackFontAssetTable:Add(CS.UnityEngine.Object.Instantiate(self.fallbackFontAssets))
+ -- else
+ -- self.defaultFontAssets.fallbackFontAssetTable:Add(self.fallbackFontAssets)
+ -- end
+ -- finish()
+ -- end)
+
+ -- if self.fallbackFontTitleAssetsName then
+ -- ResourceManager:unload(self.fallbackFontTitleAssetsName)
+ -- end
+ -- ResourceManager:loadOriginAssetAsync(fontTitlePath, GConst.TYPEOF_UNITY_CLASS.TMP_FONT_ASSET, function (path, obj)
+ -- self.fallbackFontTitleAssetsName = fontTitlePath
+ -- self.fallbackFontTitleAssets = obj
+ -- local faceInfo = self.fallbackFontTitleAssets.faceInfo
+ -- self.defaultFontTitleAssets.faceInfo = faceInfo
+ -- -- 编辑模式下就实例化一下,否则对字体资源的fallback的修改会保存到本地
+ -- if EDITOR_MODE then
+ -- self.defaultFontTitleAssets.fallbackFontAssetTable:Add(CS.UnityEngine.Object.Instantiate(self.fallbackFontTitleAssets))
+ -- else
+ -- self.defaultFontTitleAssets.fallbackFontAssetTable:Add(self.fallbackFontTitleAssets)
+ -- end
+ -- finish()
+ -- end)
+ -- else
+ -- self.fontLoaded = true
+ -- if callback then
+ -- callback()
+ -- end
+ -- if self.onFontLoadedCallback then
+ -- local func = self.onFontLoadedCallback
+ -- self.onFontLoadedCallback = nil
+ -- func()
+ -- end
+ -- Logger.logError("there is not this font path in const")
+ -- end
+
+ -- 动态字体图集
+ self.fontLoaded = true
+ if callback then
+ callback()
+ end
+ if self.onFontLoadedCallback then
+ local func = self.onFontLoadedCallback
+ self.onFontLoadedCallback = nil
+ func()
+ end
+end
+
+function FontManager:onFontLoaded(callback)
+ if self.fontLoaded then
+ return callback and callback()
+ end
+ self.onFontLoadedCallback = callback
+end
+
+return FontManager
\ No newline at end of file
diff --git a/lua/app/common/font_manager.lua.meta b/lua/app/common/font_manager.lua.meta
new file mode 100644
index 00000000..d4ce3dc0
--- /dev/null
+++ b/lua/app/common/font_manager.lua.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: be33ebb69c121324eb5cb07028b6d405
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/common/i18n_manager.lua b/lua/app/common/i18n_manager.lua
new file mode 100644
index 00000000..f7c0084f
--- /dev/null
+++ b/lua/app/common/i18n_manager.lua
@@ -0,0 +1,374 @@
+local GlobalConst = require "app/config/localization/localization_global_const"
+local FontMgr = require "app/common/font_manager"
+
+local I18N = {
+ configs = {},
+ cacheGlobalFormatParamSequnce = {},
+ cacheNormalFormatParamSequnce = {},
+ cacheGlobalIndex = 0,
+}
+
+I18N.GlobalConst = GlobalConst
+
+local MONSTER_METATABLE = {
+ __index = function(t, k)
+ if rawget(t, k) == nil then
+ local realId = ConfigManager:getConfig("monster")[k].monster_baseid
+ local v = t._realConfig[realId]
+ if v then
+ rawset(t, k, v)
+ end
+ return v
+ end
+ return rawget(t, k)
+ end
+}
+
+local CONFIG_PATH = "app/config/strings/%s/"
+
+local SUPPORT_LANGUAGE_LIST = {
+ GConst.LANGUAGE.ENGLISH,
+ GConst.LANGUAGE.CHINESE,
+ GConst.LANGUAGE.CHINESE_TC,
+ -- -- GConst.LANGUAGE.RUSSIAN, -- 俄罗斯
+ -- -- GConst.LANGUAGE.THAILAND, -- 泰国
+ -- GConst.LANGUAGE.INDONESIA, -- 印度尼西亚
+ -- GConst.LANGUAGE.VIETNAMESE, -- 越南
+ -- GConst.LANGUAGE.FRENCH, -- 法语
+ -- -- GConst.LANGUAGE.ITALIAN, -- 意大利
+ -- GConst.LANGUAGE.GERMAN, -- 德国
+ -- -- GConst.LANGUAGE.SPANISH, -- 西班牙
+ -- GConst.LANGUAGE.PORTUGUESE, -- 葡萄牙
+ -- -- GConst.LANGUAGE.TURKISH, -- 土耳其
+ -- -- GConst.LANGUAGE.MALAYSIA, -- 马来西亚
+ -- GConst.LANGUAGE.JAPANESE, -- 日本
+ -- GConst.LANGUAGE.KOREAN, -- 韩国
+}
+
+local SUPPORT_SERVER_LANGUAGE = {
+ [GConst.LANGUAGE.ENGLISH] = "en_US",
+ [GConst.LANGUAGE.CHINESE] = "zh_CN",
+ [GConst.LANGUAGE.CHINESE_TC] = "zh_TW",
+ [GConst.LANGUAGE.FRENCH] = "fr_FR",
+ [GConst.LANGUAGE.GERMAN] = "de_DE",
+ [GConst.LANGUAGE.RUSSIAN] = "ru_RU",
+ [GConst.LANGUAGE.THAILAND] = "th_TH",
+ [GConst.LANGUAGE.INDONESIA] = "in_ID",
+ [GConst.LANGUAGE.VIETNAMESE] = "vi_VN",
+ [GConst.LANGUAGE.JAPANESE] = "ja_JP",
+ [GConst.LANGUAGE.KOREAN] = "ko_KR",
+}
+
+local LANGUAGE_NAME_KEY = {
+ [GConst.LANGUAGE.ENGLISH] = 1,
+ [GConst.LANGUAGE.CHINESE] = 1,
+ [GConst.LANGUAGE.CHINESE_TC] = 1,
+ [GConst.LANGUAGE.FRENCH] = 1,
+ -- [GConst.LANGUAGE.ITALIAN] = 1,
+ [GConst.LANGUAGE.GERMAN] = 1,
+ -- [GConst.LANGUAGE.SPANISH] = 1,
+ -- [GConst.LANGUAGE.RUSSIAN] = 1,
+ [GConst.LANGUAGE.PORTUGUESE] = 1,
+ -- [GConst.LANGUAGE.TURKISH] = 1,
+ -- [GConst.LANGUAGE.THAILAND] = 1,
+ -- [GConst.LANGUAGE.MALAYSIA] = 1,
+ [GConst.LANGUAGE.INDONESIA] = 1,
+ [GConst.LANGUAGE.VIETNAMESE] = 1,
+ [GConst.LANGUAGE.JAPANESE] = 1,
+ [GConst.LANGUAGE.KOREAN] = 1,
+}
+
+local MOBILE_LANG_MAP = {
+ ["en"] = GConst.LANGUAGE.ENGLISH,
+ ["cn"] = GConst.LANGUAGE.CHINESE,
+ ["zh"] = GConst.LANGUAGE.CHINESE_TC,
+ ["fr"] = GConst.LANGUAGE.FRENCH,
+ ["it"] = GConst.LANGUAGE.ITALIAN,
+ ["de"] = GConst.LANGUAGE.GERMAN,
+ ["es"] = GConst.LANGUAGE.SPANISH,
+ ["ru"] = GConst.LANGUAGE.RUSSIAN,
+ ["pt"] = GConst.LANGUAGE.PORTUGUESE,
+ ["tr"] = GConst.LANGUAGE.TURKISH,
+ ["th"] = GConst.LANGUAGE.THAILAND,
+ ["ms"] = GConst.LANGUAGE.MALAYSIA,
+ ["in"] = GConst.LANGUAGE.INDONESIA,
+ ["vi"] = GConst.LANGUAGE.VIETNAMESE,
+ ["ja"] = GConst.LANGUAGE.JAPANESE,
+ ["ko"] = GConst.LANGUAGE.KOREAN,
+}
+
+local LANGUAGE_NOMARL_SPRITE = {
+ [GConst.LANGUAGE.ENGLISH] = "setting_language_en1",
+ [GConst.LANGUAGE.CHINESE] = "setting_language_cn1",
+ [GConst.LANGUAGE.CHINESE_TC] = "setting_language_tw1",
+
+ [GConst.LANGUAGE.FRENCH] = "setting_language_fr1",
+ [GConst.LANGUAGE.ITALIAN] = "setting_language_it1",
+ [GConst.LANGUAGE.GERMAN] = "setting_language_de1",
+ [GConst.LANGUAGE.SPANISH] = "setting_language_sp1",
+ [GConst.LANGUAGE.RUSSIAN] = "setting_language_ru1",
+ [GConst.LANGUAGE.PORTUGUESE] = "setting_language_pt1",
+ [GConst.LANGUAGE.TURKISH] = "setting_language_tr1",
+ [GConst.LANGUAGE.THAILAND] = "setting_language_th1",
+ [GConst.LANGUAGE.MALAYSIA] = "setting_language_ms1",
+ [GConst.LANGUAGE.INDONESIA] = "setting_language_id1",
+
+}
+
+local LANGUAGE_HIGHLIGHT_SPRITE = {
+ [GConst.LANGUAGE.ENGLISH] = "setting_language_en2",
+ [GConst.LANGUAGE.CHINESE] = "setting_language_cn2",
+ [GConst.LANGUAGE.CHINESE_TC] = "setting_language_tw2",
+
+ [GConst.LANGUAGE.FRENCH] = "setting_language_fr2",
+ [GConst.LANGUAGE.ITALIAN] = "setting_language_it2",
+ [GConst.LANGUAGE.GERMAN] = "setting_language_de2",
+ [GConst.LANGUAGE.SPANISH] = "setting_language_sp2",
+ [GConst.LANGUAGE.RUSSIAN] = "setting_language_ru2",
+ [GConst.LANGUAGE.PORTUGUESE] = "setting_language_pt2",
+ [GConst.LANGUAGE.TURKISH] = "setting_language_tr2",
+ [GConst.LANGUAGE.THAILAND] = "setting_language_th2",
+ [GConst.LANGUAGE.MALAYSIA] = "setting_language_ms2",
+ [GConst.LANGUAGE.INDONESIA] = "setting_language_id2",
+}
+
+function I18N:init()
+ local curLanguage = LocalData:getSelectedLanguage()
+ if curLanguage == "" or not self:supportLanguage(curLanguage) then
+ curLanguage = self:getSystemLanguage()
+ if curLanguage == nil then
+ curLanguage = CS.BF.BFPlatform.GetCurrentLanguageInfo():GetFallbackLanguage()
+ end
+ end
+
+ local changeStatus = self:setLanguage(curLanguage, true)
+ if changeStatus then
+ FontMgr:changeLanguage(self.curLanguage or GConst.LANGUAGE.ENGLISH)
+ end
+end
+
+function I18N:supportLanguage(language)
+ return LANGUAGE_NAME_KEY[language]
+end
+
+function I18N:setLanguage(language, firstInit)
+ if not self:supportLanguage(language) then
+ local fallbackLanguage = CS.BF.BFPlatform.GetCurrentLanguageInfo():GetFallbackLanguage()
+ language = fallbackLanguage
+ end
+
+ if not language or language == self.curLanguage then
+ return
+ end
+ LocalData:setSelectedLanguage(language)
+ self:clear()
+ self.curLanguage = language
+
+ self.configPath = string.format(CONFIG_PATH, self.curLanguage)
+
+ local monsterTable = {
+ _realConfig = false
+ }
+ setmetatable(monsterTable, MONSTER_METATABLE)
+ self.configs["monster"] = {
+ data = monsterTable,
+ }
+ if not firstInit then
+ self:preLoadConfig()
+ end
+
+ Logger.logHighlight("setLanguage = %s", language)
+ return true
+end
+
+function I18N:onFontLoaded(callback)
+ FontMgr:onFontLoaded(callback)
+end
+
+function I18N:preLoadConfig()
+ -- local config = self:getConfig("monster")
+ -- if not config._realConfig then
+ -- config._realConfig = require(self.configPath .. "monster_base").data
+ -- end
+end
+
+function I18N:clear()
+ for name, v in pairs(self.configs) do
+ self:clearConfigCache(name)
+ self.configs[name] = nil
+ end
+
+ --清除缓存
+ self.cacheGlobalFormatParamSequnce = {}
+ self.cacheNormalFormatParamSequnce = {}
+ self.cacheGlobalIndex = 0
+end
+
+function I18N:clearConfigCache(configName)
+ package.loaded[self.configPath .. configName] = nil
+end
+
+function I18N:getCurLanguage()
+ return self.curLanguage
+end
+
+function I18N:getLanguageSprite(language)
+ return LANGUAGE_NOMARL_SPRITE[language]
+end
+
+function I18N:getSeletedSprite(language)
+ return LANGUAGE_HIGHLIGHT_SPRITE[language]
+end
+
+function I18N:getSystemLanguage()
+ local sdkLanguage = CS.BF.BFMain.Instance.SDKMgr:GetLanguage()
+ print("I18N get sdk language " .. sdkLanguage)
+ local languageInfo = string.split(sdkLanguage, "_")
+ if not languageInfo or #languageInfo ~= 2 then
+ print("I18N return system language nil")
+ return nil
+ end
+ local language = languageInfo[1]
+ local country = languageInfo[2]
+ if language and language == "zh" then
+ if country and country == "CN" then
+ language = "cn"
+ end
+ end
+ language = MOBILE_LANG_MAP[language]
+ if not self:supportLanguage(language) then
+ language = nil
+ end
+ if language then
+ Logger.log("I18N return system language %s", language)
+ else
+ Logger.log("I18N return system language nil")
+ end
+ return language
+end
+
+function I18N:getSupportLanguageList()
+ return SUPPORT_LANGUAGE_LIST
+end
+
+function I18N:_getConfig(configName)
+ local config
+ if configName == "global" then
+ config = {}
+ config.data = require(self.configPath .. configName)
+ else
+ config = require(self.configPath .. configName)
+ end
+ self.configs[configName] = config
+ return config
+end
+
+function I18N:getConfig(configName)
+ local config = self.configs[configName]
+ if config == nil then
+ config = self:_getConfig(configName)
+ end
+ return config.data
+end
+
+if NOT_PUBLISH then
+ I18N.__getConfig = I18N.getConfig
+ function I18N:getConfig(configName)
+ if string.lower(configName) ~= configName then
+ Logger.logFatal("I18N:getConfig 传入的表名不能有大写 " .. configName)
+ end
+ return self:__getConfig(configName)
+ end
+end
+
+function I18N:getConfigWithOtherKey(configName, keyName)
+ local config = self.configs[configName]
+ if config == nil then
+ config = self:_getConfig(configName)
+ end
+ if config.keys == nil then
+ return nil
+ end
+ return config.keys[keyName]
+end
+
+function I18N:getConfigNum(configName)
+ local config = self.configs[configName]
+ if config == nil then
+ config = self:_getConfig(configName)
+ end
+ return config.count
+end
+
+function I18N:getGlobalText(key, ...)
+ local config = self:getConfig("global")
+ local str = config[key]
+ if str == nil then
+ return ""
+ end
+ if ... then
+ local param = {...}
+ if self.cacheGlobalFormatParamSequnce[key] then
+ self.cacheGlobalIndex = 0
+ str = string.gsub(str, '{%d+}', function (s)
+ self.cacheGlobalIndex = self.cacheGlobalIndex + 1
+ return tostring(param[self.cacheGlobalFormatParamSequnce[key][self.cacheGlobalIndex]])
+ end)
+ else
+ self.cacheGlobalFormatParamSequnce[key] = {}
+ str = string.gsub(str, '{%d+}', function (s)
+ self.cacheGlobalIndex = tonumber(string.sub(s, 2,-2)) + 1
+ table.insert(self.cacheGlobalFormatParamSequnce[key], self.cacheGlobalIndex)
+ return tostring(param[self.cacheGlobalIndex])
+ end)
+ end
+ end
+ return str
+end
+
+function I18N:getText(configName, index, key, ...)
+ local config = self:getConfig(configName)
+ local row = config[index]
+ if row == nil then
+ return ""
+ end
+ local str = row[key]
+ if str == nil then
+ return ""
+ end
+ if ... then
+ local param = {...}
+ if self.cacheNormalFormatParamSequnce[key] then
+ self.cacheNormalIndex = 0
+ str = string.gsub(str, '{%d+}', function (s)
+ self.cacheNormalIndex = self.cacheNormalIndex + 1
+ return tostring(param[self.cacheNormalFormatParamSequnce[key][self.cacheNormalIndex]])
+ end)
+ else
+ self.cacheNormalFormatParamSequnce[key] = {}
+ str = string.gsub(str, '{%d+}', function (s)
+ self.cacheNormalIndex = tonumber(string.sub(s, 2,-2)) + 1
+ table.insert(self.cacheNormalFormatParamSequnce[key], self.cacheNormalIndex)
+ return tostring(param[self.cacheNormalIndex])
+ end)
+ end
+ end
+ return str
+end
+
+function I18N:getFallbackLanguage()
+ if not self.fallbackLanguage then
+ local languageInfo = CS.BF.BFPlatform.GetCurrentLanguageInfo()
+ self.fallbackLanguage = languageInfo:GetFallbackLanguage()
+ end
+ return self.fallbackLanguage
+end
+
+function I18N:getLanguageAndArea()
+ if SUPPORT_SERVER_LANGUAGE[self:getCurLanguage()] then
+ return SUPPORT_SERVER_LANGUAGE[self:getCurLanguage()]
+ end
+ return SUPPORT_SERVER_LANGUAGE[GConst.LANGUAGE.ENGLISH]
+end
+
+return I18N
\ No newline at end of file
diff --git a/lua/app/common/i18n_manager.lua.meta b/lua/app/common/i18n_manager.lua.meta
new file mode 100644
index 00000000..bb9b206d
--- /dev/null
+++ b/lua/app/common/i18n_manager.lua.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 4ddf9f175f3302f4590842552214406d
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/common/local_data.lua b/lua/app/common/local_data.lua
new file mode 100644
index 00000000..1701de62
--- /dev/null
+++ b/lua/app/common/local_data.lua
@@ -0,0 +1,313 @@
+local LocalData ={}
+
+local PlayerPrefs = CS.UnityEngine.PlayerPrefs
+
+local LOCAL_DATA_KEY = {
+ SDK_UID = "SDK_UID",
+ AUDIO_MUSIC_VOLUME = "AUDIO_MUSIC_VOLUME",
+ AUDIO_EFFECT_VOLUME = "AUDIO_EFFECT_VOLUME",
+ SELECTED_LANGUAGE = "SELECTED_LANGUAGE",
+ GM_SHOW_FLOATING_ICON = "GM_SHOW_FLOATING_ICON",
+ MESSAGE_BOX_SHOW_TODAY = "MESSAGE_BOX_SHOW_TODAY",
+ GAME_QUALITY_LEVEL = "GAME_QUALITY_LEVEL", -- 游戏设置品质等级
+ LAST_LOGIN_URL = "LAST_LOGIN_URL",
+ LAST_LOGIN_INFO = "LAST_LOGIN_INFO", -- 上一次登录成功的信息
+ LAST_LOGIN_TYPE = "LAST_LOGIN_TYPE", -- 上次登录类型 token不记录
+ LAST_LOGIN_NAME = "LAST_LOGIN_NAME",
+ LAST_LOGIN_IP = "LAST_LOGIN_IP",
+ ACCOUNT_INFO = "ACCOUNT_INFO",
+ SEND_QUEUE = "SEND_QUEUE",
+ SDK_LOGIN_TYPE = "SDK_LOGIN_TYPE",
+
+ NEED_UPDATE = "NEED_UPDATE", -- 需要更新
+ IOS_ORDER_ID = "IOS_ORDER_ID",
+ IOS_PAY_INFO = "IOS_PAY_INFO",
+ SHAKE_MODE = "SHAKE_MODE", -- 震动模式
+ SAVE_POWER_MODE = "SAVE_POWER_MODE", -- 省电模式
+ LAST_MAIL_ID = "LAST_MAIL_ID",
+}
+
+LocalData.KEYS = LOCAL_DATA_KEY
+
+function LocalData:save()
+ if self.dirty then
+ self.dirty = false
+ PlayerPrefs.Save()
+ end
+end
+
+function LocalData:setString(key, value)
+ self.dirty = true
+ PlayerPrefs.SetString(key, value)
+end
+
+function LocalData:getString(key, defaultValue)
+ if defaultValue then
+ return PlayerPrefs.GetString(key, defaultValue)
+ else
+ return PlayerPrefs.GetString(key)
+ end
+end
+
+function LocalData:setInt(key, value)
+ self.dirty = true
+ PlayerPrefs.SetInt(key, value)
+end
+
+function LocalData:getInt(key, defaultValue)
+ if defaultValue then
+ return PlayerPrefs.GetInt(key, defaultValue)
+ else
+ return PlayerPrefs.GetInt(key)
+ end
+end
+
+function LocalData:setFloat(key, value)
+ self.dirty = true
+ PlayerPrefs.SetFloat(key, value)
+end
+
+function LocalData:getFloat(key, defaultValue)
+ if defaultValue then
+ return PlayerPrefs.GetFloat(key, defaultValue)
+ else
+ return PlayerPrefs.GetFloat(key)
+ end
+end
+
+function LocalData:hasKey(key)
+ return PlayerPrefs.HasKey(key)
+end
+
+function LocalData:delKey(key)
+ self.dirty = true
+ PlayerPrefs.DeleteKey(key)
+end
+
+-- 跟角色挂钩的唯一id
+function LocalData:getRoleKey(key)
+ local uid = DataManager.PlayerData:getUid()
+ if uid == "" then
+ Logger.logError("check roleid error!")
+ end
+ return key .. uid
+end
+
+--------------Implement-----------------
+function LocalData:getAudioMusicVolume()
+ return self:getFloat(LOCAL_DATA_KEY.AUDIO_MUSIC_VOLUME, 1)
+end
+
+function LocalData:setAudioMusicVolume(value)
+ self:setFloat(LOCAL_DATA_KEY.AUDIO_MUSIC_VOLUME, value)
+end
+
+function LocalData:getAudioEffectVolume()
+ return self:getFloat(LOCAL_DATA_KEY.AUDIO_EFFECT_VOLUME, 1)
+end
+
+function LocalData:setAudioEffectVolume(value)
+ self:setFloat(LOCAL_DATA_KEY.AUDIO_EFFECT_VOLUME, value)
+end
+
+function LocalData:getSelectedLanguage()
+ return self:getString(LOCAL_DATA_KEY.SELECTED_LANGUAGE, "")
+end
+
+function LocalData:setSelectedLanguage(value)
+ self:setString(LOCAL_DATA_KEY.SELECTED_LANGUAGE, value)
+end
+
+function LocalData:getGMShowFloatingIcon()
+ return self:getInt(LOCAL_DATA_KEY.GM_SHOW_FLOATING_ICON, 0) == 1
+end
+
+function LocalData:setGMShowFloatingIcon(value)
+ self:setInt(LOCAL_DATA_KEY.GM_SHOW_FLOATING_ICON, value)
+end
+
+function LocalData:getMessageBoxShowTodayTime(key)
+ return self:getInt(LOCAL_DATA_KEY.MESSAGE_BOX_SHOW_TODAY .. key, 0)
+end
+
+function LocalData:setMessageBoxShowTodayTime(key, value)
+ self:setInt(LOCAL_DATA_KEY.MESSAGE_BOX_SHOW_TODAY .. key, value)
+end
+
+function LocalData:getGameQualityLevel()
+ return self:getInt(LOCAL_DATA_KEY.GAME_QUALITY_LEVEL, 0)
+end
+
+function LocalData:setGameQualityLevel(level)
+ self:setInt(LOCAL_DATA_KEY.GAME_QUALITY_LEVEL, level)
+end
+
+function LocalData:setTodayFirst(new)
+ self.isTodayFirst = new
+end
+
+function LocalData:getTodayFirst()
+ return self.isTodayFirst or false
+end
+
+function LocalData:setNeedUpdate(value)
+ value = value or "0.0.0"
+ self:setString(LOCAL_DATA_KEY.NEED_UPDATE, value)
+end
+
+function LocalData:getNeedUpdate()
+ self:getString(LOCAL_DATA_KEY.NEED_UPDATE, "0.0.0")
+end
+
+function LocalData:setIosPayInfo(iosPayInfo)
+ iosPayInfo = iosPayInfo or {}
+ local str = json.encode(iosPayInfo)
+ self:setString(LOCAL_DATA_KEY.IOS_PAY_INFO, str)
+end
+
+function LocalData:getIosPayInfo()
+ local str = self:getString(LOCAL_DATA_KEY.IOS_PAY_INFO, "")
+ if str == nil or str == "" then
+ return {}
+ else
+ local iosPayInfo = json.decode(str)
+ if iosPayInfo then
+ return iosPayInfo
+ else
+ return {}
+ end
+ end
+end
+
+function LocalData:setIosOrders(iosOrders)
+ iosOrders = iosOrders or {}
+ local str = json.encode(iosOrders)
+ self:setString(LOCAL_DATA_KEY.IOS_ORDER_ID, str)
+end
+
+function LocalData:getIosOrders()
+ local str = self:getString(LOCAL_DATA_KEY.IOS_ORDER_ID, "")
+ if str == nil or str == "" then
+ return {}
+ else
+ local iosOrders = json.decode(str)
+ if iosOrders then
+ return iosOrders
+ else
+ return {}
+ end
+ end
+end
+
+function LocalData:setLastLoginInfo(loginType, id, token)
+ local str = json.encode({
+ type = loginType,
+ id = id,
+ token = token
+ })
+ if not loginType then
+ self:setString(LOCAL_DATA_KEY.LAST_LOGIN_TYPE, "")
+ elseif loginType ~= "token" then
+ self:setString(LOCAL_DATA_KEY.LAST_LOGIN_TYPE, loginType)
+ end
+ self:setString(LOCAL_DATA_KEY.LAST_LOGIN_INFO, str)
+end
+
+function LocalData:getLastLoginInfo()
+ local str = self:getString(LOCAL_DATA_KEY.LAST_LOGIN_INFO, "{}")
+ local info = json.decode(str)
+ info.type = info.type or NetManager.LOGIN_TYPE.ANONYMOUS
+ info.id = info.id or DeviceHelper:getDeviceId()
+ info.token = info.token
+ return info
+end
+
+function LocalData:getLastLoginType()
+ local str = self:getString(LOCAL_DATA_KEY.LAST_LOGIN_TYPE, "")
+ if str == "" then
+ str = NetManager.LOGIN_TYPE.ANONYMOUS
+ end
+ if str ~= NetManager.LOGIN_TYPE.ANONYMOUS and
+ str ~= NetManager.LOGIN_TYPE.APPLE and
+ str ~= NetManager.LOGIN_TYPE.GOOGLE and
+ str ~= NetManager.LOGIN_TYPE.FACEBOOK
+ then
+ str = NetManager.LOGIN_TYPE.ANONYMOUS
+ end
+ return str
+end
+
+function LocalData:setLastLoginName(name)
+ name = name or ""
+ self:setString(LOCAL_DATA_KEY.LAST_LOGIN_NAME, name)
+end
+
+function LocalData:getLastLoginName()
+ return self:getString(LOCAL_DATA_KEY.LAST_LOGIN_NAME, "")
+end
+
+function LocalData:saveSendQueue(sendQueue)
+ local str = json.encode(sendQueue)
+ if EDITOR_MODE then
+ Logger.log("---------------------剩余消息队列缓存---------------------------------")
+ --Logger.logHighlight(str)
+ print(str)
+ end
+ self:setString(LOCAL_DATA_KEY.SEND_QUEUE, str)
+end
+
+function LocalData:getSendQueue()
+ local sendQueue = json.decode(self:getString(LOCAL_DATA_KEY.SEND_QUEUE, "{}"))
+ return sendQueue
+end
+
+function LocalData:setShakeMode(value) -- 0-close 1-open
+ self:setInt(self:getString(LOCAL_DATA_KEY.SHAKE_MODE), value)
+end
+
+function LocalData:getShakeMode()
+ self:getInt(self:getString(LOCAL_DATA_KEY.SHAKE_MODE), 1)
+end
+
+function LocalData:setSavePowerMode(value) -- 0-close 1-open
+ self:setInt(self:getString(LOCAL_DATA_KEY.SAVE_POWER_MODE), value)
+end
+
+function LocalData:getSavePowerMode()
+ self:getInt(self:getString(LOCAL_DATA_KEY.SAVE_POWER_MODE), 1)
+end
+
+function LocalData:getLastMailId()
+ return self:getInt(LOCAL_DATA_KEY.LAST_MAIL_ID, 0)
+end
+
+function LocalData:setLastMailId(id)
+ if not id then
+ return
+ end
+ self:setInt(LOCAL_DATA_KEY.LAST_MAIL_ID, id)
+end
+
+function LocalData:getAccountInfo()
+ local info = json.decode(self:getString(LOCAL_DATA_KEY.ACCOUNT_INFO, "{}"))
+ return info
+end
+
+function LocalData:setAccountInfo(info)
+ if not info then
+ return
+ end
+ local str = json.encode(info)
+ self:setString(LOCAL_DATA_KEY.ACCOUNT_INFO, str)
+end
+
+function LocalData:setLastLoginIp(ip)
+ ip = ip or ""
+ self:setString(LOCAL_DATA_KEY.LAST_LOGIN_IP, ip)
+end
+
+function LocalData:getLastLoginIp()
+ return self:getString(LOCAL_DATA_KEY.LAST_LOGIN_IP, "")
+end
+
+return LocalData
\ No newline at end of file
diff --git a/lua/app/common/local_data.lua.meta b/lua/app/common/local_data.lua.meta
new file mode 100644
index 00000000..6e9b2b75
--- /dev/null
+++ b/lua/app/common/local_data.lua.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: af04d753ce34d3f43a83b4bd28b46a25
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/common/logger.lua b/lua/app/common/logger.lua
new file mode 100644
index 00000000..41411a37
--- /dev/null
+++ b/lua/app/common/logger.lua
@@ -0,0 +1,263 @@
+local Logger = {}
+
+-- 全局的print,必须使用封装的Logger
+if not EDITOR_MODE then
+ print = function(...)
+ Logger.log(...)
+ end
+end
+
+Logger.tab = " "
+Logger.MANUAL_ENABLE_DEBUG = false -- 手动控制激活打印
+Logger.ENABLE_TIMES = 5 -- 激活需要的操作次数
+
+local function split(input, delimiter)
+ input = tostring(input)
+ delimiter = tostring(delimiter)
+ if (delimiter=='') then return false end
+ local pos,arr = 0, {}
+ -- for each divider found
+ for st,sp in function() return string.find(input, delimiter, pos, true) end do
+ table.insert(arr, string.sub(input, pos, st - 1))
+ pos = sp + 1
+ end
+ table.insert(arr, string.sub(input, pos))
+ return arr
+end
+
+local formatTable
+formatTable = function(tal, _depth)
+ if IS_PUBLISH and not Logger.MANUAL_ENABLE_DEBUG then
+ return
+ end
+ if type(tal) ~= "table" then
+ return tostring(tal)
+ else
+ local _depth = _depth or 0
+ local getTab = function()
+ local r = ""
+ for _ = 1, _depth do
+ r = r.. Logger.tab
+ end
+ return r
+ end
+ local result = "{\n"
+ _depth = _depth + 1
+ for k, v in pairs(tal) do
+ if type(v) ~= "table" then
+ result = result.. getTab().. tostring(k).. " = ".. tostring(v).. "\n"
+ else
+ result = result.. getTab().. tostring(k).. " = ".. formatTable(v, _depth + 1) .. "\n"
+ end
+ end
+ result = result.. getTab().. "}"
+ return result
+ end
+end
+
+Logger.printTable = function(tbl)
+ if IS_PUBLISH and not Logger.MANUAL_ENABLE_DEBUG then
+ return
+ end
+ Logger.log(formatTable(tbl))
+end
+
+Logger.printTableWarning = function(tbl)
+ if IS_PUBLISH and not Logger.MANUAL_ENABLE_DEBUG then
+ return
+ end
+ Logger.logWarning(formatTable(tbl))
+end
+
+Logger.printTableError = function(tbl)
+ if IS_PUBLISH and not Logger.MANUAL_ENABLE_DEBUG then
+ return
+ end
+ Logger.logError(formatTable(tbl))
+end
+
+Logger.log = function(fmt, ...)
+ if IS_PUBLISH and not Logger.MANUAL_ENABLE_DEBUG then
+ return
+ end
+ Logger._log("INFO", fmt, ...)
+end
+
+Logger.logTodo = function(fmt, ...)
+ if IS_PUBLISH and not Logger.MANUAL_ENABLE_DEBUG then
+ return
+ end
+ local t = { string.format(tostring(fmt), ...), }
+ local traceback = split(debug.traceback("", 2), "\n")
+ CS.UnityEngine.Debug.Log("[TODO] " .. table.concat(t) .. "" .. table.concat(traceback, "\n"))
+end
+
+Logger.logHighlight = function(fmt, ...)
+ if IS_PUBLISH and not Logger.MANUAL_ENABLE_DEBUG then
+ return
+ end
+ local t = { string.format(tostring(fmt), ...), }
+ local traceback = split(debug.traceback("", 2), "\n")
+ CS.UnityEngine.Debug.Log("" .. table.concat(t) .. "" .. table.concat(traceback, "\n"))
+end
+
+Logger.logWarning = function(fmt, ...)
+ if IS_PUBLISH and not Logger.MANUAL_ENABLE_DEBUG then
+ return
+ end
+ Logger._log("WARNING", fmt, ...)
+end
+
+Logger.logError = function(fmt, ...)
+ if IS_PUBLISH and not Logger.MANUAL_ENABLE_DEBUG then
+ return
+ end
+ Logger._log("ERROR", fmt, ...)
+end
+
+Logger.logFatal = function(fmt, ...)
+ if IS_PUBLISH and not Logger.MANUAL_ENABLE_DEBUG then
+ return
+ end
+ Logger._log("FATAL", fmt, ...)
+end
+
+Logger.logWarningBox = function(fmt, ...)
+ if IS_PUBLISH and not Logger.MANUAL_ENABLE_DEBUG then
+ return
+ end
+
+ local content = Logger._log("WARNING", fmt, ...)
+ local params = {
+ content = content,
+ okText = I18N:getGlobalText(I18N.GlobalConst.BTN_TEXT_OK),
+ noShowClose = true,
+ okFunc = function() end,
+ boxType = GConst.MESSAGE_BOX_TYPE.MB_OK,
+ top = true,
+ }
+ GFunc.showMessageBox(params)
+end
+
+Logger._log = function(tag, fmt, ...)
+ if IS_PUBLISH and not Logger.MANUAL_ENABLE_DEBUG then
+ return
+ end
+ local str = Logger._checkPercentSign(fmt)
+ local t = { string.format(tostring(str), ...), }
+ local traceback = split(debug.traceback("", 2), "\n")
+ local output
+ if tag == "FATAL" then
+ output = table.concat(t) ..table.concat(traceback, "\n")
+ CS.UnityEngine.Debug.LogError(output)
+ elseif tag == "ERROR" then
+ CS.UnityEngine.Debug.Log("" .. table.concat(t) .. "" .. table.concat(traceback, "\n"))
+ elseif tag == "WARNING" then
+ output = table.concat(t) ..table.concat(traceback, "\n")
+ CS.UnityEngine.Debug.LogWarning(output)
+ else
+ output = table.concat(t) ..table.concat(traceback, "\n")
+ CS.UnityEngine.Debug.Log(output)
+ end
+
+ return output
+end
+
+local function dump_value_(v)
+ if type(v) == "string" then
+ v = "\"" .. v .. "\""
+ end
+ return tostring(v)
+end
+
+Logger.dump = function(value, description, nesting)
+ if IS_PUBLISH then
+ return
+ end
+ if type(nesting) ~= "number" then nesting = 3 end
+
+ local lookupTable = {}
+ local result = {}
+
+ local traceback = split(debug.traceback("", 2), "\n")
+ CS.UnityEngine.Debug.Log("dump from: " .. string.trim(traceback[3]))
+
+ local function dump_(value, description, indent, nest, keylen)
+ description = description or ""
+ local spc = ""
+ if type(keylen) == "number" then
+ spc = string.rep(" ", keylen - string.len(dump_value_(description)))
+ end
+ if type(value) ~= "table" then
+ result[#result +1 ] = string.format("%s%s%s = %s", indent, dump_value_(description), spc, dump_value_(value))
+ elseif lookupTable[tostring(value)] then
+ result[#result +1 ] = string.format("%s%s%s = *REF*", indent, dump_value_(description), spc)
+ else
+ lookupTable[tostring(value)] = true
+ if nest > nesting then
+ result[#result +1 ] = string.format("%s%s = *MAX NESTING*", indent, dump_value_(description))
+ else
+ result[#result +1 ] = string.format("%s%s = {", indent, dump_value_(description))
+ local indent2 = indent.." "
+ local keys = {}
+ local keylen = 0
+ local values = {}
+ for k, v in pairs(value) do
+ keys[#keys + 1] = k
+ local vk = dump_value_(k)
+ local vkl = string.len(vk)
+ if vkl > keylen then keylen = vkl end
+ values[k] = v
+ end
+ table.sort(keys, function(a, b)
+ if type(a) == "number" and type(b) == "number" then
+ return a < b
+ else
+ return tostring(a) < tostring(b)
+ end
+ end)
+ for i, k in ipairs(keys) do
+ dump_(values[k], k, indent2, nest + 1, keylen)
+ end
+ result[#result +1] = string.format("%s}", indent)
+ end
+ end
+ end
+ dump_(value, description, "- ", 1)
+
+ for i, line in ipairs(result) do
+ CS.UnityEngine.Debug.Log(line)
+ end
+end
+
+Logger._checkPercentSign = function (str)
+ if str == nil then
+ return nil
+ end
+ str = tostring(str)
+ local strTable = {}
+ for i = 1, #str do
+ table.insert(strTable, str:sub(i,i))
+ end
+ local count = #strTable
+ local specialChars = {"s","p","c","w","a","l","u","d","x","z",}
+ for i = count, 1, -1 do
+ if strTable[i] == '%' and (i + 1) <= count then
+ local pattern = false
+ for _, char in ipairs(specialChars) do
+ if strTable[i + 1] == char then
+ pattern = true
+ break
+ end
+ end
+ if not pattern then
+ table.insert(strTable, i + 1, "%")
+ end
+ elseif strTable[i] == '%' and i == count then
+ table.insert(strTable, "%")
+ end
+ end
+ return table.concat(strTable)
+end
+
+return Logger
diff --git a/lua/app/common/logger.lua.meta b/lua/app/common/logger.lua.meta
new file mode 100644
index 00000000..3f74d1a7
--- /dev/null
+++ b/lua/app/common/logger.lua.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 74b5b4b7ed3c12a408e31f57c98933b0
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/common/model_manager.lua b/lua/app/common/model_manager.lua
new file mode 100644
index 00000000..aebeb47c
--- /dev/null
+++ b/lua/app/common/model_manager.lua
@@ -0,0 +1,212 @@
+local CharacterFSMManager = require "app/module/character_fsm/character_fsm_manager"
+local ModelObject = require "app/bf/unity/model_object"
+local CharacterObject = require "app/bf/unity/character_object"
+local WeaponObject = require "app/bf/unity/weapon_object"
+
+local ModelManager = {
+ heroCacheList = {},
+ heroCacheMap = {}
+}
+
+local TypeOfGameObject = GConst.TYPEOF_UNITY_CLASS.GAME_OBJECT
+
+local HERO_CACHE_SIZE = 10 -- 英雄缓存容量
+
+function ModelManager:loadHeroAsync(id, parent, weaponAniName, weapon, callback)
+ local path = "assets/prefabs/models/characters/" .. id .. ".prefab"
+ ResourceManager:loadAsync(path, TypeOfGameObject, function(assetPath, prefab)
+ if parent and parent:isDestroyed() then
+ ResourceManager:destroyPrefab(prefab)
+ ResourceManager:unload(assetPath)
+ return
+ end
+
+ local characterObject = CharacterObject:create()
+ characterObject:initWithPrefab(assetPath, prefab, id)
+ characterObject:addUnloadCallback(function(obj)
+ local modelPath = obj:getAssetPath()
+ if self.heroCacheMap[modelPath] then
+ ResourceManager:unload(modelPath)
+ else
+ if #self.heroCacheList >= HERO_CACHE_SIZE then
+ local headPath = table.remove(self.heroCacheList, 1)
+ ResourceManager:unload(headPath)
+ self.heroCacheMap[headPath] = nil
+ end
+ self.heroCacheMap[modelPath] = true
+ table.insert(self.heroCacheList, modelPath)
+ end
+ end)
+ if parent then
+ characterObject:setParent(parent, false)
+ end
+
+ local fsm = CharacterFSMManager:getFsm(characterObject)
+ characterObject:setCharacterFSM(fsm)
+
+ local nodeName = "hand_r_weapon"
+ if weapon then
+ for k, name in pairs(GConst.HeroConst.WEAPON_NODE) do
+ local find = string.find(weapon, k)
+ if find then
+ local node = characterObject:getBoneByName(name)
+ if node then
+ nodeName = name
+ end
+ break
+ end
+ end
+ end
+
+ if weapon and characterObject:getBoneByName(nodeName) then
+ ModelManager:loadWeaponAsync(weapon, characterObject:getBoneByName(nodeName), function(weaponObj)
+ if weaponObj then
+ characterObject:setWeaponInfo(weaponAniName, weaponObj)
+ end
+ characterObject:play("idle")
+
+ if callback then
+ callback(characterObject, weaponObj)
+ end
+ end)
+ else
+ characterObject:play("idle")
+
+ if callback then
+ callback(characterObject)
+ end
+ end
+ end)
+end
+
+function ModelManager:loadWeaponAsync(weapon, parent, callback)
+ local path = "assets/prefabs/models/weapon/" .. weapon .. ".prefab"
+ ResourceManager:loadAsync(path, TypeOfGameObject, function(assetPath, prefab)
+ if parent and parent:isDestroyed() then
+ ResourceManager:destroyPrefab(prefab)
+ ResourceManager:unload(assetPath)
+ return
+ end
+
+ local modelObject = WeaponObject:create()
+ modelObject:initWithPrefab(assetPath, prefab)
+ modelObject:addUnloadCallback(function(obj)
+ ResourceManager:unload(obj:getAssetPath())
+ end)
+ if parent then
+ modelObject:setParent(parent, false)
+ end
+
+ if callback then
+ callback(modelObject)
+ end
+ end)
+end
+
+function ModelManager:loadMonsterAsync(id, parent, callback)
+ local path = "assets/prefabs/models/characters/" .. id .. ".prefab"
+ ResourceManager:loadAsync(path, TypeOfGameObject, function(assetPath, prefab)
+ if parent and parent:isDestroyed() then
+ ResourceManager:destroyPrefab(prefab)
+ ResourceManager:unload(assetPath)
+ return
+ end
+
+ local characterObject = CharacterObject:create()
+ characterObject:initWithPrefab(assetPath, prefab)
+ characterObject:addUnloadCallback(function(obj)
+ local modelPath = obj:getAssetPath()
+ ResourceManager:unload(modelPath)
+ end)
+ if parent then
+ characterObject:setParent(parent, false)
+ end
+
+ local fsm = CharacterFSMManager:getFsm(characterObject)
+ characterObject:setCharacterFSM(fsm)
+
+ if callback then
+ callback(characterObject)
+ end
+ end)
+end
+
+function ModelManager:loadModelAsync(path, parent, callback)
+ ResourceManager:loadAsync(path, TypeOfGameObject, function(assetPath, prefab)
+ if parent and parent:isDestroyed() then
+ ResourceManager:destroyPrefab(prefab)
+ ResourceManager:unload(assetPath)
+ return
+ end
+
+ local modelObject = ModelObject:create()
+ modelObject:initWithPrefab(assetPath, prefab)
+ modelObject:addUnloadCallback(function(obj)
+ ResourceManager:unload(obj:getAssetPath())
+ end)
+ if parent then
+ modelObject:setParent(parent, false)
+ end
+
+ if callback then
+ callback(modelObject)
+ end
+ end)
+end
+
+function ModelManager:loadHeroShowAsync(id, parent, callback)
+ local path = "assets/prefabs/models/characters_show/" .. id .. ".prefab"
+ ResourceManager:loadAsync(path, TypeOfGameObject, function(assetPath, prefab)
+ if parent and parent:isDestroyed() then
+ ResourceManager:destroyPrefab(prefab)
+ ResourceManager:unload(assetPath)
+ return
+ end
+
+ local characterObject = CharacterObject:create()
+ characterObject:initWithPrefab(assetPath, prefab, id)
+ characterObject:addUnloadCallback(function(obj)
+ ResourceManager:unload(obj:getAssetPath())
+ end)
+ if parent then
+ characterObject:setParent(parent, false)
+ end
+
+ local fsm = CharacterFSMManager:getFsm(characterObject)
+ characterObject:setCharacterFSM(fsm)
+
+ if callback then
+ callback(characterObject)
+ end
+ end)
+end
+
+function ModelManager:getHeroModelPathById(id)
+ return "assets/prefabs/models/characters/" .. id .. ".prefab"
+end
+
+function ModelManager:markCache(path)
+ if #self.heroCacheList >= HERO_CACHE_SIZE then
+ return false
+ end
+ if self.heroCacheMap[path] == nil then
+ self.heroCacheMap[path] = true
+ table.insert(self.heroCacheList, path)
+ return true
+ end
+ return false
+end
+
+function ModelManager:isCacheFull()
+ return #self.heroCacheList >= HERO_CACHE_SIZE
+end
+
+function ModelManager:clearCache()
+ for _, path in ipairs(self.heroCacheList) do
+ ResourceManager:unload(path)
+ end
+ self.heroCacheList = {}
+ self.heroCacheMap = {}
+end
+
+return ModelManager
\ No newline at end of file
diff --git a/lua/app/common/model_manager.lua.meta b/lua/app/common/model_manager.lua.meta
new file mode 100644
index 00000000..a25f66a0
--- /dev/null
+++ b/lua/app/common/model_manager.lua.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: a9dcf898d20140e4d92d50baccefc5e5
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/common/module_manager.lua b/lua/app/common/module_manager.lua
new file mode 100644
index 00000000..cd6c8736
--- /dev/null
+++ b/lua/app/common/module_manager.lua
@@ -0,0 +1,197 @@
+local ModuleManager = {}
+
+local MODULE_PATHS = {
+ LoginManager = "app/module/login/login_manager",
+ BattleManager = "app/module/battle/battle_manager",
+ TipsManager = "app/module/tips/tips_manager",
+ LoadingManager = "app/module/loading/loading_manager",
+ DevToolManager = "app/module/gm/dev_tool_manager",
+ MaincityManager = "app/module/maincity/maincity_manager",
+ SettingManager = "app/module/setting/setting_manager",
+ -- 引导
+ TutorialManager = "app/module/tutorial/tutorial_manager",
+ ToastManager = "app/ui/common/toast",
+ PlayerManager = "app/module/player/player_manager",
+ SummonManager = "app/module/summon/summon_manager",
+ -- 英雄
+ HeroManager = "app/module/hero/hero_manager",
+ -- 修炼
+ TrainManager = "app/module/train/train_manager",
+ -- 商城Manager
+ MallManager = "app/module/mall/mall_manager",
+ ItemManager = "app/module/item/item_manager",
+ MasteryManager = "app/module/mastery/mastery_manager",
+ MiningManager = "app/module/mining/mining_manager",
+ -- 章节关卡
+ ChapterManager = "app/module/chapter/chapter_manager",
+ -- 挂机
+ IdleManager = "app/module/idle/idle_manager",
+ -- 设置
+ GameSettingManager = "app/module/game_setting/game_setting_manager",
+ AudioManager = "app/module/game_setting/game_setting_manager",
+ DungeonManager = "app/module/dungeon/dungeon_manager",
+ ArenaManager = "app/module/arena_manager/arena_manager",
+ SignInManager = "app/module/signin/signin_manager",
+ DailyTaskManager = "app/module/activity/daily_task/daily_task_manager",
+ SevenDayManager = "app/module/activity/seven_day/seven_day_manager",
+ TaskManager = "app/module/task/task_manager",
+ ActivityManager = "app/module/activity/activity_manager",
+ BlessingManager = "app/module/blessing/blessing_manager",
+ TutorialTaskManager = "app/module/tutorial/tutorial_task_manager",
+ BountyManager = "app/module/bounty/bounty_manager",
+ CollectionManager = "app/module/collection/collection_manager",
+ MailManager = "app/module/mail/mail_manager",
+}
+
+-- 这里的key对应func_open里的id
+ModuleManager.MODULE_KEY = {
+ DUNGEON_GOLD = "dungeon_gold",
+ DUNGEON_DIAMOND = "dungeon_diamond",
+ DUNGEON_RUNE = "dungeon_rune",
+ DUNGEON_CHARACTERISTIC = "dungeon_characteristic",
+ ARENA = "arena",
+ SUMMON_WEAPON = "summon_weapon",
+ SUMMON_ARMOR = "summon_armor",
+ SUMMON_LEGACY = "summon_legacy",
+ MINE = "mine",
+ MINE_RESEARCH = "mine_research",
+ IDLE = "idle",
+ COMPREHEND = "comprehend",
+ QUICK_PASS = "quick_pass",
+ TRAIN = "train",
+ MASTERY = "mastery",
+ RUNES = "runes",
+ SHOP = "shop",
+ SEVENDAY = "sevenday",
+ SIGNIN = "signin",
+ TUTORIALTASK = "tutorialtask",
+ DAILYTASK = "dailytask",
+ BLESSING = "blessing",
+ EQUIP = "equip",
+ COLLECTION = "collection",
+ AUTO_FIGHT = "auto_fight",
+ HERO_OPEN = "hero_open",
+ WEAPON_OPEN = "weapon_open",
+ ARMOR_OPEN = "armor_open",
+ LEGACY_OPEN = "legacy_open",
+ BATTLE_PASS = "battle_pass",
+ BATTLE_SPEED_UP = "battle_speed_up",
+ POWER_SAVE_MODE = "save_power_open",
+ FUND_OPEN = "fund_open",
+ MAIL_OPEN = "mail_open",
+}
+
+local _moduleMgrs = {}
+
+local MODULE_METATABLE = {
+ __index = function(t, k)
+ local path = MODULE_PATHS[k]
+ if path == nil then
+ Logger.logError("%s path is not configure in ModuleManager.lua", k)
+ return
+ end
+ local v = require(path):create()
+ table.insert(_moduleMgrs, v)
+ rawset(t, k, v)
+ return v
+ end
+}
+setmetatable(ModuleManager, MODULE_METATABLE)
+
+function ModuleManager:init()
+ if EDITOR_MODE then
+ ---@type LoginManager
+ self.LoginManager = self.LoginManager or require("app/module/login/login_manager"):create()
+ ---@type BattleManager
+ self.BattleManager = self.BattleManager or require("app/module/battle/battle_manager"):create()
+ ---@type TipsManager
+ self.TipsManager = self.TipsManager or require("app/module/tips/tips_manager"):create()
+ ---@type MaincityManager
+ self.MaincityManager = self.MaincityManager or require("app/module/maincity/maincity_manager"):create()
+ ---@type SummonManager
+ self.SummonManager = self.SummonManager or require("app/module/summon/summon_manager"):create()
+ ---@type MallManager
+ self.MallManager = self.MallManager or require("app/module/mall/mall_manager"):create()
+ ---@type MiningManager
+ self.MiningManager = self.MiningManager or require("app/module/mining/mining_manager"):create()
+ ---@type DungeonManager
+ self.DungeonManager = self.DungeonManager or require("app/module/dungeon/dungeon_manager"):create()
+ ---@type ArenaManager
+ self.ArenaManager = self.ArenaManager or require("app/module/arena_manager/arena_manager"):create()
+ ---@type SignInManager
+ self.SignInManager = self.SignInManager or require("app/module/signin/signin_manager"):create()
+ end
+end
+
+-- 功能是否开启
+function ModuleManager:getIsOpen(key, hideToast)
+ local cfg = ConfigManager:getConfig("func_open")[key]
+ if cfg == nil then
+ return true
+ end
+ -- 优先判断等级
+ if cfg.level then
+ local isOpen = DataManager.PlayerData:getLv() >= cfg.level
+ if not hideToast and not isOpen then
+ GFunc.showToast(I18N:getGlobalText(I18N.GlobalConst.FUNC_OPEN_LEVEL, cfg.level))
+ end
+ return isOpen
+ elseif cfg.stage then -- 没有填等级字段就判断关卡
+ local isOpen = DataManager.ChapterData:getHistoryChapterId() >= cfg.stage
+ if not hideToast and not isOpen then
+ GFunc.showToast(I18N:getGlobalText(I18N.GlobalConst.FUNC_OPEN_STAGE, cfg.stage))
+ end
+ return isOpen
+ elseif cfg.task then -- 判断任务
+ local isOver = DataManager.TutorialTaskData:getTaskCollect(cfg.task)
+ if not hideToast and not isOver then
+ GFunc.showToast(I18N:getGlobalText(I18N.GlobalConst.FUNC_OPEN_TASK, cfg.task))
+ end
+ return isOver
+ end
+ return true
+end
+
+function ModuleManager:showPop(key)
+ local cfg = ConfigManager:getConfig("func_open")[key]
+ if not cfg then
+ return false
+ end
+ if cfg and cfg.pop_ups and cfg.pop_ups == 1 then
+ return false
+ end
+ return true
+end
+
+function ModuleManager:getNotOpenStr(key)
+ local cfg = ConfigManager:getConfig("func_open")[key]
+ if cfg == nil then
+ return GConst.EMPTY_STRING
+ end
+ -- 优先判断等级
+ if cfg.level then
+ return I18N:getGlobalText(I18N.GlobalConst.FUNC_OPEN_LEVEL, cfg.level)
+ elseif cfg.stage then -- 没有填等级字段就判断关卡
+ return I18N:getGlobalText(I18N.GlobalConst.FUNC_OPEN_STAGE, cfg.stage)
+ elseif cfg.task then
+ return I18N:getGlobalText(I18N.GlobalConst.FUNC_OPEN_TASK, cfg.task)
+ end
+ return GConst.EMPTY_STRING
+end
+
+function ModuleManager:getOpenStageId(key)
+ local cfg = ConfigManager:getConfig("func_open")[key]
+ if not cfg or cfg.level then
+ return
+ end
+
+ return cfg.stage
+end
+
+function ModuleManager:clear()
+ for k, v in ipairs(_moduleMgrs) do
+ v:_clear()
+ end
+end
+
+return ModuleManager
diff --git a/lua/app/common/module_manager.lua.meta b/lua/app/common/module_manager.lua.meta
new file mode 100644
index 00000000..4088a154
--- /dev/null
+++ b/lua/app/common/module_manager.lua.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 0d32af3473294284980d4fac90625efb
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/common/pay_manager.lua b/lua/app/common/pay_manager.lua
new file mode 100644
index 00000000..3453200b
--- /dev/null
+++ b/lua/app/common/pay_manager.lua
@@ -0,0 +1,205 @@
+local PayManager = class("PayManager", BaseModule)
+
+local BLESSING_GIFT_ID = 30001
+
+PayManager.PURCHARSE_TYPE = {
+ MALL_ACT = 1,
+ MALL_DAILY = 2,
+ MALL_TREASURE = 3,
+}
+
+PayManager.PURCHARSE_TYPE_CONFIG = {
+ [PayManager.PURCHARSE_TYPE.MALL_ACT] = "mall_act",
+ [PayManager.PURCHARSE_TYPE.MALL_DAILY] = "mall_daily",
+ [PayManager.PURCHARSE_TYPE.MALL_TREASURE] = "mall_treasure",
+}
+
+PayManager.BI_ITEM_GET_TYPE = {
+ [PayManager.PURCHARSE_TYPE.MALL_ACT] = {
+ [ModuleManager.MallManager.MALL_ACT_TYPE.MALL_POP_GIFT] = BIReport.ITEM_GET_TYPE.MALL_POP_GIFT,
+ [ModuleManager.MallManager.MALL_ACT_TYPE.MALL_SKIP_AD_GIFT] = BIReport.ITEM_GET_TYPE.MALL_SKIP_AD_GIFT,
+ [ModuleManager.MallManager.MALL_ACT_TYPE.MALL_SUBSCRIBE_BLESSING_GIFT] = BIReport.ITEM_GET_TYPE.MALL_SUBSCRIBE_BLESSING_GIFT,
+ [ModuleManager.MallManager.MALL_ACT_TYPE.MALL_MONTH_CARD] = BIReport.ITEM_GET_TYPE.MALL_MONTH_CARD,
+ [ModuleManager.MallManager.MALL_ACT_TYPE.MALL_LIMIT_GIFT] = BIReport.ITEM_GET_TYPE.MALL_LIMIT_GIFT,
+ [ModuleManager.MallManager.MALL_ACT_TYPE.MALL_FIRST_RECHARGE_GIFT] = BIReport.ITEM_GET_TYPE.MALL_FIRST_RECHARGE_GIFT,
+ [ModuleManager.MallManager.MALL_ACT_TYPE.MALL_CHAPTER_FUND] = BIReport.ITEM_GET_TYPE.MALL_CHAPTER_FUND,
+ [ModuleManager.MallManager.MALL_ACT_TYPE.MALL_BATTLE_PASS] = BIReport.ITEM_GET_TYPE.MALL_BATTLE_PASS,
+ },
+ [PayManager.PURCHARSE_TYPE.MALL_DAILY] = {
+ [1] = BIReport.ITEM_GET_TYPE.DAILY_GIFT,
+ [2] = BIReport.ITEM_GET_TYPE.WEEKLY_GIFT,
+ },
+ [PayManager.PURCHARSE_TYPE.MALL_TREASURE] = BIReport.ITEM_GET_TYPE.MALL_TREASURE,
+}
+
+PayManager.BI_GIFT_TYPE = {
+ [PayManager.PURCHARSE_TYPE.MALL_ACT] = {
+ [ModuleManager.MallManager.MALL_ACT_TYPE.MALL_POP_GIFT] = BIReport.GIFT_TYPE.MALL_POP_GIFT,
+ [ModuleManager.MallManager.MALL_ACT_TYPE.MALL_SKIP_AD_GIFT] = BIReport.GIFT_TYPE.MALL_SKIP_AD_GIFT,
+ [ModuleManager.MallManager.MALL_ACT_TYPE.MALL_SUBSCRIBE_BLESSING_GIFT] = BIReport.GIFT_TYPE.MALL_SUBSCRIBE_BLESSING_GIFT,
+ [ModuleManager.MallManager.MALL_ACT_TYPE.MALL_MONTH_CARD] = BIReport.GIFT_TYPE.MALL_MONTH_CARD,
+ [ModuleManager.MallManager.MALL_ACT_TYPE.MALL_LIMIT_GIFT] = BIReport.GIFT_TYPE.MALL_LIMIT_GIFT,
+ [ModuleManager.MallManager.MALL_ACT_TYPE.MALL_FIRST_RECHARGE_GIFT] = BIReport.GIFT_TYPE.MALL_FIRST_RECHARGE_GIFT,
+ [ModuleManager.MallManager.MALL_ACT_TYPE.MALL_CHAPTER_FUND] = BIReport.GIFT_TYPE.MALL_CHAPTER_FUND,
+ [ModuleManager.MallManager.MALL_ACT_TYPE.MALL_BATTLE_PASS] = BIReport.GIFT_TYPE.MALL_BATTLE_PASS,
+ },
+ [PayManager.PURCHARSE_TYPE.MALL_DAILY] = {
+ [1] = BIReport.GIFT_TYPE.DAILY_GIFT,
+ [2] = BIReport.GIFT_TYPE.WEEKLY_GIFT,
+ },
+ [PayManager.PURCHARSE_TYPE.MALL_TREASURE] = BIReport.GIFT_TYPE.MALL_TREASURE,
+}
+
+function PayManager:getItemGetType(purchaseType, id)
+ local cfgName = PayManager.PURCHARSE_TYPE_CONFIG[purchaseType]
+ if not cfgName then
+ return
+ end
+ local cfg = ConfigManager:getConfig(cfgName)
+ local typeMap = PayManager.BI_ITEM_GET_TYPE[purchaseType]
+ if not cfg or not cfg[id] or not typeMap then
+ return
+ end
+ local subType = cfg[id].type
+ if subType then
+ return typeMap[cfg[id].type]
+ else
+ if type(typeMap) ~= "table" then
+ return typeMap
+ end
+ end
+end
+
+function PayManager:getGiftType(purchaseType, id)
+ local cfgName = PayManager.PURCHARSE_TYPE_CONFIG[purchaseType]
+ if not cfgName then
+ return
+ end
+ local cfg = ConfigManager:getConfig(cfgName)
+ local typeMap = PayManager.BI_GIFT_TYPE[purchaseType]
+ if not cfg or not cfg[id] or not typeMap then
+ return
+ end
+ local subType = cfg[id].type
+ if subType then
+ return typeMap[cfg[id].type]
+ else
+ if type(typeMap) ~= "table" then
+ return typeMap
+ end
+ end
+end
+
+function PayManager:purchasePackage(id, purchaseType)
+ local cfgName = PayManager.PURCHARSE_TYPE_CONFIG[purchaseType]
+ if not cfgName then
+ return
+ end
+ local cfg = ConfigManager:getConfig(cfgName)
+ if not cfg or not cfg[id] then
+ return
+ end
+
+ local rechargeId = cfg[id].recharge_id
+ local giftType = PayManager:getGiftType(purchaseType, id)
+ local productId
+ if rechargeId then
+ local rechargeCfg = ConfigManager:getConfig("recharge")[rechargeId]
+ if rechargeCfg == nil then
+ return
+ end
+ productId = rechargeCfg.payId
+ BIReport:postPayClick(giftType, id, rechargeId)
+ end
+ self:checkAndPay(productId, id, purchaseType, rechargeId)
+end
+
+function PayManager:requestRewards(purchaseToken, orderId, originOrderId, giftType, id, rechargeId)
+ self:sendMsgToServer(purchaseToken, orderId, function(binder, msgData)
+ if msgData.status == 0 then
+ if msgData.rewards and table.nums(msgData.rewards) > 0 then -- 奖励改到邮件领取
+ GFunc.showRewardBox(msgData.rewards)
+ end
+ BIReport:postPayGet(giftType, id, rechargeId, orderId, originOrderId, 1, msgData.rewards or {})
+ local rechargeCfg = ConfigManager:getConfig("recharge")[rechargeId]
+ if rechargeCfg then
+ BIReport:postPurchase(rechargeCfg.price, rechargeCfg.payId, originOrderId, orderId)
+ end
+
+ table.foreach(msgData.gift, function(i, gift)
+ local rechargeId = DataManager.ShopData:getShopItemCfg(gift).recharge_id
+ DataManager.PlayerData:setPaymentCount(rechargeId)
+ DataManager.ShopData:updateGiftInfo(gift)
+
+ if gift.mall_type == PayManager.PURCHARSE_TYPE.MALL_ACT and gift.id == BLESSING_GIFT_ID then
+ DataManager.BlessingData:onBuyGift()
+ end
+ end)
+
+ -- 支付验证成功后消耗此订单
+ if purchaseToken then
+ SDKManager:consumePurchase(purchaseToken)
+ end
+ elseif msgData.status == 1010 then -- 验证异常,但是需要消耗订单
+ if purchaseToken then
+ SDKManager:consumePurchase(purchaseToken)
+ end
+ Logger.logError("重复验证")
+ else
+ Logger.logError("支付验证失败:%s", msgData.status)
+ local params = {
+ content = I18N:getGlobalText(I18N.GlobalConst.PAY_FAILED_DESC_1),
+ boxType = GConst.MESSAGE_BOX_TYPE.MB_OK,
+ okText = I18N:getGlobalText(I18N.GlobalConst.BTN_TEXT_OK),
+ }
+ GFunc.showMessageBox(params)
+ end
+ end)
+end
+
+function PayManager:checkAndPay(productId, id, purchaseType, rechargeId)
+ -- 检查是否可以支付
+ SDKManager:checkPay(productId, function(code)
+ if code == 0 then
+ self:sendMessage(ProtoMsgType.FromMsgEnum.MallPayReq, {id = id, mall_type = purchaseType}, {}, function(binder, msgData)
+ if msgData.status == 0 then
+ if msgData.uuid and msgData.uuid ~= GConst.EMPTY_STRING then
+ local giftType = PayManager:getGiftType(purchaseType, id)
+ BIReport:postPayTurn(giftType, id, rechargeId)
+ SDKManager:pay(productId, msgData.uuid, rechargeId, giftType, function(purchaseToken, orderId, originOrderId)
+ if purchaseToken and orderId then
+ self:requestRewards(purchaseToken, orderId, originOrderId, giftType, id, rechargeId)
+ end
+ end)
+ else -- 没有支付信息,直接发奖
+ if table.nums(msgData.rewards) > 0 then
+ GFunc.showRewardBox(msgData.rewards)
+ end
+ local giftData = {}
+ giftData.mall_type = msgData.mall_type
+ giftData.id = msgData.id
+ giftData.buy_count = DataManager.ShopData:getGiftBoughtNum(msgData.id, msgData.mall_type) + 1
+ giftData.latest_buy_at = Time:getServerTime() * 1000 -- 服务器都是毫秒
+ DataManager.ShopData:updateGiftInfo(giftData)
+ end
+ else
+ Logger.logError("预支付失败")
+ end
+ end)
+ end
+ end)
+end
+
+function PayManager:sendMsgToServer(purchaseToken, orderId, callback)
+ local args = {
+ uuid = {orderId},
+ channel = SDKManager:getSDKPayType(),
+ pay_token = purchaseToken
+ }
+ if EDITOR_MODE then
+ args.channel = SDKManager.PAY_TYPE.DEBUG
+ end
+ self:sendMessage(ProtoMsgType.FromMsgEnum.MallPaidResultReq, args, {}, callback)
+end
+
+return PayManager
\ No newline at end of file
diff --git a/lua/app/common/pay_manager.lua.meta b/lua/app/common/pay_manager.lua.meta
new file mode 100644
index 00000000..101807fe
--- /dev/null
+++ b/lua/app/common/pay_manager.lua.meta
@@ -0,0 +1,10 @@
+fileFormatVersion: 2
+guid: 64949f07ee1970147a70f0f73ef268d0
+ScriptedImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 2
+ userData:
+ assetBundleName:
+ assetBundleVariant:
+ script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
diff --git a/lua/app/common/platform.lua b/lua/app/common/platform.lua
new file mode 100644
index 00000000..d4ae73f9
--- /dev/null
+++ b/lua/app/common/platform.lua
@@ -0,0 +1,100 @@
+local Platform = {}
+
+local bfGateInfo = CS.BF.BFPlatform.GetCurrentGateInfo()
+Platform.bfGateInfo = bfGateInfo
+
+---- 获取包名
+function Platform:getIdentifier()
+ return CS.UnityEngine.Application.identifier
+end
+
+---- 是否是内网包
+function Platform:getIsDevChannel()
+ return CS.BF.BFPlatform.IsDevChannel()
+end
+
+---- 是否是release包
+function Platform:getIsReleaseChannel()
+ return CS.BF.BFPlatform.IsReleaseChannel()
+end
+
+---- 是否是发布渠道
+function Platform:getIsPublishChannel()
+ return CS.BF.BFPlatform.IsPublishChannel()
+end
+
+---- 获取主链接域名
+function Platform:getMainDomain()
+ return bfGateInfo.mainDomain
+end
+
+---- 获取主链接端口
+function Platform:getMainPort()
+ return bfGateInfo.mainPort
+end
+
+-- 平台
+function Platform:getPlatform()
+ if self._platform then
+ return self._platform
+ end
+ if CS.UnityEngine.Application.platform == CS.UnityEngine.RuntimePlatform.Android then
+ self._platform = "Android"
+ elseif CS.UnityEngine.Application.platform == CS.UnityEngine.RuntimePlatform.IPhonePlayer then
+ self._platform = "iOS"
+ elseif CS.UnityEngine.Application.platform == CS.UnityEngine.RuntimePlatform.OSXEditor then
+ self._platform = "Mac"
+ elseif CS.UnityEngine.Application.platform == CS.UnityEngine.RuntimePlatform.OSXPlayer then
+ self._platform = "Mac"
+ elseif CS.UnityEngine.Application.platform == CS.UnityEngine.RuntimePlatform.WindowsEditor then
+ self._platform = "Windows"
+ elseif CS.UnityEngine.Application.platform == CS.UnityEngine.RuntimePlatform.WindowsPlayer then
+ self._platform = "Windows"
+ else
+ self._platform = "Unknow"
+ end
+ return self._platform
+end
+
+-- 获取当前版本号
+function Platform:getClientVersion()
+ if self.clientVersion == nil then
+ self.clientVersion = CS.BF.BFMain.Instance.GameLaunchMgr:GetCurrentVersion()
+ end
+ return self.clientVersion
+end
+
+-- 获取并处理当前版本号 例:1.3.2 => 1*1000000 + 3 * 1000 + 2 = 1003002
+function Platform:getClientVersionNum()
+ local version = Platform:getClientVersion()
+ local versionStrs = string.split(version, ".")
+ local versionNum1 = tonumber(versionStrs[1])
+ local versionNum2 = tonumber(versionStrs[2])
+ local versionNum3 = tonumber(versionStrs[3])
+
+ return versionNum1 * 1000000 + versionNum2 * 1000 + versionNum3
+end
+
+function Platform:isIosPlatform()
+ return self:getPlatform() == "iOS"
+end
+
+function Platform:isAndroidPlatform()
+ return self:getPlatform() == "Android"
+end
+
+-- 联网需求后端需要的平台字符串
+function Platform:getPlatformStr()
+ if self.platformStr == nil then
+ if self:isIosPlatform() then
+ self.platformStr = "IOS"
+ elseif self:isAndroidPlatform() then
+ self.platformStr = "Android"
+ else
+ self.platformStr = "Unity"
+ end
+ end
+ return self.platformStr
+end
+
+return Platform
\ No newline at end of file
diff --git a/lua/app/common/platform.lua.meta b/lua/app/common/platform.lua.meta
new file mode 100644
index 00000000..a618b631
--- /dev/null
+++ b/lua/app/common/platform.lua.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 9d8a481d7f7038b41a31ebe11b525efb
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/common/render_manager.lua b/lua/app/common/render_manager.lua
new file mode 100644
index 00000000..bfb153bc
--- /dev/null
+++ b/lua/app/common/render_manager.lua
@@ -0,0 +1,195 @@
+local RenderConst = require "app/global/render_const"
+
+local BFRenderMgr = CS.BF.BFMain.Instance.RenderMgr
+local RenderManager = {}
+
+RenderManager.POST_EFFECT_TYPE = {
+ BLOOM = 1,
+ VIVID_BLOOM = 2,
+ FXAA = 4,
+}
+
+local SUPPORTS_INSTANCING = CS.UnityEngine.SystemInfo.supportsInstancing
+
+local SHADER_VARIANT_PATH = "assets/arts/shaders/shader_variants.shadervariants"
+local UI_DEFAULT_MAT_PATH = "assets/arts/materials/ui/ui_default.mat"
+local UI_TUTORIAL_MAT_PATH = "assets/arts/materials/ui/ui_tutorial.mat"
+local MESH_OUTLINE_FILL_MAT_PATH = "assets/arts/materials/mesh/outline_fill.mat"
+local MESH_OUTLINE_MASK_MAT_PATH = "assets/arts/materials/mesh/outline_mask.mat"
+local BLUR_MAT_PATH = "assets/arts/materials/post_effect/blur.mat"
+local VIVID_BLOOM_MAT_PATH = "assets/arts/materials/post_effect/vivid_bloom.mat"
+local BLIT_COPY_MAT_PATH = "assets/arts/materials/post_effect/blit_copy.mat"
+local FXAA_MAT_PATH = "assets/arts/materials/post_effect/fxaa.mat"
+local RADIAL_BLUR_MAT_PATH = "assets/arts/materials/post_effect/radial_blur.mat"
+
+local TypeOfShaderVariantCollection = typeof(CS.UnityEngine.ShaderVariantCollection)
+local TypeOfMaterial = typeof(CS.UnityEngine.Material)
+local TypeOfPostEffectBehaviour = typeof(CS.BF.PostEffectBehaviour)
+
+function RenderManager:initRender(callBack)
+ if self.renderInited then
+ callBack()
+ return
+ end
+ self.renderInited = true
+ if USE_AB then
+ local time = os.clock()
+ ResourceManager:loadOriginAssetAsync(SHADER_VARIANT_PATH, TypeOfShaderVariantCollection, function(assetPath, asset)
+ asset:WarmUp()
+ self:initMaterials(callBack)
+ Logger.log("init render use time " .. (os.clock() - time))
+ end)
+ else
+ self:initMaterials(callBack)
+ end
+end
+
+function RenderManager:initMaterials(callback)
+ local loadCount = 4
+
+ ResourceManager:loadOriginAssetAsync(UI_DEFAULT_MAT_PATH, TypeOfMaterial, function(path, material)
+ self.uiDefaultMat = material
+ BFRenderMgr:SetUIDefaultMat(self.uiDefaultMat)
+ loadCount = loadCount - 1
+ if loadCount == 0 then
+ callback()
+ end
+ end)
+
+ ResourceManager:loadOriginAssetAsync(UI_TUTORIAL_MAT_PATH, TypeOfMaterial, function(path, material)
+ self.uiTutorialMat = material
+ BFRenderMgr:SetUITutorialMat(self.uiTutorialMat)
+ loadCount = loadCount - 1
+ if loadCount == 0 then
+ callback()
+ end
+ end)
+
+ ResourceManager:loadOriginAssetAsync(MESH_OUTLINE_FILL_MAT_PATH, TypeOfMaterial, function(path, material)
+ self.meshOutlineFillMat = material
+ BFRenderMgr:SetMeshOutlineFillMat(self.meshOutlineFillMat)
+ loadCount = loadCount - 1
+ if loadCount == 0 then
+ callback()
+ end
+ end)
+
+ ResourceManager:loadOriginAssetAsync(MESH_OUTLINE_MASK_MAT_PATH, TypeOfMaterial, function(path, material)
+ self.meshOutlineMaskMat = material
+ BFRenderMgr:SetMeshOutlineMaskMat(self.meshOutlineMaskMat)
+ loadCount = loadCount - 1
+ if loadCount == 0 then
+ callback()
+ end
+ end)
+
+ -- ResourceManager:loadOriginAssetAsync(BLUR_MAT_PATH, TypeOfMaterial, function(path, material)
+ -- self.blurMat = material
+ -- BFRenderMgr:SetBlurMat(self.blurMat)
+ -- loadCount = loadCount - 1
+ -- if loadCount == 0 then
+ -- callback()
+ -- end
+ -- end)
+
+ -- ResourceManager:loadOriginAssetAsync(VIVID_BLOOM_MAT_PATH, TypeOfMaterial, function(path, material)
+ -- self.vividBloomMat = material
+ -- BFRenderMgr:SetVividBloomMat(self.vividBloomMat)
+ -- loadCount = loadCount - 1
+ -- if loadCount == 0 then
+ -- callback()
+ -- end
+ -- end)
+
+ -- ResourceManager:loadOriginAssetAsync(BLIT_COPY_MAT_PATH, TypeOfMaterial, function(path, material)
+ -- self.blitCopyMat = material
+ -- BFRenderMgr:SetBlitCopyMat(self.blitCopyMat)
+ -- loadCount = loadCount - 1
+ -- if loadCount == 0 then
+ -- callback()
+ -- end
+ -- end)
+
+ -- ResourceManager:loadOriginAssetAsync(FXAA_MAT_PATH, TypeOfMaterial, function(path, material)
+ -- self.fxaaMat = material
+ -- BFRenderMgr:SetFxaaMat(self.fxaaMat)
+ -- loadCount = loadCount - 1
+ -- if loadCount == 0 then
+ -- callback()
+ -- end
+ -- end)
+
+ -- ResourceManager:loadOriginAssetAsync(RADIAL_BLUR_MAT_PATH, TypeOfMaterial, function(path, material)
+ -- self.radialBlurMat = material
+ -- BFRenderMgr:SetRadialBlur(self.radialBlurMat)
+ -- loadCount = loadCount - 1
+ -- if loadCount == 0 then
+ -- callback()
+ -- end
+ -- end)
+end
+
+function RenderManager:loadShaderAsync(shaderPath, callBack)
+ ResourceManager:loadOriginAssetAsync(shaderPath, GConst.TYPEOF_UNITY_CLASS.SHADER, callBack)
+end
+
+function RenderManager:unloadShader(shaderPath, immediately)
+ ResourceManager:unload(shaderPath, immediately)
+end
+
+function RenderManager:loadMaterialAsync(materialPath, callBack)
+ ResourceManager:loadOriginAssetAsync(materialPath, GConst.TYPEOF_UNITY_CLASS.MATERIAL, callBack)
+end
+
+function RenderManager:unloadMaterial(materialPath, immediately)
+ ResourceManager:unload(materialPath, immediately)
+end
+
+function RenderManager:closePostEffect(effectType, camera)
+ BFRenderMgr:ClosePostEffect(effectType, camera)
+end
+
+function RenderManager:closeFxaa(camera)
+ self:closePostEffect(RenderManager.POST_EFFECT_TYPE.FXAA, camera)
+end
+
+---- 传入一张图,返回高斯模糊图
+function RenderManager:getBlurTexture(texture, width, height, iteration)
+ if not iteration then
+ iteration = 4
+ end
+
+ if not self.blurSizeID then
+ self.blurSizeID = CS.UnityEngine.Shader.PropertyToID("_BlurSize")
+ end
+
+ local CSRenderTexture = CS.UnityEngine.RenderTexture
+ local CSGraphics = CS.UnityEngine.Graphics
+ local rt0 = CSRenderTexture.GetTemporary(width, height)
+
+ for i = 1, iteration do
+ self.blurMat:SetFloat(self.blurSizeID, i)
+ local rt1 = CSRenderTexture.GetTemporary(width, height)
+ if i == 1 then
+ CSGraphics.Blit(texture, rt1, self.blurMat, 0)
+ else
+ CSGraphics.Blit(rt0, rt1, self.blurMat, 0)
+ end
+ CSRenderTexture.ReleaseTemporary(rt0)
+ rt0 = CSRenderTexture.GetTemporary(width, height)
+ CSGraphics.Blit(rt1, rt0, self.blurMat, 1)
+ CSRenderTexture.ReleaseTemporary(rt1)
+ end
+ return rt0
+end
+
+---- 是否支持gpu instancing
+function RenderManager:isSupportInstancing()
+ return SUPPORTS_INSTANCING
+end
+
+function RenderManager:getUITutorialMat()
+ return self.uiTutorialMat
+end
+
+return RenderManager
\ No newline at end of file
diff --git a/lua/app/common/render_manager.lua.meta b/lua/app/common/render_manager.lua.meta
new file mode 100644
index 00000000..ef9e2351
--- /dev/null
+++ b/lua/app/common/render_manager.lua.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: accb08450dac62b4bb82e2b51dfd4424
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/common/resource_manager.lua b/lua/app/common/resource_manager.lua
new file mode 100644
index 00000000..a30ff9b7
--- /dev/null
+++ b/lua/app/common/resource_manager.lua
@@ -0,0 +1,115 @@
+local ResourceManager = {
+ sceneAbPath = {}
+}
+
+local AB_SUFFIX = ".ab"
+
+local ResMgr = CS.BF.BFMain.Instance.ResMgr
+
+function ResourceManager:getSceneAssetBundlePath(path)
+ local abPath = self.sceneAbPath[path]
+ if abPath == nil then
+ local start_index = string.find(path, '/')
+ if start_index == nil then
+ abPath = path .. AB_SUFFIX
+ else
+ abPath = string.sub(path, start_index + 1) .. AB_SUFFIX
+ end
+ self.sceneAbPath[path] = abPath
+ end
+ return abPath
+end
+
+function ResourceManager:getSceneLoadPath(scenePath)
+ if USE_AB then
+ return ResMgr:GetSceneLoadPath(self:getSceneAssetBundlePath(scenePath))
+ else
+ return scenePath:gsub("^%l", string.upper)
+ end
+end
+
+function ResourceManager:loadAsync(path, type, callback)
+ return self:loadOriginAssetAsync(path, type, function(assetPath, asset)
+ local obj = CS.UnityEngine.Object.Instantiate(asset)
+ callback(assetPath, obj)
+ end)
+end
+
+function ResourceManager:loadOriginAssetAsync(path, type, callback)
+ return ResMgr:LoadAsync(path, type, callback)
+end
+
+function ResourceManager:loadSceneAsync(scenePath, callback)
+ ResMgr:LoadSceneAsync(self:getSceneAssetBundlePath(scenePath), callback)
+end
+
+function ResourceManager:unloadScene(path)
+ ResMgr:UnloadScene(self:getSceneAssetBundlePath(path))
+end
+
+function ResourceManager:unload(path, immediately)
+ if immediately then
+ ResMgr:Unload(path, true)
+ else
+ ResMgr:Unload(path, false)
+ end
+end
+
+function ResourceManager:unloadAllDelayAssets()
+ ResMgr:UnloadAllDelayAssets()
+end
+
+function ResourceManager:clear()
+ ResMgr:Clear()
+end
+
+function ResourceManager:destroyPrefab(prefab)
+ CS.UnityEngine.Object.Destroy(prefab)
+end
+
+function ResourceManager:containsAsset(assetPath)
+ return ResMgr:ContainsAsset(assetPath)
+end
+
+if NOT_PUBLISH then
+ ResourceManager._ReleaseloadOriginAssetAsync = ResourceManager.loadOriginAssetAsync
+ function ResourceManager:loadOriginAssetAsync(path, type, callback)
+ local function checkAsset(assetPath, asset)
+ if asset == nil then
+ Logger.logError("[LOAD_ERROR]load error:%s", assetPath)
+ end
+ callback(assetPath, asset)
+ end
+ self:_ReleaseloadOriginAssetAsync(path, type, checkAsset)
+ end
+
+ ResourceManager._ReleaseloadAsync = ResourceManager.loadAsync
+ function ResourceManager:loadAsync(...)
+ if self._debugLoadAsyncFuncMap == nil then
+ self._debugLoadAsyncFuncMap = {
+ [UIPrefabManager.loadUIWidgetAsync] = true,
+ [EffectManager.loadUIEffectAsync] = true,
+ [EffectManager.loadEffectAsync] = true,
+ [EffectManager.loadBattleEffectAsync] = true,
+ [EffectManager.loadHeroShowEffectAsync] = true,
+ [ModelManager.loadHeroAsync] = true,
+ [ModelManager.loadWeaponAsync] = true,
+ [ModelManager.loadModelAsync] = true,
+ [ModelManager.loadHeroShowAsync] = true,
+ [ModelManager.loadMonsterAsync] = true,
+ [SpineManager.loadUISpinePrefabAsync] = true,
+ [SpineManager.loadMeshSpinePrefabAsync] = true,
+ [SpineManager.loadHeroAsync] = true,
+ [SpineManager.loadBattleEffectAsync] = true,
+ }
+ end
+ local currFunc = debug.getinfo(2, "f").func
+ if self._debugLoadAsyncFuncMap[currFunc] == nil then
+ Logger.logFatal("you can not call ResourceManager:loadAsync directly")
+ end
+ self:_ReleaseloadAsync(...)
+ end
+end
+
+
+return ResourceManager
\ No newline at end of file
diff --git a/lua/app/common/resource_manager.lua.meta b/lua/app/common/resource_manager.lua.meta
new file mode 100644
index 00000000..c1828caa
--- /dev/null
+++ b/lua/app/common/resource_manager.lua.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 7864dee2e1d007244b1cb5fac876cf94
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/common/safe_area_manager.lua b/lua/app/common/safe_area_manager.lua
new file mode 100644
index 00000000..f96eed4d
--- /dev/null
+++ b/lua/app/common/safe_area_manager.lua
@@ -0,0 +1,25 @@
+local SafeAreaManager = {}
+
+local NOTCH_SCREEN_SIMULATE = "NOTCH_SCREEN_SIMULATE";
+
+local DESIGN_WIDTH = 720
+local DESIGN_HEIGHT = 1280
+
+-- 获取刘海高度
+function SafeAreaManager:getNotchScreenHeight()
+ -- local notchHeight = CS.BF.SafeAreaManager.GetNotchScreenHeight()
+ -- local width, height = GFunc.getScreenSize()
+ -- local sw = width / DESIGN_WIDTH -- 0.64
+ -- local sh = height / DESIGN_HEIGHT -- 0.52
+ -- local minScale = 1
+ -- if sw < sh then
+ -- minScale = sw
+ -- else
+ -- minScale = sh
+ -- end
+ -- return notchHeight / minScale
+ -- 此项目不用处理刘海屏适配
+ return 0
+end
+
+return SafeAreaManager
\ No newline at end of file
diff --git a/lua/app/common/safe_area_manager.lua.meta b/lua/app/common/safe_area_manager.lua.meta
new file mode 100644
index 00000000..e8917fe2
--- /dev/null
+++ b/lua/app/common/safe_area_manager.lua.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 931388e31bda5984786825014172b52a
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/common/scheduler_manager.lua b/lua/app/common/scheduler_manager.lua
new file mode 100644
index 00000000..d23049b8
--- /dev/null
+++ b/lua/app/common/scheduler_manager.lua
@@ -0,0 +1,187 @@
+local SchedulerManager = {
+ crossDayCallbackMap = {}
+}
+
+local schedulerMap = {}
+local waitRemoveList = {}
+local waitSchedulerList = {}
+local totalSid = 0
+local totalNum = 0
+
+local CSTime = CS.UnityEngine.Time
+
+function SchedulerManager:update()
+ if totalNum > 0 then
+ --这里直接使用deltaTime可能有点不够精确,因为计时开始的时间不一定是上一帧准点
+ local inter = CSTime.deltaTime or 0
+ for sid, info in pairs(schedulerMap) do
+ if not info.needRemove and not info.pause then
+ info.tick = info.tick + inter
+ if info.tick >= info.inter then
+ info.tick = info.tick - info.inter
+ local stop = not info.rep
+ -- 先设置为true避免func里面报错导致每帧调用都会报错
+ info.needRemove = true
+ if info.func then
+ local s = info.func(inter)
+ stop = stop or s
+ if stop then
+ self:unscheduleGlobal(sid)
+ else
+ info.needRemove = false
+ end
+ else
+ self:unscheduleGlobal(sid)
+ end
+ end
+ end
+ end
+ end
+
+ if self.dirty then
+ self.dirty = false
+ for i = 1, #waitRemoveList do
+ local sid = table.remove(waitRemoveList)
+ if schedulerMap[sid] then
+ schedulerMap[sid] = nil
+ totalNum = totalNum - 1
+ end
+ end
+ for i = 1, #waitSchedulerList do
+ local info = table.remove(waitSchedulerList)
+ schedulerMap[info.sid] = info
+ totalNum = totalNum + 1
+ end
+ end
+end
+
+function SchedulerManager:_startSchedule(func, inter, rep)
+ totalSid = totalSid + 1
+ local info = {sid = totalSid, inter = inter or 0, tick = 0, func = func, rep = rep}
+ table.insert(waitSchedulerList, info)
+ self.dirty = true
+ return totalSid
+end
+
+-- 此方法不能直接在外部调用,请使用例如BaseUI,BaseModule等封装好的接口
+function SchedulerManager:scheduleGlobal(func, inter)
+ return self:_startSchedule(func, inter, true)
+end
+
+-- 此方法不能直接在外部调用,请使用例如BaseUI,BaseModule等封装好的接口
+function SchedulerManager:performWithDelayGlobal(func, delay)
+ return self:_startSchedule(func, delay, false)
+end
+
+function SchedulerManager:unscheduleGlobal(sid)
+ local info = schedulerMap[sid]
+ if info then
+ info.needRemove = true
+ info.waitRemove = true
+ table.insert(waitRemoveList, sid)
+ self.dirty = true
+ else
+ for k, v in ipairs(waitSchedulerList) do
+ if sid == v.sid then
+ table.remove(waitSchedulerList, k)
+ break
+ end
+ end
+ end
+end
+
+function SchedulerManager:pause(sid)
+ local info = schedulerMap[sid]
+ if info then
+ if not info.pause and not info.waitRemove then
+ info.pause = true
+ end
+ else
+ for k, v in ipairs(waitSchedulerList) do
+ if sid == v.sid then
+ if not v.pause and not v.waitRemove then
+ v.pause = true
+ end
+ break
+ end
+ end
+ end
+end
+
+function SchedulerManager:resume(sid)
+ local info = schedulerMap[sid]
+ if info then
+ if info.pause and not info.waitRemove then
+ info.pause = false
+ end
+ else
+ for k, v in ipairs(waitSchedulerList) do
+ if sid == v.sid then
+ if v.pause and not v.waitRemove then
+ v.pause = false
+ end
+ break
+ end
+ end
+ end
+end
+
+function SchedulerManager:unscheduleAll()
+ schedulerMap = {}
+ waitRemoveList = {}
+ waitSchedulerList = {}
+ totalNum = 0
+ self.dirty = false
+end
+
+function SchedulerManager:clear()
+ self:unscheduleAll()
+end
+
+if NOT_PUBLISH then
+ function SchedulerManager:_checkDebugScheduleFuncMap()
+ if self._debugScheduleFuncMap == nil then
+ local ScrollRectBase = require "app/ui/common/scrollrect/scrollrect_base"
+ self._debugScheduleFuncMap = {
+ [BaseUI.performWithDelayGlobal] = true,
+ [BaseUI.scheduleGlobal] = true,
+ [BaseScene.performWithDelayGlobal] = true,
+ [BaseScene.scheduleGlobal] = true,
+ [BaseModule.performWithDelayGlobal] = true,
+ [BaseModule.scheduleGlobal] = true,
+ [BaseObject.performWithDelayGlobal] = true,
+ [BaseObject.scheduleGlobal] = true,
+ [SceneManager.scheduleGlobal] = true,
+ [SDKManager.doNextFrame] = true,
+ [SDKManager.initPayListener] = true,
+ [SDKManager.tryLoadRewardedAdDelay] = true,
+ [ScrollRectBase.refillCells] = true,
+ [DataManager.scheduleGlobal] = true,
+ [NetManager.performWithDelayGlobal] = true,
+ [NetManager.scheduleGlobal] = true,
+ }
+ end
+ end
+
+ SchedulerManager._releaseScheduleGlobal = SchedulerManager.scheduleGlobal
+ function SchedulerManager:scheduleGlobal(...)
+ self:_checkDebugScheduleFuncMap()
+ local currFunc = debug.getinfo(2, "f").func
+ if self._debugScheduleFuncMap[currFunc] == nil then
+ Logger.logFatal("you can not call SchedulerManager:scheduleGlobal directly")
+ end
+ return self:_releaseScheduleGlobal(...)
+ end
+
+ SchedulerManager._releasePerformWithDelayGlobal = SchedulerManager.performWithDelayGlobal
+ function SchedulerManager:performWithDelayGlobal(...)
+ self:_checkDebugScheduleFuncMap()
+ local currFunc = debug.getinfo(2, "f").func
+ if self._debugScheduleFuncMap[currFunc] == nil then
+ Logger.logFatal("you can not call SchedulerManager:performWithDelayGlobal directly")
+ end
+ return self:_releasePerformWithDelayGlobal(...)
+ end
+end
+
+return SchedulerManager
\ No newline at end of file
diff --git a/lua/app/common/scheduler_manager.lua.meta b/lua/app/common/scheduler_manager.lua.meta
new file mode 100644
index 00000000..f172dd4b
--- /dev/null
+++ b/lua/app/common/scheduler_manager.lua.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: b3781404e1c8481469887c4f5777c276
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/common/sdk_manager.lua b/lua/app/common/sdk_manager.lua
new file mode 100644
index 00000000..8c0ecce4
--- /dev/null
+++ b/lua/app/common/sdk_manager.lua
@@ -0,0 +1,465 @@
+local SDKManager = {
+ startLoginTime = 0
+}
+
+-- 新版本SDK部分 ********************************************************
+
+SDKManager.BF_LOGIN_TYPE = {
+ NONE = 0,
+ TOKEN = 1,
+ GUEST = 2,
+ FACEBOOK = 3,
+ TEST = 4,
+ GOOGLE = 5,
+ APPLE = 6
+}
+
+SDKManager.BF_LOGIN_RESULT = {
+ Success = 0, -- 成功
+ TokenInvalid = 100, -- token失效
+ NotAccount = 101, -- 账号不存在
+ NotBinding = 102, -- 绑定失败
+ Data = 103, -- 数据错误
+ RepeatBinding = 104, -- 重复绑定
+ BindOtherAccount = 105, -- 已绑定其他账号
+ CheckToken = 106, -- 检查口令失败
+}
+
+-- 用于LoginReq
+SDKManager.LOGIN_TYPE = {
+ [0] = "none",
+ [1] = "token",
+ [2] = "guest", -- 游客
+ [3] = "facebook",
+ [4] = "test",
+ [5] = "google",
+ [6] = "apple",
+}
+
+-- 支付方式
+SDKManager.PAY_TYPE = {
+ NONE = 0,
+ GOOGLE = 1,
+ IOS = 2,
+ DEBUG = 10
+}
+
+local PAY_TYPE_IN_APP = "inapp"
+local PAY_TYPE_SUBS = "subs"
+
+local SDKPayMgr
+if CS.UnityEngine.Application.platform == CS.UnityEngine.RuntimePlatform.Android then
+ SDKPayMgr = require "app/common/sdk_pay_google_manager"
+elseif CS.UnityEngine.Application.platform == CS.UnityEngine.RuntimePlatform.IPhonePlayer then
+ SDKPayMgr = require "app/common/sdk_pay_ios_manager"
+else
+ SDKPayMgr = require "app/common/sdk_pay_default_manager"
+end
+
+function SDKManager:init()
+ Logger.logHighlight("SDK INIT ---------------")
+
+ -- 标记状态
+ self.isLogining = false
+ self.isLogouting = false
+
+ -- lazy init
+ local SDKMgr = CS.BF.BFMain.Instance.SDKMgr
+ self:initPay()
+ self:initPayListener()
+ self:initAdsListener()
+
+ -- 拿到firebasetoken
+ -- self:initFireBaseToken()
+end
+
+-- 支付相关接口 ********************************************************************** 开始
+function SDKManager:initPay()
+ SDKPayMgr:init()
+end
+
+function SDKManager:initPayListener()
+ -- 设置支付回调,平时支付走正常回调,如果延迟到账则走延迟到账的回调
+ if not SDKPayMgr:needInit() then
+ return
+ end
+ if self.paySid then
+ SchedulerManager:unscheduleGlobal(self.paySid)
+ self.paySid = nil
+ end
+ self.paySid = SchedulerManager:performWithDelayGlobal(function()
+ self:initPayListener()
+ end, 5)
+ SDKPayMgr:initPay(function()
+ if self.paySid then
+ SchedulerManager:unscheduleGlobal(self.paySid)
+ self.paySid = nil
+ end
+ self:queryProducePrice()
+ end)
+end
+
+function SDKManager:queryProducePrice()
+ if self.priceSid then
+ SchedulerManager:unscheduleGlobal(self.priceSid)
+ self.priceSid = nil
+ end
+ Logger.log("queryProducePrice")
+ if SDKPayMgr:gotProduct() then
+ return
+ end
+ local products = SDKPayMgr:queryProducePrice() or {}
+ if #products <= 0 then
+ self.priceSid = SchedulerManager:performWithDelayGlobal(function()
+ self:queryProducePrice()
+ end, 5)
+ end
+end
+
+-- 查询付费产品信息
+function SDKManager:queryProducts(callback)
+ SDKPayMgr:queryProducts(callback)
+end
+
+-- 处理未完成的订单
+function SDKManager:doUncompleteOrder(callback, productId)
+ SDKPayMgr:doUncompleteOrder(callback, productId)
+end
+
+-- sdk接口 得到特定商品的price
+function SDKManager:getProductPrice(skuId)
+ return SDKPayMgr:getProductPrice(skuId)
+end
+
+-- sdk接口 得到特定商品的priceAmountMicros
+function SDKManager:getProductPriceAmountMicros(skuId)
+ return SDKPayMgr:getProductPriceAmountMicros(skuId)
+end
+
+-- sdk接口 得到特定商品的currency_code
+function SDKManager:getPriceCurrencyCode(skuId)
+ return SDKPayMgr:getPriceCurrencyCode(skuId)
+end
+
+-- 获取支付方式,目前只有google支付
+function SDKManager:getSDKPayType()
+ return SDKPayMgr:getSDKPayType()
+end
+
+
+function SDKManager:getIsSupportSDKPay()
+ return SDKPayMgr:getIsSupportSDKPay()
+end
+
+-- sdk将已完成的订单消耗掉
+function SDKManager:consumePurchase(token, callback)
+ SDKPayMgr:consumePurchase(token, callback)
+end
+
+-- 检查是否可以支付
+function SDKManager:checkPay(productId, callback)
+ if not productId or not Platform:getIsPublishChannel() or not SDKManager:getIsSupportSDKPay() then -- 没有productId、非正式渠道、不支持sdk支付的直接返回可支付
+ callback(0)
+ return
+ end
+
+ SDKPayMgr:checkPay(productId, callback)
+end
+
+-- 支付
+function SDKManager:pay(productId, orderId, rechargeId, giftType, callback)
+ SDKPayMgr:pay(productId, orderId, rechargeId, giftType, callback)
+end
+
+function SDKManager:doUncompletePay(callback)
+ SDKPayMgr:doUncompletePay(callback)
+end
+
+-- 支付相关接口 ********************************************************************** 结束
+
+-- 获取设备语言
+function SDKManager:getLanguage()
+ return CS.BF.BFMain.Instance.SDKMgr:GetLanguage()
+end
+
+-- 获取设备时区
+function SDKManager:getTimeZone()
+ return CS.BF.BFMain.Instance.SDKMgr:GetTimeZone()
+end
+
+function SDKManager:initFireBaseToken()
+ CS.BF.BFMain.Instance.SDKMgr.BFLoginSDKMgr:GetFirebaseToken(function(token)
+ self.firebaseToken = token
+ end)
+end
+
+function SDKManager:getFirebaseToken()
+ CS.BF.BFMain.Instance.SDKMgr.BFLoginSDKMgr:GetFirebaseToken(function(token)
+ self.firebaseToken = token
+ end)
+ return self.firebaseToken
+end
+
+function SDKManager:doNextFrame(callback)
+ SchedulerManager:performWithDelayGlobal(callback, 0)
+end
+
+--- 广告
+function SDKManager:isAdLoaded()
+ if CS.UnityEngine.Application.platform == CS.UnityEngine.RuntimePlatform.Android then
+ return CS.BF.BFMain.Instance.SDKMgr.BFIronSourceSDKMgr.AdLoaded
+ elseif CS.UnityEngine.Application.platform == CS.UnityEngine.RuntimePlatform.IPhonePlayer then
+ return CS.AdManager.Instance:IsRewardedAdReady()
+ elseif EDITOR_MODE then
+ return true
+ end
+ return false
+end
+
+function SDKManager:tryLoadRewardedAdDelay()
+ if self.adDelaySid then
+ SchedulerManager:unscheduleGlobal(self.adDelaySid)
+ self.adDelaySid = nil
+ end
+ self.adDelaySid = SchedulerManager:performWithDelayGlobal(function()
+ self.adDelaySid = nil
+ CS.BF.BFMain.Instance.SDKMgr.BFIronSourceSDKMgr:TryLoadRewardedAd()
+ end, 5)
+end
+
+function SDKManager:initAdsListener()
+ if CS.UnityEngine.Application.platform == CS.UnityEngine.RuntimePlatform.Android then
+ CS.BF.BFMain.Instance.SDKMgr.BFIronSourceSDKMgr:SetAdShowCallback(function(code)
+ -- code 为0 表示广告播放成功
+ if code == 0 then
+ BIReport:postAdPlaySuccess(self.adsClickType)
+ else
+ self:tryLoadRewardedAdDelay()
+ end
+ end)
+ CS.BF.BFMain.Instance.SDKMgr.BFIronSourceSDKMgr:SetAdLoadedCallback(function(code)
+ -- code 为0 表示广告加载成功
+ if code ~= 0 then
+ self:tryLoadRewardedAdDelay()
+ end
+ end)
+ CS.BF.BFMain.Instance.SDKMgr.BFIronSourceSDKMgr:SetAdEarnedRewardCallback(function(code, result)
+ if self.adCallback then
+ self:adRewradAd()
+ self.adCallback()
+ BIReport:postAdRewardGet(self.adsClickType)
+ self.adsClickType = nil
+ self.adCallback = nil
+ end
+ end)
+ elseif CS.UnityEngine.Application.platform == CS.UnityEngine.RuntimePlatform.IPhonePlayer then
+ -- 初始化一下
+ local adManager = CS.AdManager.Instance
+ end
+end
+
+function SDKManager:showFullScreenAds(adsClickType, adCallback)
+ if EDITOR_MODE then
+ if not adsClickType then
+ local params = {
+ content = "SDKManager showFullScreenAds has no adsClickType",
+ boxType = GConst.MESSAGE_BOX_TYPE.MB_OK,
+ okText = I18N:getGlobalText(I18N.GlobalConst.BTN_TEXT_OK),
+ }
+ GFunc.showMessageBox(params)
+ Logger.log("SDKManager showFullScreenAds has no adsClickType")
+ end
+ end
+
+ BIReport:postAdClick(adsClickType)
+ if EDITOR_MODE then
+ self:adRewradAd()
+ if adCallback then
+ adCallback()
+ end
+ return true
+ end
+
+ if NetManager:isNotReachable() then
+ -- 没有网
+ GFunc.showToast(I18N:getGlobalText(I18N.GlobalConst.NO_NETWORK))
+ return false
+ end
+ if NetManager:getIsBusy() then
+ GFunc.showToast(I18N:getGlobalText(I18N.GlobalConst.NETWORK_ERROE_1))
+ return false
+ end
+ if DataManager.MallActData:skipAd() then
+ self:adRewradAd(true)
+ if adCallback then
+ adCallback()
+ end
+ return true
+ end
+ if CS.UnityEngine.Application.platform == CS.UnityEngine.RuntimePlatform.Android then
+ if not CS.BF.BFMain.Instance.SDKMgr.BFIronSourceSDKMgr.AdLoaded then
+ GFunc.showToast(I18N:getGlobalText(I18N.GlobalConst.NO_ADS))
+ return false
+ end
+ CS.BF.BFMain.Instance.SDKMgr.BFIronSourceSDKMgr:SetAdPlacement(adsClickType)
+ CS.BF.BFMain.Instance.SDKMgr.BFIronSourceSDKMgr.AdLoaded = false
+ self.adCallback = adCallback
+ self.adsClickType = adsClickType
+ CS.BF.BFMain.Instance.SDKMgr.BFIronSourceSDKMgr:ShowFullScreenAds()
+ return true
+ elseif CS.UnityEngine.Application.platform == CS.UnityEngine.RuntimePlatform.IPhonePlayer then
+ if not CS.AdManager.Instance:IsRewardedAdReady() then
+ GFunc.showToast(I18N:getGlobalText(I18N.GlobalConst.NO_ADS))
+ return false
+ end
+ self.adsClickType = adsClickType
+ BIReport:postAdPlaySuccess(self.adsClickType)
+ CS.AdManager.Instance:ShowRewardedAd(function(code)
+ if code == 0 then
+ self:adRewradAd()
+ if adCallback then
+ adCallback()
+ end
+ BIReport:postAdRewardGet(self.adsClickType)
+ self.adsClickType = nil
+ end
+ end)
+ return true
+ end
+end
+
+function SDKManager:adRewradAd(noReport)
+ Logger.logHighlight("-------------------")
+ ModuleManager.TaskManager:addTaskProgress(GConst.TaskConst.TASK_TYPE.X_WATCH_AD)
+ if not noReport then
+ DataManager.PlayerData:addAdCount()
+ -- BIReport:postAdEvent()
+ end
+end
+
+function SDKManager:getServerList(callback)
+ local postData = {
+ project_id = "b5",
+ bundle_id = Platform:getIdentifier(),
+ version = Platform:getClientVersion(),
+ device_id = DeviceHelper:getDeviceId(),
+ env = "release",-- 暂时写死
+ }
+ local loginCenterUrl = CS.BF.BFPlatform.GetLoginCenterURL()
+ loginCenterUrl = loginCenterUrl .. "?platform=" .. CS.System.Uri.EscapeDataString(Platform:getPlatformStr())
+ -- lua这边直接构建好参数
+ for k, v in pairs(postData) do
+ loginCenterUrl = loginCenterUrl .. "&" .. k .. "=" .. CS.System.Uri.EscapeDataString(v)
+ end
+ local guid = CS.BF.BFMain.Instance.SDKMgr.BFLoginSDKMgr:GetNewPlayerGuid()
+ loginCenterUrl = loginCenterUrl .. "&random=" .. CS.System.Uri.EscapeDataString(guid)
+ CS.BF.BFMain.Instance.SDKMgr.BFLoginSDKMgr:SetLuaServerListCallback(function(isSuccess, data)
+ if callback then
+ callback(isSuccess, data)
+ end
+ end)
+ CS.BF.BFMain.Instance.SDKMgr.BFLoginSDKMgr:GetServerList(loginCenterUrl)
+end
+
+function SDKManager:_login(callback, loginType)
+ CS.BF.BFMain.Instance.SDKMgr.BFLoginSDKMgr:SetLuaLoginCallback(callback)
+ CS.BF.BFMain.Instance.SDKMgr.BFLoginSDKMgr:Login(loginType)
+end
+
+function SDKManager:login(callback, loginType)
+ self:logout(function()
+ if self.isLogining then -- 正在登陆中
+ Logger.log("三方当前正在登陆中")
+ return
+ end
+
+ self.isLogining = true
+ self:_login(function(code, msg)
+ if code == SDKManager.BF_LOGIN_RESULT.Success then
+ if not msg then
+ self.isLogining = false
+ return
+ end
+ local msgTab = json.decode(msg)
+ if msgTab == nil or type(msgTab) ~= "table" then
+ self.isLogining = false
+ return
+ end
+ local loginResult = json.decode(msgTab.msg)
+ if loginResult == nil or type(loginResult) ~= "table" then
+ self.isLogining = false
+ return
+ end
+
+ local userId = loginResult.UserId
+ local token = loginResult.Token
+ local params = {}
+ if loginType == SDKManager.BF_LOGIN_TYPE.APPLE then
+ params = {
+ type = "apple",
+ id = tostring(userId),
+ token = tostring(token)
+ }
+ elseif loginType == SDKManager.BF_LOGIN_TYPE.GOOGLE then
+ params = {
+ type = "google",
+ id = tostring(userId),
+ id_token = tostring(token)
+ }
+ end
+ if callback then
+ callback(params)
+ end
+ end
+ self.isLogining = false
+ end, loginType)
+ end, loginType)
+end
+
+function SDKManager:_logout(callback, loginType)
+ if loginType == SDKManager.BF_LOGIN_TYPE.FACEBOOK or loginType == SDKManager.BF_LOGIN_TYPE.GOOGLE then
+ CS.BF.BFMain.Instance.SDKMgr.BFLoginSDKMgr:SetLuaLogoutCallback(callback)
+ CS.BF.BFMain.Instance.SDKMgr.BFLoginSDKMgr:Logout(loginType)
+ else
+ if callback then
+ callback(SDKManager.BF_LOGIN_RESULT.Success, nil)
+ end
+ end
+end
+
+function SDKManager:logout(callback, loginType)
+ if self.isLogouting then -- 正在登出
+ Logger.log("当前正在登出中")
+ return
+ end
+
+ self.isLogouting = true
+
+
+ self:_logout(function(code, msg)
+ if (code == SDKManager.BF_LOGIN_RESULT.Success) then
+ if callback then
+ callback()
+ end
+ else
+ if msg and msg ~= "" then
+ local jData = json.decode(msg)
+ if jData then
+ local type = jData.loginType
+ local msg = jData.msg
+ Logger.logError("登出失败 result:%s type:%s msg:%s", code, type, msg)
+ else
+ Logger.logError("登出失败 result:%s", code)
+ end
+ else
+ Logger.logError("登出失败")
+ end
+ if callback then
+ callback()
+ end
+ end
+ self.isLogouting = false
+ end, loginType)
+end
+
+return SDKManager
diff --git a/lua/app/common/sdk_manager.lua.meta b/lua/app/common/sdk_manager.lua.meta
new file mode 100644
index 00000000..3104bce8
--- /dev/null
+++ b/lua/app/common/sdk_manager.lua.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: e9724727c54602e43b70bcc7a11daa70
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/common/sdk_pay_default_manager.lua b/lua/app/common/sdk_pay_default_manager.lua
new file mode 100644
index 00000000..e8616c27
--- /dev/null
+++ b/lua/app/common/sdk_pay_default_manager.lua
@@ -0,0 +1,67 @@
+local SDKPayDefaultManager = {}
+
+function SDKPayDefaultManager:init()
+end
+
+function SDKPayDefaultManager:needInit()
+ return false
+end
+
+function SDKPayDefaultManager:initPay(callback)
+ self.products = {}
+ if callback then
+ callback()
+ end
+end
+
+function SDKPayDefaultManager:gotProduct()
+ return true
+end
+
+-- sdk接口 得到特定商品的price
+function SDKPayDefaultManager:getProductPrice(skuId)
+end
+
+-- sdk接口 得到特定商品的priceAmountMicros
+function SDKPayDefaultManager:getProductPriceAmountMicros(skuId)
+end
+
+-- sdk接口 得到特定商品的currency_code
+function SDKPayDefaultManager:getPriceCurrencyCode(skuId)
+end
+
+function SDKPayDefaultManager:getSDKPayType()
+ return SDKManager.PAY_TYPE.NONE
+end
+
+-- 获取支付方式,目前只有google支付
+function SDKPayDefaultManager:getIsSupportSDKPay()
+ return false
+end
+
+-- 检查是否可以支付
+function SDKPayDefaultManager:checkPay(productId, callback)
+ callback(0)
+end
+
+-- 支付
+function SDKPayDefaultManager:pay(productId, orderId, rechargeId, giftType, callback)
+ callback("", orderId)
+end
+
+function SDKPayDefaultManager:doUncompletePay(callback)
+end
+
+-- 查询付费产品信息
+function SDKPayDefaultManager:queryProducts(callback)
+end
+
+-- 处理未完成的订单
+function SDKPayDefaultManager:doUncompleteOrder(callback, productId)
+end
+
+-- sdk将已完成的订单消耗掉
+function SDKPayDefaultManager:consumePurchase(token, callback)
+end
+
+return SDKPayDefaultManager
diff --git a/lua/app/common/sdk_pay_default_manager.lua.meta b/lua/app/common/sdk_pay_default_manager.lua.meta
new file mode 100644
index 00000000..6f89b723
--- /dev/null
+++ b/lua/app/common/sdk_pay_default_manager.lua.meta
@@ -0,0 +1,10 @@
+fileFormatVersion: 2
+guid: f3097630175c24a4dabdc87d46d828f4
+ScriptedImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 2
+ userData:
+ assetBundleName:
+ assetBundleVariant:
+ script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
diff --git a/lua/app/common/sdk_pay_google_manager.lua b/lua/app/common/sdk_pay_google_manager.lua
new file mode 100644
index 00000000..59615ad9
--- /dev/null
+++ b/lua/app/common/sdk_pay_google_manager.lua
@@ -0,0 +1,464 @@
+local SDKPayGoogleManager = {}
+
+local PAY_TYPE_IN_APP = "inapp"
+local PAY_TYPE_SUBS = "subs"
+
+function SDKPayGoogleManager:init()
+end
+
+function SDKPayGoogleManager:needInit()
+ return true
+end
+
+function SDKPayGoogleManager:initPay(callback)
+ self.products = {}
+ CS.BF.BFMain.Instance.SDKMgr.BFPaySDKMgr:SetGoogleDelayPayCallback(SDKPayGoogleManager.onGooglePayDelayCallback)
+ if callback then
+ callback()
+ end
+end
+
+-- 这里定义的时候不能使用冒号,否则参数不对
+function SDKPayGoogleManager.onGooglePayDelayCallback(code, msg)
+ if code == 0 and msg and msg ~= "" then
+ Logger.log("延迟支付到账:%s", msg)
+ local result = json.decode(msg)
+ local purchaseToken = result.purchaseToken
+ if purchaseToken == nil or purchaseToken == "" then
+ return
+ end
+ if result.obfuscatedAccountId then
+ PayManager:requestRewards(purchaseToken, result.obfuscatedAccountId)
+ end
+ end
+end
+
+-- 查询付费产品信息
+function SDKPayGoogleManager:queryProducts(callback)
+ if self.queryProductsOver then -- 已经查询成功过了
+ if callback then
+ callback()
+ end
+ else
+ local rechargeCfg = ConfigManager:getConfig("recharge")
+ if rechargeCfg then
+ local inAppList = {} -- 内购类
+ local subsList = {} -- 订阅list
+ for _, rechargeInfo in ipairs(rechargeCfg) do
+ if rechargeInfo.subscribe then
+ table.insert(subsList, rechargeInfo.payId)
+ else
+ table.insert(inAppList, rechargeInfo.payId)
+ end
+ end
+ self.products = {}
+ self:queryProductInfo(PAY_TYPE_IN_APP, json.encode(inAppList), function(code, msg)
+ if code == 0 then
+ if msg and msg ~= "" then -- 更新products
+ Logger.logHighlight(msg)
+ local jData = json.decode(msg)
+ if jData and #jData > 0 then
+ for i = 1, #jData do
+ table.insert(self.products, jData[i])
+ end
+ end
+ end
+ if #subsList > 0 then
+ self:queryProductInfo(PAY_TYPE_SUBS, json.encode(subsList), function(code, msg)
+ if code == 0 then
+ if msg and msg ~= "" then -- 更新products
+ local jData = json.decode(msg)
+ if jData and #jData > 0 then
+ for i = 1, #jData do
+ table.insert(self.products, jData[i])
+ end
+ end
+ end
+ if callback then
+ callback()
+ end
+ end
+ end)
+ else
+ if callback then
+ callback()
+ end
+ end
+ end
+ end)
+ end
+ end
+end
+
+-- 商品数据
+function SDKPayGoogleManager:queryProductInfo(payType, json, callback)
+ CS.BF.BFMain.Instance.SDKMgr.BFPaySDKMgr:QueryProductInfo(payType, json, function(code, msg)
+ SDKManager:doNextFrame(function()
+ callback(code, msg)
+ end)
+ end)
+end
+
+-- 未完成的订单请求服务器 completeOrderState状态:
+-- 0表示未完成订单消耗完成
+-- 1表示存在和指定productId相同的支付中的订单
+-- 2表示存在和指定productId相同的无法成功消耗的订单
+-- 3表示存在无法成功消耗的订单,但是其中没有和指定productId相同
+function SDKPayGoogleManager:reqPayReward(uncompleteList, productId, callback)
+ local index = 1
+ local completeOrderState = 0
+ local function handleOrder(uncompleteOrder)
+ if uncompleteOrder == nil then
+ if callback then
+ callback(completeOrderState)
+ end
+ return
+ end
+ if uncompleteOrder.purchaseState == "2" then
+ -- 处理中的订单
+ index = index + 1
+ if uncompleteOrder.productId and uncompleteOrder.productId ~= "" and uncompleteOrder.productId == productId then
+ -- 存在和指定productId相同的支付中的订单
+ completeOrderState = 1
+ end
+ handleOrder(uncompleteList[index])
+ elseif uncompleteOrder.purchaseToken then
+ -- 去服务器验证
+ if uncompleteOrder.obfuscatedAccountId then
+ PayManager:requestRewards(uncompleteOrder.purchaseToken, uncompleteOrder.obfuscatedAccountId)
+ else
+ SDKManager:consumePurchase(uncompleteOrder.purchaseToken, function()
+ index = index + 1
+ handleOrder(uncompleteList[index])
+ end)
+ end
+ else
+ index = index + 1
+ handleOrder(uncompleteList[index])
+ end
+ end
+ handleOrder(uncompleteList[index])
+end
+
+-- 处理未完成的订单
+function SDKPayGoogleManager:doUncompleteOrder(callback, productId)
+ self:queryUncompleteOrder(function(list)
+ if list and type(list) == "table" and #list > 0 then
+ self:reqPayReward(list, productId, callback)
+ else -- 没有未完成的订单
+ if callback then
+ callback(0)
+ end
+ end
+ end)
+end
+
+-- 查询未完成的订单
+function SDKPayGoogleManager:queryUncompleteOrder(callback)
+ local list -- 查询到的数据,整合了内购
+ -- 查找内购
+ CS.BF.BFMain.Instance.SDKMgr.BFPaySDKMgr:QueryUncompleteOrder(PAY_TYPE_IN_APP, function(code, msg)
+ -- 此查询接口没有失败的情况
+ if msg and msg ~= "" then
+ list = json.decode(msg)
+ end
+
+ if callback then
+ callback(list)
+ end
+ end)
+end
+
+-- 订阅到期查询订阅状态
+function SDKPayGoogleManager:querySubscribeInfo()
+ CS.BF.BFMain.Instance.SDKMgr.BFPaySDKMgr:QueryUncompleteOrder(PAY_TYPE_SUBS, function(code, msg)
+ -- 此查询接口没有失败的情况
+ local subsList
+ if msg and msg ~= "" then
+ subsList = json.decode(msg)
+ end
+ if subsList then
+ for _, order in ipairs(subsList) do
+ if order.purchaseState == 1 then -- 已购买
+ local args = {
+ purchase_token = order.purchaseToken,
+ order_id = order.obfuscatedAccountId
+ }
+ break
+ end
+ end
+ end
+ end)
+end
+
+function SDKPayGoogleManager:queryProducePrice()
+ return self.products
+end
+
+function SDKPayGoogleManager:gotProduct()
+ return true
+end
+
+-- sdk接口 得到特定商品的price
+function SDKPayGoogleManager:getProductPrice(skuId)
+ if self.products and #self.products > 0 then
+ for _, data in ipairs(self.products) do
+ if data.sku == skuId then
+ return data.price
+ end
+ end
+ end
+ return nil
+end
+
+-- sdk接口 得到特定商品的priceAmountMicros
+function SDKPayGoogleManager:getProductPriceAmountMicros(skuId)
+ if self.products and #self.products > 0 then
+ for _, data in ipairs(self.products) do
+ if data.sku == skuId then
+ return data.priceAmountMicros
+ end
+ end
+ end
+ return nil
+end
+
+-- sdk接口 得到特定商品的currency_code
+function SDKPayGoogleManager:getPriceCurrencyCode(skuId)
+ if self.products and #self.products > 0 then
+ for _, data in ipairs(self.products) do
+ if data.sku == skuId then
+ return data.priceCurrencyCode
+ end
+ end
+ end
+ return nil
+end
+
+function SDKPayGoogleManager:getSDKPayType()
+ if Platform:getIsPublishChannel() then
+ return SDKManager.PAY_TYPE.GOOGLE
+ else
+ return SDKManager.PAY_TYPE.NONE
+ end
+end
+
+-- 获取支付方式,目前只有google支付
+function SDKPayGoogleManager:getIsSupportSDKPay()
+ return true
+end
+
+function SDKPayGoogleManager:_getIsGoogleStoreConnected()
+ return CS.BF.BFMain.Instance.SDKMgr.BFPaySDKMgr.ConnectStoreSucc
+end
+
+-- 检查是否可以支付
+function SDKPayGoogleManager:checkPay(productId, callback)
+ if self:_getIsGoogleStoreConnected() then -- google商店是否初始化
+ self:doUncompleteOrder(function(code) -- 先处理未完成的订单
+ if code == 0 then
+ callback(0)
+ elseif code == 1 then -- 指定的productId存在支付状态中的订单
+ local params = {
+ content = I18N:getGlobalText(I18N.GlobalConst.SETTING_DESC_23),
+ boxType = GConst.MESSAGE_BOX_TYPE.MB_OK,
+ okText = I18N:getGlobalText(I18N.GlobalConst.BTN_TEXT_OK),
+ }
+ GFunc.showMessageBox(params)
+ elseif code == 2 then -- 指定的productId存在未完成的订单消耗失败的情况
+ local params = {
+ content = I18N:getGlobalText(I18N.GlobalConst.SETTING_DESC_23),
+ boxType = GConst.MESSAGE_BOX_TYPE.MB_OK,
+ okText = I18N:getGlobalText(I18N.GlobalConst.BTN_TEXT_OK),
+ }
+ GFunc.showMessageBox(params)
+ else -- 存在未完成的订单消耗失败的情况,但是因为不是当前productId,所以允许继续支付
+ callback(0)
+ end
+ end, productId)
+ else
+ self:connectGoogleStore(function(code)
+ if code == 0 then
+ self:doUncompleteOrder(function(consumeSucc)
+ if code == 0 then
+ callback(0)
+ elseif code == 1 then -- 指定的productId存在支付状态中的订单
+ local params = {
+ content = I18N:getGlobalText(I18N.GlobalConst.SETTING_DESC_23),
+ boxType = GConst.MESSAGE_BOX_TYPE.MB_OK,
+ okText = I18N:getGlobalText(I18N.GlobalConst.BTN_TEXT_OK),
+ }
+ GFunc.showMessageBox(params)
+ elseif code == 2 then -- 指定的productId存在未完成的订单消耗失败的情况
+ local params = {
+ content = I18N:getGlobalText(I18N.GlobalConst.SETTING_DESC_23),
+ boxType = GConst.MESSAGE_BOX_TYPE.MB_OK,
+ okText = I18N:getGlobalText(I18N.GlobalConst.BTN_TEXT_OK),
+ }
+ GFunc.showMessageBox(params)
+ else -- 存在未完成的订单消耗失败的情况,但是因为不是当前productId,所以允许继续支付
+ callback(0)
+ end
+ end, productId)
+ else
+ local params = {
+ content = I18N:getGlobalText(I18N.GlobalConst.SETTING_DESC_22),
+ boxType = GConst.MESSAGE_BOX_TYPE.MB_OK,
+ okText = I18N:getGlobalText(I18N.GlobalConst.BTN_TEXT_OK),
+ }
+ GFunc.showMessageBox(params)
+ end
+ end)
+ end
+end
+
+-- 支付
+function SDKPayGoogleManager:pay(productId, orderId, rechargeId, giftType, callback)
+ self:doGooglePay(productId, orderId, rechargeId, giftType, callback)
+end
+
+-- 连接Google商店
+function SDKPayGoogleManager:connectGoogleStore(callback)
+ CS.BF.BFMain.Instance.SDKMgr.BFPaySDKMgr:ConnectGoogleStore(function(code)
+ SDKManager:doNextFrame(function()
+ callback(code)
+ end)
+ end)
+end
+
+function SDKPayGoogleManager:doGooglePay(productId, orderId, rechargeId, giftType, callback)
+ local payType = PAY_TYPE_IN_APP
+ local rechargeCfg = ConfigManager:getConfig("recharge")[rechargeId]
+ if rechargeCfg.subscribe then
+ payType = PAY_TYPE_SUBS
+ end
+ CS.BF.BFMain.Instance.SDKMgr.BFPaySDKMgr:Pay(payType, productId, orderId, function(code, msg)
+ if code == 0 then
+ -- 支付成功
+ Logger.log("pay success:%s", msg)
+ local result = json.decode(msg)
+ if callback then
+ callback(result.purchaseToken, result.obfuscatedAccountId, result.orderId)
+ end
+ elseif code == 1 then
+ -- 支付取消
+ GFunc.showToast(I18N:getGlobalText(I18N.GlobalConst.SETTING_DESC_25))
+ BIReport:postPayCancel(productId, orderId, rechargeId, giftType)
+ else
+ -- 支付失败
+ Logger.log("pay failed")
+ BIReport:postPayFailed(productId, orderId, rechargeId, msg or GConst.EMPTY_STRING, giftType)
+ end
+ end)
+end
+
+-- sdk将已完成的订单消耗掉
+function SDKPayGoogleManager:consumePurchase(token, callback)
+ if not token then
+ return
+ end
+ CS.BF.BFMain.Instance.SDKMgr.BFPaySDKMgr:ConsumePurchase(token, function(code, msg)
+ if code == 0 then
+ Logger.log("consume %s success", token)
+ else
+ Logger.log("consume %s failed", token)
+ end
+ if callback then
+ callback(code)
+ end
+ end)
+end
+
+function SDKPayGoogleManager:doUncompletePay(callback)
+ -- 每次游戏的过程中只处理一次
+ if self.alreadyFinishUncompletePay then
+ return
+ end
+ if not DataManager:getLoginSuccess() then
+ return
+ end
+ if NetManager:getIsBusy() then
+ return
+ end
+ if self:_getIsGoogleStoreConnected() then
+ -- google商店是否初始化
+ self.alreadyFinishUncompletePay = true
+ SDKManager:queryProducts(function()
+ SDKManager:doUncompleteOrder()
+ end)
+ end
+end
+
+-- 第一步向服务器验证订单号
+-- function SDKPayGoogleManager:_checkPurchaseOrder(result, productId, callback)
+-- -- SDKPayGoogleManager:saveOrderId(result.orderId)
+-- if DataManager.PlayerData:isInPermanentOrders(result.obfuscatedAccountId) then
+-- return
+-- end
+-- local params = {}
+-- params.receipt = {}
+-- params.receipt.packageName = Platform:getIdentifier()
+-- params.receipt.productId = productId
+-- params.receipt.purchaseToken = result.purchaseToken
+-- params.receipt.subscription = false
+
+-- CS.BF.BFMain.Instance.ParseClientMgr:SetLuaCheckPurchaseOrderCallback(function (msg)
+-- local serverResult = json.decode(msg)
+-- local _result = serverResult.result
+-- Logger.printTable(serverResult)
+-- if _result and _result.data then
+-- if _result.code == 0 then
+-- -- SDKPayGoogleManager:delOrderId(_result.data.orderId)
+-- SDKPayGoogleManager:saveOrderId(_result.data.obfuscatedExternalAccountId, params)
+-- SDKPayGoogleManager:checkPurchaseConsume(_result.data.obfuscatedExternalAccountId, params, callback)
+-- -- if callback then
+-- -- callback(_result.data.purchaseToken, _result.data.obfuscatedAccountId, _result.data.orderId)
+-- -- end
+-- elseif _result.code == 137 then
+-- -- SDKPayGoogleManager:delOrderId(_result.data.orderId)
+-- SDKPayGoogleManager:consumePurchase(_result.data.purchaseToken)
+-- else
+-- -- @TODO 重试
+-- end
+-- end
+
+-- end)
+-- CS.BF.BFMain.Instance.ParseClientMgr:CheckPurchaseGPOrder(json.encode(params))
+-- end
+
+-- 第二步向服务器申请消耗订单
+-- function SDKPayGoogleManager:checkPurchaseConsume(orderId, params, callback, callback1)
+-- if not orderId or not params then
+-- return
+-- end
+-- CS.BF.BFMain.Instance.ParseClientMgr:SetLuaCheckPurchaseConsumeCallback(function (msg)
+-- local serverResult = json.decode(msg)
+-- local _result = serverResult.result
+-- Logger.printTable(serverResult)
+-- if _result and _result.data then
+-- if _result.code == 0 or _result.code == 137 then
+-- SDKPayGoogleManager:delOrderId(orderId)
+-- SDKPayGoogleManager:savePermanentOrderId(orderId)
+-- if callback then
+-- callback(_result.data.purchaseToken, _result.data.obfuscatedExternalAccountId, _result.data.orderId)
+-- else
+ -- PayManager:requestRewards(_result.data.purchaseToken, orderId)
+-- SDKPayGoogleManager:consumePurchase(_result.data.purchaseToken)
+-- if callback1 then
+-- callback1()
+-- end
+-- end
+-- -- elseif _result.code == 137 then
+-- -- SDKPayGoogleManager:delOrderId(orderId)
+-- -- SDKPayGoogleManager:consumePurchase(_result.data.purchaseToken)
+-- else
+-- -- @TODO 重试
+-- end
+-- end
+
+-- end)
+-- CS.BF.BFMain.Instance.ParseClientMgr:CheckPurchaseGPConsume(json.encode(params))
+-- end
+
+-- 支付相关接口 ********************************************************************** 结束
+return SDKPayGoogleManager
diff --git a/lua/app/common/sdk_pay_google_manager.lua.meta b/lua/app/common/sdk_pay_google_manager.lua.meta
new file mode 100644
index 00000000..38de295a
--- /dev/null
+++ b/lua/app/common/sdk_pay_google_manager.lua.meta
@@ -0,0 +1,10 @@
+fileFormatVersion: 2
+guid: fbf58d426d968fd4b9adf30d353a2973
+ScriptedImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 2
+ userData:
+ assetBundleName:
+ assetBundleVariant:
+ script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
diff --git a/lua/app/common/sdk_pay_ios_manager.lua b/lua/app/common/sdk_pay_ios_manager.lua
new file mode 100644
index 00000000..0baea03f
--- /dev/null
+++ b/lua/app/common/sdk_pay_ios_manager.lua
@@ -0,0 +1,394 @@
+local SDKPayiOSManager = {}
+
+function SDKPayiOSManager:init()
+ self.iosPayInfos = LocalData:getIosPayInfo()
+ self.iosOrders = LocalData:getIosOrders()
+end
+
+function SDKPayiOSManager:needInit()
+ return true
+end
+
+function SDKPayiOSManager:initPay(callback)
+ self.products = {}
+ CS.BF.BFMain.Instance.SDKMgr.IosPaySDKMgr.initCallback = function (isSuccess, products, errorStr)
+ if isSuccess then
+ -- GFunc.showToast("初始化成功")
+ if callback then
+ callback()
+ end
+ BIReport:postPayInitSuccess()
+ else
+ Logger.log(errorStr)
+ BIReport:postPayInitFailed(errorStr)
+ end
+ end
+
+ CS.BF.BFMain.Instance.SDKMgr.IosPaySDKMgr.buyCallback = function(isSuccess, result, errorStr)
+ if isSuccess then
+ -- if self.handleUncompleteIosOrder then
+ -- local payParams = self.iosPayInfos[result.transactionID]
+ -- local needConsumePurchase = true
+ -- if payParams ~= nil and payParams.order then
+ -- PayManager:requestRewards(result.receipt, payParams.order)
+ -- needConsumePurchase = false
+ -- end
+ -- if needConsumePurchase then
+ -- self:delIosPayInfo(result.transactionID)
+ -- self:delIosOrder(result.definition.id)
+ -- self:consumePurchase(result.definition.id)
+ -- BIReport:postPayFailed(result.definition.id, result.transactionID, nil, "error order")
+ -- end
+ -- else
+ -- -- 回调时机太早的话,就先保存起来,等后续补单的时候一起补
+ -- local order = self.iosOrders[result.definition.id]
+ -- if order then
+ -- self:saveIosPayInfo(result.transactionID, result.receipt, order, result.definition.id)
+ -- self:delIosOrder(result.definition.id)
+ -- else
+ -- -- 之前没有记录只能算掉单了
+ -- self:delIosPayInfo(result.transactionID)
+ -- self:delIosOrder(result.definition.id)
+ -- self:consumePurchase(result.definition.id)
+ -- BIReport:postPayFailed(result.definition.id, result.transactionID, nil, "not have order")
+ -- end
+ -- end
+ else
+ -- if errorStr and errorStr ~= "" then
+ -- BIReport:postPayFailed(result.definition.id, result.transactionID, nil, errorStr)
+ -- else
+ -- BIReport:postPayFailed(result.definition.id, result.transactionID, nil, "1")
+ -- end
+ end
+ end
+
+ local rechargeCfg = ConfigManager:getConfig("recharge")
+ local products = {}
+ for i,v in ipairs(rechargeCfg) do
+ table.insert(products, {productId = v.payId, type = CS.UnityEngine.Purchasing.ProductType.Consumable})
+ end
+ CS.BF.BFMain.Instance.SDKMgr.IosPaySDKMgr:Init(products)
+end
+
+function SDKPayiOSManager:queryProducePrice()
+ if self.products and #self.products > 0 then
+ return self.products
+ end
+ local rechargeCfg = ConfigManager:getConfig("recharge")
+ self.products = {}
+ for _, v in ipairs(rechargeCfg) do
+ local price = CS.BF.BFMain.Instance.SDKMgr.IosPaySDKMgr:GetLocalizedPrice(v.payId)
+ if price and price ~= "" then
+ Logger.log("product = %s, price = %s", v.payId, price)
+ table.insert(self.products, {sku = v.payId, price = price})
+ end
+ end
+ return self.products
+end
+
+function SDKPayiOSManager:queryProducts()
+end
+
+-- 处理未完成的订单
+function SDKPayiOSManager:doUncompleteOrder(callback, productId)
+ self.handleUncompleteIosOrder = true
+ local orders = self.iosPayInfos
+ if orders == nil then
+ return callback and callback()
+ end
+ local uncompleteList = {}
+ for _, v in pairs(orders) do
+ table.insert(uncompleteList, v)
+ end
+ if #uncompleteList <= 0 then
+ return callback and callback()
+ end
+ local index = 1
+ local function handleOrder(uncompleteOrder)
+ if uncompleteOrder == nil then
+ return callback and callback()
+ end
+ -- 去服务器验证
+ if uncompleteOrder.order then
+ PayManager:requestRewards(uncompleteOrder.receipt, uncompleteOrder.order)
+ else
+ SDKManager:delIosPayInfo(uncompleteOrder.transactionID)
+ SDKManager:delIosOrder(uncompleteOrder.productId)
+ self:consumePurchase(uncompleteOrder.productId, function()
+ index = index + 1
+ handleOrder(uncompleteList[index])
+ end)
+ end
+ end
+ handleOrder(uncompleteList[index])
+end
+
+-- 查询未完成的订单
+function SDKPayiOSManager:queryUncompleteOrder(callback)
+end
+
+-- 订阅到期查询订阅状态
+function SDKPayiOSManager:querySubscribeInfo()
+end
+
+function SDKPayiOSManager:gotProduct()
+ if self.products and #self.products > 0 then
+ return true
+ end
+ return false
+end
+
+-- sdk接口 得到商品的price
+function SDKPayiOSManager:getProductPrice(skuId)
+ if self.products and #self.products > 0 then
+ for _, data in ipairs(self.products) do
+ if data.sku == skuId then
+ return data.price
+ end
+ end
+ end
+ return nil
+end
+
+-- sdk接口 得到特定商品的priceAmountMicros
+function SDKPayiOSManager:getProductPriceAmountMicros(skuId)
+ if self.products and #self.products > 0 then
+ for _, data in ipairs(self.products) do
+ if data.sku == skuId then
+ return data.priceAmountMicros
+ end
+ end
+ end
+ return nil
+end
+
+-- sdk接口 得到特定商品的currency_code
+function SDKPayiOSManager:getPriceCurrencyCode(skuId)
+ if self.products and #self.products > 0 then
+ for _, data in ipairs(self.products) do
+ if data.sku == skuId then
+ return data.priceCurrencyCode
+ end
+ end
+ end
+ return nil
+end
+
+function SDKPayiOSManager:getSDKPayType()
+ if Platform:getIsPublishChannel() then
+ return SDKManager.PAY_TYPE.IOS
+ else
+ return SDKManager.PAY_TYPE.NONE
+ end
+end
+
+-- 获取支付方式,目前只有google支付
+function SDKPayiOSManager:getIsSupportSDKPay()
+ return true
+end
+
+function SDKPayiOSManager:getIsGoogleStoreConnected()
+ return CS.BF.BFMain.Instance.SDKMgr.BFPaySDKMgr.ConnectStoreSucc
+end
+
+function SDKPayiOSManager:_getIsIosInitialized()
+ return CS.BF.BFMain.Instance.SDKMgr.IosPaySDKMgr:IsInitialized()
+end
+
+-- 检查是否可以支付
+function SDKPayiOSManager:checkPay(productId, callback)
+ if self:_getIsIosInitialized() then
+ SDKManager:doUncompleteOrder(function(code)
+ -- 先处理未完成的订单
+ if code == 0 then
+ callback(0)
+ elseif code == 1 then
+ -- 指定的productId存在支付状态中的订单
+ local params = {
+ content = I18N:getGlobalText(I18N.GlobalConst.SETTING_DESC_23),
+ boxType = GConst.MESSAGE_BOX_TYPE.MB_OK,
+ okText = I18N:getGlobalText(I18N.GlobalConst.BTN_TEXT_OK),
+ }
+ GFunc.showMessageBox(params)
+ elseif code == 2 then
+ -- 指定的productId存在未完成的订单消耗失败的情况
+ local params = {
+ content = I18N:getGlobalText(I18N.GlobalConst.SETTING_DESC_23),
+ boxType = GConst.MESSAGE_BOX_TYPE.MB_OK,
+ okText = I18N:getGlobalText(I18N.GlobalConst.BTN_TEXT_OK),
+ }
+ GFunc.showMessageBox(params)
+ else
+ -- 存在未完成的订单消耗失败的情况,但是因为不是当前productId,所以允许继续支付
+ callback(0)
+ end
+ end)
+ end
+end
+
+-- 支付
+function SDKPayiOSManager:pay(productId, orderId, rechargeId, giftType, callback)
+ self:doIosPay(productId, orderId, rechargeId, callback)
+end
+
+-- sdk将已完成的订单消耗掉
+function SDKPayiOSManager:consumePurchase(token, callback)
+ CS.BF.BFMain.Instance.SDKMgr.IosPaySDKMgr:ConsumePurchase(token)
+ if callback then
+ callback(0)
+ end
+end
+
+function SDKPayiOSManager:doIosPay(productId, orderId, rechargeId, giftType, callback)
+ self.blockTouch = true
+ UIManager:showWaitNet()
+ CS.BF.BFMain.Instance.SDKMgr.IosPaySDKMgr.buyCallback = function(isSuccess, result, errorStr)
+ if self.blockTouch then
+ self.blockTouch = false
+ UIManager:hideWaitNet()
+ end
+ if isSuccess then
+ Logger.log("ios pay availableToPurchase = %s", result.availableToPurchase)
+ Logger.log("ios pay transactionID = %s", result.transactionID)
+ Logger.log("ios pay hasReceipt = %s", result.hasReceipt)
+ Logger.log("ios pay receipt = %s", result.receipt)
+ self:saveIosPayInfo(result.transactionID, result.receipt, orderId, productId)
+ if callback then
+ callback(result.receipt, orderId, result.transactionID)
+ end
+ else
+ if errorStr and errorStr ~= "" then
+ BIReport:postPayFailed(productId, orderId, rechargeId, errorStr, giftType)
+ else
+ BIReport:postPayFailed(productId, orderId, rechargeId, "1", giftType)
+ end
+ end
+ self:delIosOrder(productId)
+ end
+ self:saveIosOrder(productId, orderId)
+ CS.BF.BFMain.Instance.SDKMgr.IosPaySDKMgr:Buy(productId, orderId)
+end
+
+function SDKPayiOSManager:doUncompletePay(callback)
+ -- 每次游戏的过程中只处理一次
+ if self.alreadyFinishUncompletePay then
+ return
+ end
+ if not DataManager:getLoginSuccess() then
+ return
+ end
+ if NetManager:getIsBusy() then
+ return
+ end
+
+ if self:_getIsIosInitialized() then
+ self.alreadyFinishUncompletePay = true
+ SDKManager:doUncompleteOrder()
+ end
+end
+
+function SDKPayiOSManager:checkPurchaseOrder(result, productId, callback)
+end
+
+function SDKPayiOSManager:saveIosPayInfo(transactionID, receipt, order, productId)
+ self.iosPayInfos[transactionID] = {
+ order = order,
+ receipt = receipt,
+ transactionID = transactionID,
+ productId = productId
+ }
+ LocalData:setIosPayInfo(self.iosPayInfos)
+ LocalData:save()
+end
+
+function SDKPayiOSManager:saveIosOrder(productId, order)
+ self.iosOrders[productId] = order
+ LocalData:setIosOrders(self.iosOrders)
+ LocalData:save()
+end
+
+function SDKPayiOSManager:delIosOrder(productId)
+ self.iosOrders[productId] = nil
+ LocalData:setIosOrders(self.iosOrders)
+ LocalData:save()
+end
+
+-- 第一步向服务器验证订单号
+-- function SDKPayiOSManager:checkPurchaseIOSOrder(result, productId, callback)
+-- Logger.printTable(result)
+-- Logger.log(productId)
+-- local orderId = DataManager.PlayerData:getIosOrderId(result.transactionID)
+-- if not orderId then
+-- return
+-- end
+-- if DataManager.PlayerData:isInPermanentOrders(result.transactionID) then
+-- return
+-- end
+-- local params = {}
+-- -- params.receipt.packageName = Platform:getIdentifier()
+-- -- params.receipt.productId = productId
+-- params.receipt = result.receipt
+-- params.transaction_id = result.transactionID
+
+-- CS.BF.BFMain.Instance.ParseClientMgr:SetLuaCheckPurchaseIOSOrderCallback(function (msg)
+-- local serverResult = json.decode(msg)
+-- local _result = serverResult.result
+-- Logger.printTable(serverResult)
+-- -- 后端返回latest_receipt_info
+-- if _result and _result.data then
+-- if _result.code == 0 then
+-- SDKPayiOSManager:saveOrderId(result.transactionID, params)
+-- -- 第二次验证
+-- SDKPayiOSManager:checkPurchaseConsume(result, params, callback)
+-- elseif _result.code == 137 then
+-- -- SDKPayiOSManager:delOrderId(_result.data.orderId)
+-- -- 消耗订单
+-- -- SDKPayiOSManager:consumePurchase(_result.data.purchaseToken)
+-- else
+-- -- @TODO 重试
+-- end
+-- end
+
+-- end)
+-- CS.BF.BFMain.Instance.ParseClientMgr:CheckPurchaseIOSOrder(json.encode(params))
+-- end
+
+-- 第二步向服务器申请消耗订单
+-- function SDKPayiOSManager:checkPurchaseConsume(result, params, callback, callback1)
+-- if not result or not params then
+-- return
+-- end
+-- local orderId = DataManager.PlayerData:getIosOrderId(result.transactionID)
+-- if not orderId then
+-- return
+-- end
+-- CS.BF.BFMain.Instance.ParseClientMgr:SetLuaCheckPurchaseIOSConsumeCallback(function (msg)
+-- local serverResult = json.decode(msg)
+-- local _result = serverResult.result
+-- Logger.printTable(serverResult)
+-- if _result and _result.data then
+-- if _result.code == 0 then
+-- -- 处理本地存储订单
+-- SDKPayiOSManager:delIosOrderId(result.transactionID)
+-- SDKPayiOSManager:delOrderId(result.transactionID)
+-- SDKPayiOSManager:savePermanentOrderId(result.transactionID)
+-- if callback then
+-- callback(result.receipt, orderId, result.transactionID)
+-- else
+-- -- SDKPayiOSManager:consumePurchase(_result.data.purchaseToken)
+ -- PayManager:requestRewards(_result.data.purchaseToken, orderId)
+-- if callback1 then
+-- callback1()
+-- end
+-- end
+-- elseif _result.code == 137 then
+-- else
+-- -- @TODO 重试
+-- end
+-- end
+
+-- end)
+-- CS.BF.BFMain.Instance.ParseClientMgr:CheckPurchaseIOSConsume(json.encode(params))
+-- end
+-- 支付相关接口 ********************************************************************** 结束
+return SDKPayiOSManager
diff --git a/lua/app/common/sdk_pay_ios_manager.lua.meta b/lua/app/common/sdk_pay_ios_manager.lua.meta
new file mode 100644
index 00000000..9d73bd36
--- /dev/null
+++ b/lua/app/common/sdk_pay_ios_manager.lua.meta
@@ -0,0 +1,10 @@
+fileFormatVersion: 2
+guid: da69c0aee3d32ea4c86e5844df968f98
+ScriptedImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 2
+ userData:
+ assetBundleName:
+ assetBundleVariant:
+ script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
diff --git a/lua/app/common/server_push_manager.lua b/lua/app/common/server_push_manager.lua
new file mode 100644
index 00000000..e7c85d90
--- /dev/null
+++ b/lua/app/common/server_push_manager.lua
@@ -0,0 +1,27 @@
+local ServerPushManager = {}
+
+---- 注册推送监听
+function ServerPushManager:addServerPushListener(msgName, module, callback)
+ NetManager:registerMsgCallback(msgName, module, callback)
+end
+
+---- 移除推送监听
+function ServerPushManager:removeServerPushListener(msgName, module)
+ NetManager:unRegisterMsgCallback(msgName, module)
+end
+
+---- 初始化全局推送监听
+function ServerPushManager:initWhenLogin()
+ self:addServerPushListener(ProtoMsgType.FromMsgEnum.KickOutNtf, UIManager, UIManager.showKickOut)
+ self:addServerPushListener(ProtoMsgType.FromMsgEnum.MallActTriggerGiftNtf, ModuleManager.MallManager, ModuleManager.MallManager.MallActTriggerGiftNtf)
+ self:addServerPushListener(ProtoMsgType.FromMsgEnum.BattlePassBoughtNtf, ModuleManager.BountyManager, ModuleManager.BountyManager.buyCardFinish)
+ self:addServerPushListener(ProtoMsgType.FromMsgEnum.SummonPoolLevelNtf, ModuleManager.SummonManager, ModuleManager.SummonManager.SummonPoolLevelNtf)
+ self:addServerPushListener(ProtoMsgType.FromMsgEnum.NewMailNtf, ModuleManager.MailManager, ModuleManager.MailManager.needUpdateMail)
+end
+
+---- 移除全局推送监听
+function ServerPushManager:removeWhenLoginOut()
+ self:removeServerPushListener(ProtoMsgType.FromMsgEnum.KickOutNtf, UIManager)
+end
+
+return ServerPushManager
\ No newline at end of file
diff --git a/lua/app/common/server_push_manager.lua.meta b/lua/app/common/server_push_manager.lua.meta
new file mode 100644
index 00000000..e4acbbde
--- /dev/null
+++ b/lua/app/common/server_push_manager.lua.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 1c64e57074a12a04a98c2bd95599566a
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/common/spine_manager.lua b/lua/app/common/spine_manager.lua
new file mode 100644
index 00000000..43263597
--- /dev/null
+++ b/lua/app/common/spine_manager.lua
@@ -0,0 +1,194 @@
+local UISpineObject = require "app/bf/unity/ui_spine_object"
+local MeshSpineObject = require "app/bf/unity/mesh_spine_object"
+local CharacterSpineObject = require "app/bf/unity/character_spine_object"
+local SpineManager = {
+ heroCacheList = {},
+ heroCacheMap = {},
+ battleCacheList = {},
+ battleCacheMap = {},
+ heroSpineAsset = {}
+}
+
+local TYPE_OF_GAME_OBJECT = GConst.TYPEOF_UNITY_CLASS.GAME_OBJECT
+local TYPE_OF_SPINE_ASSET = GConst.TYPEOF_UNITY_CLASS.SKELETON_DATA_ASSET
+
+local UI_SPINE_PREFAB_PATH = "assets/prefabs/spine/ui/ui_spine_obj.prefab"
+local MESH_SPINE_PREFAB_PATH = "assets/prefabs/spine/mesh/mesh_spine_obj.prefab"
+
+local UI_SPINE_ASSET_PATH = "assets/arts/spines/ui/%s/%s_skeletondata.asset"
+local MESH_SPINE_ASSET_PATH = "assets/arts/spines/mesh/%s/%s_skeletondata.asset"
+local HERO_SPINE_ASSET_PATH = "assets/arts/spines/characters/%s/%s_skeletondata.asset"
+
+local HERO_CACHE_SIZE = 10 -- 英雄缓存容量
+local BATTLE_CACHE_SIZE = 30 -- 战斗特效缓存容量
+
+---- canvas renderer
+function SpineManager:loadUISpineWidgetAsync(name, parent, callback)
+ local path = string.format(UI_SPINE_ASSET_PATH, name, name)
+ ResourceManager:loadOriginAssetAsync(path, TYPE_OF_SPINE_ASSET, function(spineAssetPath, spineAsset)
+ if parent and parent:isDestroyed() then
+ ResourceManager:unload(spineAssetPath)
+ return
+ end
+ self:loadUISpinePrefabAsync(parent, spineAssetPath, spineAsset, callback)
+ end)
+end
+
+function SpineManager:loadUISpinePrefabAsync(parent, spineAssetPath, spineAsset, callback)
+ ResourceManager:loadAsync(UI_SPINE_PREFAB_PATH, TYPE_OF_GAME_OBJECT, function(prefabPath, prefab)
+ if parent and parent:isDestroyed() then
+ ResourceManager:destroyPrefab(prefab)
+ ResourceManager:unload(spineAssetPath)
+ ResourceManager:unload(prefabPath)
+ return
+ end
+ local uiSpineObject = UISpineObject:create()
+ uiSpineObject:initWithPrefab(UI_SPINE_PREFAB_PATH, prefab)
+ uiSpineObject:getAnimationState()
+ uiSpineObject:initSkeletonDataAsset(spineAsset)
+ uiSpineObject:addUnloadCallback(function(obj)
+ ResourceManager:unload(spineAssetPath)
+ ResourceManager:unload(prefabPath)
+ end)
+ if parent then
+ uiSpineObject:setParent(parent, false)
+ end
+ if callback then
+ callback(uiSpineObject)
+ end
+ end)
+end
+
+function SpineManager:loadHeroAsync(id, parent, callback)
+ local path = "assets/prefabs/spine/mesh/characters/" .. id .. ".prefab"
+ ResourceManager:loadAsync(path, TYPE_OF_GAME_OBJECT, function(assetPath, prefab)
+ if parent and parent:isDestroyed() then
+ ResourceManager:destroyPrefab(prefab)
+ ResourceManager:unload(assetPath)
+ return
+ end
+ local characterObject = CharacterSpineObject:create()
+ characterObject:initWithPrefab(assetPath, prefab)
+ characterObject:addUnloadCallback(function(obj)
+ local modelPath = obj:getAssetPath()
+ if self.heroCacheMap[modelPath] then
+ ResourceManager:unload(modelPath)
+ else
+ if #self.heroCacheList >= HERO_CACHE_SIZE then
+ local headPath = table.remove(self.heroCacheList, 1)
+ ResourceManager:unload(headPath)
+ self.heroCacheMap[headPath] = nil
+ end
+ self.heroCacheMap[modelPath] = true
+ table.insert(self.heroCacheList, modelPath)
+ end
+ end)
+ if parent then
+ characterObject:setParent(parent, false)
+ end
+ if callback then
+ callback(characterObject)
+ end
+ end)
+end
+
+function SpineManager:loadHeroSpineAssetAsync(id, parent, callback)
+ if self.heroSpineAsset[id] then
+ callback(self.heroSpineAsset[id])
+ else
+ local path = string.format(HERO_SPINE_ASSET_PATH, id, id)
+ ResourceManager:loadOriginAssetAsync(path, TYPE_OF_SPINE_ASSET, function(spineAssetPath, spineAsset)
+ if parent and parent:isDestroyed() then
+ ResourceManager:unload(spineAssetPath)
+ return
+ end
+ if self.heroSpineAsset[id] then
+ ResourceManager:unload(spineAssetPath)
+ else
+ self.heroSpineAsset[id] = spineAsset
+ end
+ callback(spineAsset)
+ end)
+ end
+end
+
+function SpineManager:loadBattleSpineAssetAsync(path, parent, callback)
+ ResourceManager:loadOriginAssetAsync(path, TYPE_OF_SPINE_ASSET, function(spineAssetPath, spineAsset)
+ if parent and parent:isDestroyed() then
+ ResourceManager:unload(spineAssetPath)
+ return
+ end
+ callback(spineAssetPath, spineAsset)
+ end)
+end
+
+function SpineManager:loadBattleEffectAsync(path, parent, callback)
+ ResourceManager:loadAsync(path, TYPE_OF_GAME_OBJECT, function(assetPath, prefab)
+ if parent and parent:isDestroyed() then
+ ResourceManager:destroyPrefab(prefab)
+ ResourceManager:unload(assetPath)
+ return
+ end
+ local spineObject = CharacterSpineObject:create()
+ spineObject:initWithPrefab(assetPath, prefab)
+ spineObject:addUnloadCallback(function(obj)
+ local effectPath = obj:getAssetPath()
+ if self.battleCacheMap[effectPath] then
+ ResourceManager:unload(effectPath)
+ else
+ if #self.battleCacheList == BATTLE_CACHE_SIZE then
+ local headPath = table.remove(self.battleCacheList, 1)
+ ResourceManager:unload(headPath)
+ self.battleCacheMap[headPath] = nil
+ end
+ self.battleCacheMap[effectPath] = true
+ table.insert(self.battleCacheList, effectPath)
+ end
+ end)
+ if parent then
+ spineObject:setParent(parent, false)
+ end
+ if callback then
+ callback(spineObject)
+ end
+ end)
+end
+
+---- mesh renderer
+function SpineManager:loadMeshSpineAsync(name, parent, callback)
+ local path = string.format(MESH_SPINE_ASSET_PATH, name, name)
+ ResourceManager:loadOriginAssetAsync(path, TYPE_OF_SPINE_ASSET, function(spineAssetPath, spineAsset)
+ if parent and parent:isDestroyed() then
+ ResourceManager:unload(spineAssetPath)
+ return
+ end
+ self:loadMeshSpinePrefabAsync(parent, spineAssetPath, spineAsset, callback)
+ end)
+end
+
+function SpineManager:loadMeshSpinePrefabAsync(parent, spineAssetPath, spineAsset, callback)
+ ResourceManager:loadAsync(MESH_SPINE_PREFAB_PATH, TYPE_OF_GAME_OBJECT, function(prefabPath, prefab)
+ if parent and parent:isDestroyed() then
+ ResourceManager:destroyPrefab(prefab)
+ ResourceManager:unload(spineAssetPath)
+ ResourceManager:unload(prefabPath)
+ return
+ end
+ local meshSpineObject = MeshSpineObject:create()
+ meshSpineObject:initWithPrefab(MESH_SPINE_PREFAB_PATH, prefab)
+ meshSpineObject:getAnimationState()
+ meshSpineObject:initSkeletonDataAsset(spineAsset)
+ meshSpineObject:addUnloadCallback(function(obj)
+ ResourceManager:unload(spineAssetPath)
+ ResourceManager:unload(prefabPath)
+ end)
+ if parent then
+ meshSpineObject:setParent(parent, false)
+ end
+ if callback then
+ callback(meshSpineObject)
+ end
+ end)
+end
+
+return SpineManager
\ No newline at end of file
diff --git a/lua/app/common/spine_manager.lua.meta b/lua/app/common/spine_manager.lua.meta
new file mode 100644
index 00000000..89fd6f35
--- /dev/null
+++ b/lua/app/common/spine_manager.lua.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: edb03cc9c3cdb6a459f95589941d04b4
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/common/state_machine_manager.lua b/lua/app/common/state_machine_manager.lua
new file mode 100644
index 00000000..b155acf6
--- /dev/null
+++ b/lua/app/common/state_machine_manager.lua
@@ -0,0 +1,35 @@
+local StateMachineManager = {
+ fsmList = {}
+}
+
+---- 添加一个状态机
+function StateMachineManager:addStateMachine(fsm)
+ for k, v in ipairs(self.fsmList) do
+ if v == fsm then
+ return
+ end
+ end
+ table.insert(self.fsmList, fsm)
+end
+
+---- 移除一个状态机
+function StateMachineManager:removeStateMachine(fsm)
+ for index, value in ipairs(self.fsmList) do
+ if fsm == value then
+ fsm:stop()
+ table.remove(self.fsmList, index)
+ break
+ end
+ end
+end
+
+---- 每帧tick
+function StateMachineManager:tick()
+ for _, fsm in ipairs(self.fsmList) do
+ if fsm:getIsActive() then
+ fsm:tick()
+ end
+ end
+end
+
+return StateMachineManager
\ No newline at end of file
diff --git a/lua/app/common/state_machine_manager.lua.meta b/lua/app/common/state_machine_manager.lua.meta
new file mode 100644
index 00000000..3d5338ca
--- /dev/null
+++ b/lua/app/common/state_machine_manager.lua.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 8e40f566f0955d44d827d10d8bec59e0
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/common/texture_manager.lua b/lua/app/common/texture_manager.lua
new file mode 100644
index 00000000..b0e30cec
--- /dev/null
+++ b/lua/app/common/texture_manager.lua
@@ -0,0 +1,36 @@
+local TextureManager = { }
+
+function TextureManager:loadAtlas(prefabObject, atlasPath, callback)
+ ResourceManager:loadOriginAssetAsync(atlasPath, GConst.TYPEOF_UNITY_CLASS.BF_ATLAS, function(assetPath, asset)
+ if prefabObject:isDestroyed() then
+ ResourceManager:unload(assetPath)
+ return
+ end
+
+ callback(assetPath, asset)
+ end)
+end
+
+function TextureManager:unloadAtlas(atlasPath)
+ ResourceManager:unload(atlasPath)
+end
+
+
+function TextureManager:loadTextureAsync(prefabObject, texturePath, callback)
+ ResourceManager:loadOriginAssetAsync(texturePath, GConst.TYPEOF_UNITY_CLASS.TEXTURE_2D, function(assetPath, texture)
+ if prefabObject:isDestroyed() then
+ ResourceManager:unload(assetPath)
+ return
+ end
+
+ if callback then
+ callback(assetPath, texture)
+ end
+ end)
+end
+
+function TextureManager:unLoadTexture(texturePath)
+ ResourceManager:unload(texturePath)
+end
+
+return TextureManager
\ No newline at end of file
diff --git a/lua/app/common/texture_manager.lua.meta b/lua/app/common/texture_manager.lua.meta
new file mode 100644
index 00000000..abce603d
--- /dev/null
+++ b/lua/app/common/texture_manager.lua.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: c8a7ad54687bb0e4f84d61f30da3cf17
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/common/time.lua b/lua/app/common/time.lua
new file mode 100644
index 00000000..d92a3802
--- /dev/null
+++ b/lua/app/common/time.lua
@@ -0,0 +1,291 @@
+local Time = {
+ timeZoneOffset = 0,
+ differenceTime = 0,
+ todayTime = 0,
+}
+
+local SECONDS_PRE_DAY = 86400
+local SECONDS_PRE_HOUR = 3600
+local SECONDS_PRE_MINUTE = 60
+local DAY_PER_HOUR = 24
+
+local ZERO_TIME_STR = "00:00:00"
+local ZERO_TIME_STR_2 = "00:00"
+
+local UnityTime = CS.UnityEngine.Time
+
+-- 获取服务器的当前时间戳
+function Time:getServerTime()
+ if not self.serverTime then
+ return os.time()
+ end
+ return self.serverTime + self.differenceTime + GFunc.getTickCount()
+end
+
+function Time:getRealtimeSinceStartup()
+ return UnityTime.realtimeSinceStartup
+end
+
+-- 获取客户端时间戳
+-- function Time:getClientTime()
+-- return os.time()
+-- end
+
+-- 得到特定时间的时间戳
+function Time:getCertainTime(data)
+ local year = data.year or 0
+ local month = data.month or 0
+ local day = data.day or 0
+ local hour = data.hour or 0
+ local minute = data.minute or 0
+ local second = data.second or 0
+ return os.time({day = day, month = month, year = year, hour = hour, min = minute, sec = second})
+end
+
+-- 得到特定时间的时间戳
+-- 没有算时区差异,优先使用getCertainTimeByStr2
+function Time:getCertainTimeByStr(timeStr)
+ -- "2022-08-9 00:00:00"
+ if type(timeStr) ~= "string" then
+ return 0
+ end
+ timeStr = string.trim(timeStr)
+ local timeTab = {}
+ for i,v in string.gmatch(timeStr, "%d+") do
+ -- print(i, v)
+ table.insert(timeTab, i)
+ end
+ local year = timeTab[1]
+ local month = timeTab[2]
+ local day = timeTab[3]
+ local hour = timeTab[4]
+ local minute = timeTab[5]
+ local second = timeTab[6]
+ return os.time({day = day, month = month, year = year, hour = hour, min = minute, sec = second})
+end
+
+function Time:getCertainTimeByStr2(timeStr)
+ -- "2022-08-9 00:00:00"
+ if type(timeStr) ~= "string" then
+ return 0
+ end
+ timeStr = string.trim(timeStr)
+ local timeTab = {}
+ for i,v in string.gmatch(timeStr, "%d+") do
+ -- print(i, v)
+ table.insert(timeTab, i)
+ end
+ local year = timeTab[1]
+ local month = timeTab[2]
+ local day = timeTab[3]
+ local hour = timeTab[4]
+ local minute = timeTab[5]
+ local second = timeTab[6]
+ local time = os.time({day = day, month = month, year = year, hour = hour, min = minute, sec = second}) + Time:getClientTimeZone()*3600
+ return math.floor(time)
+end
+
+-- 格式化时间,返回os.data(finalTime)
+function Time:formatTimeExact(time)
+ local endTime = self:getServerTime() + time
+ return os.date("*t", endTime)
+end
+
+-- 格式化y/m/d时间,返回os.data(finalTime)
+function Time:formatTimeYMD(time)
+ time = time or Time:getServerTime()
+ local date = os.date("!*t", time)
+ return date.year .. "/" .. date.month .. "/" .. date.day
+end
+
+-- 格式化y/m/d/h/m/s时间,返回os.data(finalTime)
+function Time:formatTimeYMDHMS(time)
+ time = time or Time:getServerTime()
+ local date = os.date("!*t", time)
+ return date.year .. "/" .. date.month .. "/" .. date.day .. " " .. date.hour .. ":" .. date.min .. ":" .. date.sec
+end
+
+
+function Time:updateServerTimeToday(todayTime)
+ todayTime = todayTime or 0
+ self.todayTime = GFunc.formatTimeStep(todayTime)
+end
+
+function Time:updateServerTime(serverTime)
+ self.serverTime = (serverTime or 0) // 1000
+ self.differenceTime = -GFunc.getTickCount()
+ if EDITOR_MODE then
+ Logger.log("updateServerTime:%s", self.differenceTime)
+ end
+end
+
+function Time:updateByServer(serverTime, todayTime)
+ self:updateServerTime(serverTime)
+ self:updateServerTimeToday(todayTime)
+end
+
+function Time:setServerTimeZone(timeZone)
+ self.timeZoneOffset = timeZone - self:getClientTimeZone()
+end
+
+function Time:getClientTimeZone()
+ return os.difftime(os.time(), os.time(os.date("!*t", os.time())))/SECONDS_PRE_HOUR
+end
+
+function Time:getTimeZoneOffset()
+ return self.timeZoneOffset
+end
+
+function Time:getBeginningOfServerToday()
+ if Time:getServerTime() > self.todayTime + 86400 then
+ self.todayTime = self.todayTime + 86400
+ end
+ return self.todayTime
+end
+
+function Time:getOverOfServerToday(time)
+ if time then
+ local passS = time % SECONDS_PRE_DAY
+ if passS > 0 then
+ return time + SECONDS_PRE_DAY - passS
+ end
+ return time + SECONDS_PRE_DAY
+ end
+ return self:getBeginningOfServerToday() + SECONDS_PRE_DAY
+end
+
+function Time:getBeginningOfToday()
+ local now = os.date('*t', self:getServerTime() + self:getTimeZoneOffset()*SECONDS_PRE_HOUR)
+ local beginDay = os.time{year = now.year, month = now.month, day = now.day, hour = 0}
+ return beginDay - self:getTimeZoneOffset()*SECONDS_PRE_HOUR
+end
+
+function Time:getBeginningOfOneDay(t)
+ local now = os.date('*t', t + self:getTimeZoneOffset()*SECONDS_PRE_HOUR)
+ local beginDay = os.time{year = now.year, month = now.month, day = now.day, hour = 0}
+ return beginDay - self:getTimeZoneOffset()*SECONDS_PRE_HOUR
+end
+
+-- 判断时间是否是大于等于今天
+function Time:getTimeIsToday(time)
+ local todayBegin = self:getBeginningOfToday()
+ return time >= todayBegin
+end
+
+function Time:splitTime(time)
+ time = math.floor(time)
+ local reduceD = time % SECONDS_PRE_DAY
+ local day = math.floor(time/SECONDS_PRE_DAY)
+ local reduceH = reduceD % SECONDS_PRE_HOUR
+ local hour = math.floor(reduceD/SECONDS_PRE_HOUR)
+ local minute = math.floor(reduceH / SECONDS_PRE_MINUTE)
+ local second = reduceH % SECONDS_PRE_MINUTE
+ return day, hour, minute, second
+end
+
+-- 根据秒换算成向上取整hour的时间
+function Time:getCeilHourTime(time)
+ local count = time // 3600
+ if time % 3600 > 0 then
+ count = count + 1
+ end
+ return count
+end
+
+--每几秒 向上取整
+function Time:getCeilPerSecend(time, per)
+ local count = time // per
+ if time % per > 0 then
+ count = count + 1
+ end
+ return count
+end
+
+function Time:getDayofWeek(time)
+ local curTime = time or self:getServerTime()
+ local day = tonumber(os.date("%w", curTime))
+ day = day == 0 and 7 or day
+ return day
+end
+
+-- 00:00:00
+function Time:formatNumTime(time)
+ if time <= 0 then
+ return ZERO_TIME_STR
+ end
+ local reduceH = time % SECONDS_PRE_HOUR
+ local hour = math.floor(time / SECONDS_PRE_HOUR)
+ local minute = math.floor(reduceH / SECONDS_PRE_MINUTE)
+ local second = reduceH % SECONDS_PRE_MINUTE
+ return string.format("%.2d:%.2d:%.2d", hour, minute, second)
+end
+
+-- 00:00
+function Time:formatNumTimeMS(time)
+ if time <= 0 then
+ return ZERO_TIME_STR_2
+ end
+ local minute = math.floor(time / SECONDS_PRE_MINUTE)
+ local second = time % SECONDS_PRE_MINUTE
+ return string.format("%.2d:%.2d", minute, second)
+end
+
+-- 大于1天显示:X天X时 globalkey:ACTIVITY_TIME_STR_DH 小于1天显示:X时X分 globalkey:ACTIVITY_TIME_STR_HM 小于1小时显示:X分X秒 globalkey:ACTIVITY_TIME_STR_MS
+function Time:formatNumTimeStr(time)
+ if time <= 0 then
+ return I18N:getGlobalText(I18N.GlobalConst.TIME_STR_MS, 0, 0)
+ end
+ local day, hour, minute, second = Time:splitTime(time)
+ if time >= SECONDS_PRE_DAY then -- 大于1天显示:X天X时
+ return I18N:getGlobalText(I18N.GlobalConst.TIME_STR_DH, day, hour)
+ else
+ if time >= SECONDS_PRE_HOUR then -- 小于1天显示:X时X分
+ return I18N:getGlobalText(I18N.GlobalConst.TIME_STR_HM, hour, minute)
+ else --小于1小时显示:X分X秒
+ return I18N:getGlobalText(I18N.GlobalConst.TIME_STR_MS, minute, second)
+ end
+ end
+end
+
+---- 得到time周开始时的时间戳
+function Time:getWeekBeginTimeStamp(time)
+ time = time or self:getServerTime()
+ local remainDay = -self:getDayofWeek(time)
+ return self:getOverOfServerToday(time) + remainDay * SECONDS_PRE_DAY
+end
+
+---- 得到time周结束时的时间戳
+function Time:getWeekOverTimeStamp(time)
+ time = time or self:getServerTime()
+ local remainDay = 7 - self:getDayofWeek(time)
+ return self:getOverOfServerToday(time) + remainDay * SECONDS_PRE_DAY
+end
+
+---- 得到time月结束的时间戳
+function Time:getMonthOverTimeStamp(time)
+ time = time or self:getServerTime()
+ local now = os.date('!*t', time)
+ now.month = now.month + 1
+ if now.month > 12 then
+ now.year = now.year + now.month // 12
+ now.month = now.month % 12
+ end
+ local remainDay = os.date("%d", os.time({year = now.year, month = now.month, day = 0})) - now.day
+ return self:getOverOfServerToday(time) + remainDay * SECONDS_PRE_DAY
+end
+
+---- 得到当前处于本月的第几天
+function Time:getDayByTimeStamp(time)
+ time = time or self:getServerTime()
+ local now = os.date('!*t', time)
+ return now.day
+end
+
+-- 转换服务器时间字符串(ISO 8601)的对应的时间戳,例如2022-09-10T18:10:00.000Z
+function Time:convertServerTimeStringToTimestamp(str)
+ local dateTime = CS.System.DateTime.Parse(str)
+ local dateTimeOffset = CS.System.DateTimeOffset(dateTime)
+ return dateTimeOffset:ToUnixTimeSeconds()
+end
+
+return Time
\ No newline at end of file
diff --git a/lua/app/common/time.lua.meta b/lua/app/common/time.lua.meta
new file mode 100644
index 00000000..f7a5d273
--- /dev/null
+++ b/lua/app/common/time.lua.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: d9c1c2a447bacad408ce60760a6ea5b4
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/common/uiprefab_manager.lua b/lua/app/common/uiprefab_manager.lua
new file mode 100644
index 00000000..cc7f32a7
--- /dev/null
+++ b/lua/app/common/uiprefab_manager.lua
@@ -0,0 +1,29 @@
+local UIPrefabObject = require "app/bf/unity/uiprefab_object"
+
+local UIPrefabManager = {}
+
+local TypeOfGameObject = GConst.TYPEOF_UNITY_CLASS.GAME_OBJECT
+
+function UIPrefabManager:loadUIWidgetAsync(path, parent, callback)
+ ResourceManager:loadAsync(path, TypeOfGameObject, function(assetPath, prefab)
+ if parent and parent:isDestroyed() then
+ ResourceManager:destroyPrefab(prefab)
+ ResourceManager:unload(assetPath)
+ return
+ end
+ local prefabObject = UIPrefabObject:create()
+ prefabObject:initWithPrefab(assetPath, prefab)
+ prefabObject:initPrefabHelper()
+ prefabObject:addUnloadCallback(function(obj)
+ ResourceManager:unload(obj:getAssetPath())
+ end)
+ if parent then
+ prefabObject:setParent(parent, false)
+ end
+ if callback then
+ callback(prefabObject)
+ end
+ end)
+end
+
+return UIPrefabManager
\ No newline at end of file
diff --git a/lua/app/common/uiprefab_manager.lua.meta b/lua/app/common/uiprefab_manager.lua.meta
new file mode 100644
index 00000000..b5519d80
--- /dev/null
+++ b/lua/app/common/uiprefab_manager.lua.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 250f23ee575356f40982bf9bf4a1791e
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/common/version_compatible.lua b/lua/app/common/version_compatible.lua
new file mode 100644
index 00000000..06e97373
--- /dev/null
+++ b/lua/app/common/version_compatible.lua
@@ -0,0 +1,13 @@
+local VersionCompatible = {}
+
+local CLIENT_VERSION = CS.BF.BFMain.CLIENT_VERSION or 0
+
+function VersionCompatible:canUpdateMailVersion()
+ return CLIENT_VERSION > 1
+end
+
+function VersionCompatible:supportDataEncryptVersion()
+ return CLIENT_VERSION > 1
+end
+
+return VersionCompatible
diff --git a/lua/app/common/version_compatible.lua.meta b/lua/app/common/version_compatible.lua.meta
new file mode 100644
index 00000000..84cbabe8
--- /dev/null
+++ b/lua/app/common/version_compatible.lua.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 374567b2ce02af2498a716627920651f
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/common/webrequest_manager.lua b/lua/app/common/webrequest_manager.lua
new file mode 100644
index 00000000..a7454aef
--- /dev/null
+++ b/lua/app/common/webrequest_manager.lua
@@ -0,0 +1,36 @@
+local WebRequestManager = {}
+WebRequestManager.initServerTime = false
+WebRequestManager.AUTH_LOGIN = "users"
+
+function WebRequestManager:init()
+ self.csWebRequestMgr = CS.BF.BFMain.Instance.WebRequestMgr
+end
+
+function WebRequestManager:valid()
+ return nil ~= self.csWebRequestMgr
+end
+
+function WebRequestManager:post(url, fields, callback)
+ if not self:valid() then
+ return
+ end
+ self.csWebRequestMgr:Post(url, fields, callback)
+end
+
+function WebRequestManager:postForm(url, fields, callback)
+ if not self:valid() then
+ return
+ end
+
+ self.csWebRequestMgr:PostForm(url, fields, callback)
+end
+
+function WebRequestManager:get(url, callback)
+ if not self:valid() then
+ return
+ end
+
+ self.csWebRequestMgr:Get(url, callback)
+end
+
+return WebRequestManager
\ No newline at end of file
diff --git a/lua/app/common/webrequest_manager.lua.meta b/lua/app/common/webrequest_manager.lua.meta
new file mode 100644
index 00000000..5fb0caad
--- /dev/null
+++ b/lua/app/common/webrequest_manager.lua.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: e58b80f79e6de8847a99076867b41dd8
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/common/white_res_manager.lua b/lua/app/common/white_res_manager.lua
new file mode 100644
index 00000000..9eeb5be2
--- /dev/null
+++ b/lua/app/common/white_res_manager.lua
@@ -0,0 +1,67 @@
+local WhiteResManager = {}
+
+
+---- 游戏资源白名单
+local GAME_RES_WHITE_LIST = {
+ -- ui
+ GConst.ATLAS_PATH.COMMON,
+ -- icon
+ GConst.ATLAS_PATH.ICON_SKILL,
+ GConst.ATLAS_PATH.ICON_ITEM,
+ GConst.ATLAS_PATH.ICON_EQUIP,
+ GConst.ATLAS_PATH.ICON_AVATAR,
+ GConst.ATLAS_PATH.ICON_RUNE,
+ GConst.ATLAS_PATH.ICON_LEGACY,
+ -- hero
+ GConst.SPINE_ASSET_PATH.P0001,
+ GConst.SPINE_ASSET_PATH.P0002,
+ GConst.SPINE_ASSET_PATH.P0003,
+ GConst.SPINE_ASSET_PATH.P0004,
+ -- 战斗伤害字体
+ "assets/arts/fonts/tmpfonts/battle/font_battle_sdf.asset",
+}
+
+---- 预加载游戏资源
+function WhiteResManager:gamePreLoad(progressCallback, readyCallback)
+ self.loaded = true
+ local totalCount = #GAME_RES_WHITE_LIST
+ local readyCount = 0
+ local progress = 0
+
+ self.progressCallback = progressCallback
+ self.readyCallback = readyCallback
+
+ local function preloadRes(resPath)
+ ResourceManager:loadOriginAssetAsync(resPath, GConst.TYPEOF_UNITY_CLASS.OBJECT, function(assetsPath, asset)
+ readyCount = readyCount + 1
+ progress = readyCount / totalCount
+
+ if self.progressCallback then
+ self.progressCallback(progress)
+ end
+
+ if readyCount == totalCount then
+ if self.readyCallback then
+ self.readyCallback()
+ end
+ self.progressCallback = nil
+ self.readyCallback = nil
+ end
+ end)
+ end
+
+ for _, resPath in ipairs(GAME_RES_WHITE_LIST) do
+ preloadRes(resPath)
+ end
+end
+
+function WhiteResManager:clearCallback()
+ self.progressCallback = nil
+ self.readyCallback = nil
+end
+
+function WhiteResManager:isLoaded()
+ return self.loaded
+end
+
+return WhiteResManager
\ No newline at end of file
diff --git a/lua/app/common/white_res_manager.lua.meta b/lua/app/common/white_res_manager.lua.meta
new file mode 100644
index 00000000..76c2979a
--- /dev/null
+++ b/lua/app/common/white_res_manager.lua.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: bb96158024efbac44ae8567dc3a675bc
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/config.meta b/lua/app/config.meta
new file mode 100644
index 00000000..d3489815
--- /dev/null
+++ b/lua/app/config.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 2d6bf44b77cda22488249f5b2f27d8eb
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/config/acceleration.lua b/lua/app/config/acceleration.lua
new file mode 100644
index 00000000..dfcf6e67
--- /dev/null
+++ b/lua/app/config/acceleration.lua
@@ -0,0 +1,10 @@
+local acceleration = {
+ [1]={
+ ["time"]=1200,
+ ["effect"]=2
+ }
+}
+local config = {
+data=acceleration,count=1
+}
+return config
\ No newline at end of file
diff --git a/lua/app/config/acceleration.lua.meta b/lua/app/config/acceleration.lua.meta
new file mode 100644
index 00000000..06abbd0a
--- /dev/null
+++ b/lua/app/config/acceleration.lua.meta
@@ -0,0 +1,10 @@
+fileFormatVersion: 2
+guid: e0a150ac82d9bc145a60899ac60d7575
+ScriptedImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 2
+ userData:
+ assetBundleName:
+ assetBundleVariant:
+ script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
diff --git a/lua/app/config/act_battle_pass.lua b/lua/app/config/act_battle_pass.lua
new file mode 100644
index 00000000..610109c8
--- /dev/null
+++ b/lua/app/config/act_battle_pass.lua
@@ -0,0 +1,750 @@
+local act_battle_pass = {
+ [1]={
+ ["mall_id"]=70001,
+ ["exp"]=0,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["id"]=21,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ },
+ ["reward_pro"]={
+ {
+ ["type"]=1,
+ ["id"]=22,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ }
+ },
+ [2]={
+ ["mall_id"]=70001,
+ ["exp"]=100,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["id"]=18,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ },
+ ["reward_pro"]={
+ {
+ ["type"]=1,
+ ["id"]=21,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ }
+ },
+ [3]={
+ ["mall_id"]=70001,
+ ["exp"]=100,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["id"]=4,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ },
+ ["reward_pro"]={
+ {
+ ["type"]=1,
+ ["id"]=4,
+ ["count"]={
+ ["value"]=5,
+ ["unit"]=0
+ }
+ }
+ }
+ },
+ [4]={
+ ["mall_id"]=70001,
+ ["exp"]=100,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["id"]=18,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ },
+ ["reward_pro"]={
+ {
+ ["type"]=1,
+ ["id"]=21,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ }
+ },
+ [5]={
+ ["mall_id"]=70001,
+ ["exp"]=100,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["id"]=21,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ },
+ ["reward_pro"]={
+ {
+ ["type"]=1,
+ ["id"]=22,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ }
+ },
+ [6]={
+ ["mall_id"]=70001,
+ ["exp"]=100,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["id"]=18,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ },
+ ["reward_pro"]={
+ {
+ ["type"]=1,
+ ["id"]=21,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ }
+ },
+ [7]={
+ ["mall_id"]=70001,
+ ["exp"]=100,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["id"]=18,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ },
+ ["reward_pro"]={
+ {
+ ["type"]=4,
+ ["id"]=40504,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ }
+ },
+ [8]={
+ ["mall_id"]=70001,
+ ["exp"]=100,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["id"]=18,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ },
+ ["reward_pro"]={
+ {
+ ["type"]=1,
+ ["id"]=21,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ }
+ },
+ [9]={
+ ["mall_id"]=70001,
+ ["exp"]=100,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["id"]=21,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ },
+ ["reward_pro"]={
+ {
+ ["type"]=1,
+ ["id"]=22,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ }
+ },
+ [10]={
+ ["mall_id"]=70001,
+ ["exp"]=100,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["id"]=18,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ },
+ ["reward_pro"]={
+ {
+ ["type"]=1,
+ ["id"]=21,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ }
+ },
+ [11]={
+ ["mall_id"]=70001,
+ ["exp"]=100,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["id"]=5,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ },
+ ["reward_pro"]={
+ {
+ ["type"]=1,
+ ["id"]=5,
+ ["count"]={
+ ["value"]=5,
+ ["unit"]=0
+ }
+ }
+ }
+ },
+ [12]={
+ ["mall_id"]=70001,
+ ["exp"]=100,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["id"]=18,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ },
+ ["reward_pro"]={
+ {
+ ["type"]=1,
+ ["id"]=21,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ }
+ },
+ [13]={
+ ["mall_id"]=70001,
+ ["exp"]=100,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["id"]=21,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ },
+ ["reward_pro"]={
+ {
+ ["type"]=1,
+ ["id"]=22,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ }
+ },
+ [14]={
+ ["mall_id"]=70001,
+ ["exp"]=100,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["id"]=18,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ },
+ ["reward_pro"]={
+ {
+ ["type"]=1,
+ ["id"]=21,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ }
+ },
+ [15]={
+ ["mall_id"]=70001,
+ ["exp"]=100,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["id"]=18,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ },
+ ["reward_pro"]={
+ {
+ ["type"]=4,
+ ["id"]=40504,
+ ["count"]={
+ ["value"]=50,
+ ["unit"]=0
+ }
+ }
+ }
+ },
+ [16]={
+ ["mall_id"]=70001,
+ ["exp"]=100,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["id"]=18,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ },
+ ["reward_pro"]={
+ {
+ ["type"]=1,
+ ["id"]=21,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ }
+ },
+ [17]={
+ ["mall_id"]=70001,
+ ["exp"]=100,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["id"]=21,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ },
+ ["reward_pro"]={
+ {
+ ["type"]=1,
+ ["id"]=22,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ }
+ },
+ [18]={
+ ["mall_id"]=70001,
+ ["exp"]=100,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["id"]=18,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ },
+ ["reward_pro"]={
+ {
+ ["type"]=1,
+ ["id"]=21,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ }
+ },
+ [19]={
+ ["mall_id"]=70001,
+ ["exp"]=100,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["id"]=6,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ },
+ ["reward_pro"]={
+ {
+ ["type"]=1,
+ ["id"]=6,
+ ["count"]={
+ ["value"]=5,
+ ["unit"]=0
+ }
+ }
+ }
+ },
+ [20]={
+ ["mall_id"]=70001,
+ ["exp"]=100,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["id"]=18,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ },
+ ["reward_pro"]={
+ {
+ ["type"]=1,
+ ["id"]=21,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ }
+ },
+ [21]={
+ ["mall_id"]=70001,
+ ["exp"]=100,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["id"]=21,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ },
+ ["reward_pro"]={
+ {
+ ["type"]=1,
+ ["id"]=22,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ }
+ },
+ [22]={
+ ["mall_id"]=70001,
+ ["exp"]=100,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["id"]=18,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ },
+ ["reward_pro"]={
+ {
+ ["type"]=1,
+ ["id"]=21,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ }
+ },
+ [23]={
+ ["mall_id"]=70001,
+ ["exp"]=100,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["id"]=18,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ },
+ ["reward_pro"]={
+ {
+ ["type"]=4,
+ ["id"]=40504,
+ ["count"]={
+ ["value"]=100,
+ ["unit"]=0
+ }
+ }
+ }
+ },
+ [24]={
+ ["mall_id"]=70001,
+ ["exp"]=100,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["id"]=18,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ },
+ ["reward_pro"]={
+ {
+ ["type"]=1,
+ ["id"]=21,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ }
+ },
+ [25]={
+ ["mall_id"]=70001,
+ ["exp"]=100,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["id"]=21,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ },
+ ["reward_pro"]={
+ {
+ ["type"]=1,
+ ["id"]=22,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ }
+ },
+ [26]={
+ ["mall_id"]=70001,
+ ["exp"]=100,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["id"]=18,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ },
+ ["reward_pro"]={
+ {
+ ["type"]=1,
+ ["id"]=21,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ }
+ },
+ [27]={
+ ["mall_id"]=70001,
+ ["exp"]=100,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["id"]=16,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ },
+ ["reward_pro"]={
+ {
+ ["type"]=1,
+ ["id"]=16,
+ ["count"]={
+ ["value"]=5,
+ ["unit"]=0
+ }
+ }
+ }
+ },
+ [28]={
+ ["mall_id"]=70001,
+ ["exp"]=100,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["id"]=18,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ },
+ ["reward_pro"]={
+ {
+ ["type"]=1,
+ ["id"]=21,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ }
+ },
+ [29]={
+ ["mall_id"]=70001,
+ ["exp"]=100,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["id"]=21,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ },
+ ["reward_pro"]={
+ {
+ ["type"]=1,
+ ["id"]=22,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ }
+ },
+ [30]={
+ ["mall_id"]=70001,
+ ["exp"]=100,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["id"]=22,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ },
+ ["reward_pro"]={
+ {
+ ["type"]=4,
+ ["id"]=40504,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ }
+ },
+ [31]={
+ ["mall_id"]=70001,
+ ["exp"]=200,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["id"]=18,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ },
+ ["reward_pro"]={
+ {
+ ["type"]=1,
+ ["id"]=21,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ }
+ }
+}
+local config = {
+data=act_battle_pass,count=31
+}
+return config
\ No newline at end of file
diff --git a/lua/app/config/act_battle_pass.lua.meta b/lua/app/config/act_battle_pass.lua.meta
new file mode 100644
index 00000000..2ac8aaa0
--- /dev/null
+++ b/lua/app/config/act_battle_pass.lua.meta
@@ -0,0 +1,10 @@
+fileFormatVersion: 2
+guid: 68850a86c31eac44ca5985ffb88874ff
+ScriptedImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 2
+ userData:
+ assetBundleName:
+ assetBundleVariant:
+ script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
diff --git a/lua/app/config/act_battle_pass_task.lua b/lua/app/config/act_battle_pass_task.lua
new file mode 100644
index 00000000..9716b367
--- /dev/null
+++ b/lua/app/config/act_battle_pass_task.lua
@@ -0,0 +1,132 @@
+local act_battle_pass_task = {
+ [1]={
+ ["mall_id"]=70001,
+ ["type"]=1,
+ ["parameter"]=500,
+ ["exp_reward"]={
+ ["type"]=1,
+ ["id"]=19,
+ ["count"]={
+ ["value"]=20,
+ ["unit"]=0
+ }
+ },
+ ["refresh_type"]=1
+ },
+ [2]={
+ ["mall_id"]=70001,
+ ["type"]=3,
+ ["parameter"]=100,
+ ["exp_reward"]={
+ ["type"]=1,
+ ["id"]=19,
+ ["count"]={
+ ["value"]=20,
+ ["unit"]=0
+ }
+ },
+ ["refresh_type"]=1
+ },
+ [3]={
+ ["mall_id"]=70001,
+ ["type"]=15,
+ ["parameter"]=60,
+ ["exp_reward"]={
+ ["type"]=1,
+ ["id"]=19,
+ ["count"]={
+ ["value"]=20,
+ ["unit"]=0
+ }
+ },
+ ["refresh_type"]=1
+ },
+ [4]={
+ ["mall_id"]=70001,
+ ["type"]=27,
+ ["parameter"]=4,
+ ["exp_reward"]={
+ ["type"]=1,
+ ["id"]=19,
+ ["count"]={
+ ["value"]=20,
+ ["unit"]=0
+ }
+ },
+ ["refresh_type"]=1
+ },
+ [5]={
+ ["mall_id"]=70001,
+ ["type"]=28,
+ ["parameter"]=4,
+ ["exp_reward"]={
+ ["type"]=1,
+ ["id"]=19,
+ ["count"]={
+ ["value"]=20,
+ ["unit"]=0
+ }
+ },
+ ["refresh_type"]=1
+ },
+ [6]={
+ ["mall_id"]=70001,
+ ["type"]=29,
+ ["parameter"]=4,
+ ["exp_reward"]={
+ ["type"]=1,
+ ["id"]=19,
+ ["count"]={
+ ["value"]=20,
+ ["unit"]=0
+ }
+ },
+ ["refresh_type"]=1
+ },
+ [7]={
+ ["mall_id"]=70001,
+ ["type"]=31,
+ ["parameter"]=4,
+ ["exp_reward"]={
+ ["type"]=1,
+ ["id"]=19,
+ ["count"]={
+ ["value"]=20,
+ ["unit"]=0
+ }
+ },
+ ["refresh_type"]=1
+ },
+ [8]={
+ ["mall_id"]=70001,
+ ["type"]=6,
+ ["parameter"]=1,
+ ["exp_reward"]={
+ ["type"]=1,
+ ["id"]=19,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ },
+ ["refresh_type"]=2
+ },
+ [9]={
+ ["mall_id"]=70001,
+ ["type"]=1,
+ ["parameter"]=1000,
+ ["exp_reward"]={
+ ["type"]=1,
+ ["id"]=19,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ },
+ ["refresh_type"]=2
+ }
+}
+local config = {
+data=act_battle_pass_task,count=9
+}
+return config
\ No newline at end of file
diff --git a/lua/app/config/act_battle_pass_task.lua.meta b/lua/app/config/act_battle_pass_task.lua.meta
new file mode 100644
index 00000000..4c4a78c4
--- /dev/null
+++ b/lua/app/config/act_battle_pass_task.lua.meta
@@ -0,0 +1,10 @@
+fileFormatVersion: 2
+guid: db35f138cecb99d48b2069c700e2d562
+ScriptedImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 2
+ userData:
+ assetBundleName:
+ assetBundleVariant:
+ script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
diff --git a/lua/app/config/act_fund.lua b/lua/app/config/act_fund.lua
new file mode 100644
index 00000000..6f4b9e14
--- /dev/null
+++ b/lua/app/config/act_fund.lua
@@ -0,0 +1,84 @@
+local act_fund = {
+ [60000]={
+ ["type"]=1,
+ ["price"]=0,
+ ["reward_id"]={
+ 101,
+ 102,
+ 103,
+ 104,
+ 105,
+ 106,
+ 107,
+ 108,
+ 109,
+ 110,
+ 111,
+ 112,
+ 113,
+ 114,
+ 115,
+ 116,
+ 117,
+ 118,
+ 119,
+ 120
+ }
+ },
+ [60001]={
+ ["type"]=1,
+ ["price"]=1,
+ ["reward_id"]={
+ 101,
+ 102,
+ 103,
+ 104,
+ 105,
+ 106,
+ 107,
+ 108,
+ 109,
+ 110,
+ 111,
+ 112,
+ 113,
+ 114,
+ 115,
+ 116,
+ 117,
+ 118,
+ 119,
+ 120
+ }
+ },
+ [60002]={
+ ["type"]=1,
+ ["price"]=2,
+ ["reward_id"]={
+ 101,
+ 102,
+ 103,
+ 104,
+ 105,
+ 106,
+ 107,
+ 108,
+ 109,
+ 110,
+ 111,
+ 112,
+ 113,
+ 114,
+ 115,
+ 116,
+ 117,
+ 118,
+ 119,
+ 120
+ }
+ }
+}
+local config = {
+data=act_fund,count=3
+}
+return config
\ No newline at end of file
diff --git a/lua/app/config/act_fund.lua.meta b/lua/app/config/act_fund.lua.meta
new file mode 100644
index 00000000..519f73ae
--- /dev/null
+++ b/lua/app/config/act_fund.lua.meta
@@ -0,0 +1,10 @@
+fileFormatVersion: 2
+guid: 75d1c8a647228104cbee2e64b78321f6
+ScriptedImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 2
+ userData:
+ assetBundleName:
+ assetBundleVariant:
+ script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
diff --git a/lua/app/config/act_fund_reward.lua b/lua/app/config/act_fund_reward.lua
new file mode 100644
index 00000000..d4280842
--- /dev/null
+++ b/lua/app/config/act_fund_reward.lua
@@ -0,0 +1,566 @@
+local act_fund_reward = {
+ [101]={
+ ["unlock_type"]=1,
+ ["unlock_request"]=10,
+ ["reward_free"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=500,
+ ["unit"]=0
+ }
+ },
+ ["reward_low"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=3000,
+ ["unit"]=0
+ }
+ },
+ ["reward_high"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=10000,
+ ["unit"]=0
+ }
+ }
+ },
+ [102]={
+ ["unlock_type"]=1,
+ ["unlock_request"]=30,
+ ["reward_free"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=500,
+ ["unit"]=0
+ }
+ },
+ ["reward_low"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=3000,
+ ["unit"]=0
+ }
+ },
+ ["reward_high"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=10000,
+ ["unit"]=0
+ }
+ }
+ },
+ [103]={
+ ["unlock_type"]=1,
+ ["unlock_request"]=50,
+ ["reward_free"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=500,
+ ["unit"]=0
+ }
+ },
+ ["reward_low"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=3000,
+ ["unit"]=0
+ }
+ },
+ ["reward_high"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=10000,
+ ["unit"]=0
+ }
+ }
+ },
+ [104]={
+ ["unlock_type"]=1,
+ ["unlock_request"]=100,
+ ["reward_free"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=500,
+ ["unit"]=0
+ }
+ },
+ ["reward_low"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=3000,
+ ["unit"]=0
+ }
+ },
+ ["reward_high"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=10000,
+ ["unit"]=0
+ }
+ }
+ },
+ [105]={
+ ["unlock_type"]=1,
+ ["unlock_request"]=150,
+ ["reward_free"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=500,
+ ["unit"]=0
+ }
+ },
+ ["reward_low"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=3000,
+ ["unit"]=0
+ }
+ },
+ ["reward_high"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=10000,
+ ["unit"]=0
+ }
+ }
+ },
+ [106]={
+ ["unlock_type"]=1,
+ ["unlock_request"]=200,
+ ["reward_free"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=500,
+ ["unit"]=0
+ }
+ },
+ ["reward_low"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=3000,
+ ["unit"]=0
+ }
+ },
+ ["reward_high"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=10000,
+ ["unit"]=0
+ }
+ }
+ },
+ [107]={
+ ["unlock_type"]=1,
+ ["unlock_request"]=250,
+ ["reward_free"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=500,
+ ["unit"]=0
+ }
+ },
+ ["reward_low"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=3000,
+ ["unit"]=0
+ }
+ },
+ ["reward_high"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=10000,
+ ["unit"]=0
+ }
+ }
+ },
+ [108]={
+ ["unlock_type"]=1,
+ ["unlock_request"]=300,
+ ["reward_free"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=500,
+ ["unit"]=0
+ }
+ },
+ ["reward_low"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=3000,
+ ["unit"]=0
+ }
+ },
+ ["reward_high"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=10000,
+ ["unit"]=0
+ }
+ }
+ },
+ [109]={
+ ["unlock_type"]=1,
+ ["unlock_request"]=400,
+ ["reward_free"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=500,
+ ["unit"]=0
+ }
+ },
+ ["reward_low"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=3000,
+ ["unit"]=0
+ }
+ },
+ ["reward_high"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=10000,
+ ["unit"]=0
+ }
+ }
+ },
+ [110]={
+ ["unlock_type"]=1,
+ ["unlock_request"]=500,
+ ["reward_free"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=500,
+ ["unit"]=0
+ }
+ },
+ ["reward_low"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=3000,
+ ["unit"]=0
+ }
+ },
+ ["reward_high"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=10000,
+ ["unit"]=0
+ }
+ }
+ },
+ [111]={
+ ["unlock_type"]=1,
+ ["unlock_request"]=600,
+ ["reward_free"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=500,
+ ["unit"]=0
+ }
+ },
+ ["reward_low"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=3000,
+ ["unit"]=0
+ }
+ },
+ ["reward_high"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=10000,
+ ["unit"]=0
+ }
+ }
+ },
+ [112]={
+ ["unlock_type"]=1,
+ ["unlock_request"]=700,
+ ["reward_free"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=500,
+ ["unit"]=0
+ }
+ },
+ ["reward_low"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=3000,
+ ["unit"]=0
+ }
+ },
+ ["reward_high"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=10000,
+ ["unit"]=0
+ }
+ }
+ },
+ [113]={
+ ["unlock_type"]=1,
+ ["unlock_request"]=800,
+ ["reward_free"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=500,
+ ["unit"]=0
+ }
+ },
+ ["reward_low"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=3000,
+ ["unit"]=0
+ }
+ },
+ ["reward_high"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=10000,
+ ["unit"]=0
+ }
+ }
+ },
+ [114]={
+ ["unlock_type"]=1,
+ ["unlock_request"]=900,
+ ["reward_free"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=500,
+ ["unit"]=0
+ }
+ },
+ ["reward_low"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=3000,
+ ["unit"]=0
+ }
+ },
+ ["reward_high"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=10000,
+ ["unit"]=0
+ }
+ }
+ },
+ [115]={
+ ["unlock_type"]=1,
+ ["unlock_request"]=1000,
+ ["reward_free"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=500,
+ ["unit"]=0
+ }
+ },
+ ["reward_low"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=3000,
+ ["unit"]=0
+ }
+ },
+ ["reward_high"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=10000,
+ ["unit"]=0
+ }
+ }
+ },
+ [116]={
+ ["unlock_type"]=1,
+ ["unlock_request"]=1200,
+ ["reward_free"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=500,
+ ["unit"]=0
+ }
+ },
+ ["reward_low"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=3000,
+ ["unit"]=0
+ }
+ },
+ ["reward_high"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=10000,
+ ["unit"]=0
+ }
+ }
+ },
+ [117]={
+ ["unlock_type"]=1,
+ ["unlock_request"]=1400,
+ ["reward_free"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=500,
+ ["unit"]=0
+ }
+ },
+ ["reward_low"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=3000,
+ ["unit"]=0
+ }
+ },
+ ["reward_high"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=10000,
+ ["unit"]=0
+ }
+ }
+ },
+ [118]={
+ ["unlock_type"]=1,
+ ["unlock_request"]=1600,
+ ["reward_free"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=500,
+ ["unit"]=0
+ }
+ },
+ ["reward_low"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=3000,
+ ["unit"]=0
+ }
+ },
+ ["reward_high"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=10000,
+ ["unit"]=0
+ }
+ }
+ },
+ [119]={
+ ["unlock_type"]=1,
+ ["unlock_request"]=1800,
+ ["reward_free"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=500,
+ ["unit"]=0
+ }
+ },
+ ["reward_low"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=3000,
+ ["unit"]=0
+ }
+ },
+ ["reward_high"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=10000,
+ ["unit"]=0
+ }
+ }
+ },
+ [120]={
+ ["unlock_type"]=1,
+ ["unlock_request"]=2000,
+ ["reward_free"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=500,
+ ["unit"]=0
+ }
+ },
+ ["reward_low"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=3000,
+ ["unit"]=0
+ }
+ },
+ ["reward_high"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=10000,
+ ["unit"]=0
+ }
+ }
+ }
+}
+local config = {
+data=act_fund_reward,count=20
+}
+return config
\ No newline at end of file
diff --git a/lua/app/config/act_fund_reward.lua.meta b/lua/app/config/act_fund_reward.lua.meta
new file mode 100644
index 00000000..55af39e4
--- /dev/null
+++ b/lua/app/config/act_fund_reward.lua.meta
@@ -0,0 +1,10 @@
+fileFormatVersion: 2
+guid: 16e310f9bb623ce4a99976bcd8022dfc
+ScriptedImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 2
+ userData:
+ assetBundleName:
+ assetBundleVariant:
+ script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
diff --git a/lua/app/config/act_sevenday_quest.lua b/lua/app/config/act_sevenday_quest.lua
new file mode 100644
index 00000000..802d9c96
--- /dev/null
+++ b/lua/app/config/act_sevenday_quest.lua
@@ -0,0 +1,916 @@
+local act_sevenday_quest = {
+ [1]={
+ ["day"]=1,
+ ["number"]=1,
+ ["type"]=6,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [2]={
+ ["day"]=1,
+ ["number"]=100,
+ ["type"]=2,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [3]={
+ ["day"]=1,
+ ["number"]=2,
+ ["type"]=10,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [4]={
+ ["day"]=1,
+ ["number"]=2,
+ ["type"]=11,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [5]={
+ ["day"]=1,
+ ["number"]=800,
+ ["type"]=24,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [6]={
+ ["day"]=1,
+ ["number"]=800,
+ ["type"]=25,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [7]={
+ ["day"]=1,
+ ["number"]=50,
+ ["type"]=7,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [8]={
+ ["day"]=1,
+ ["number"]=50,
+ ["type"]=8,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [9]={
+ ["day"]=1,
+ ["number"]=50,
+ ["type"]=9,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [10]={
+ ["day"]=1,
+ ["number"]=5,
+ ["type"]=4,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [11]={
+ ["day"]=2,
+ ["number"]=2,
+ ["type"]=6,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [12]={
+ ["day"]=2,
+ ["number"]=200,
+ ["type"]=2,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [13]={
+ ["day"]=2,
+ ["number"]=2,
+ ["type"]=12,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [14]={
+ ["day"]=2,
+ ["number"]=1,
+ ["type"]=22,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [15]={
+ ["day"]=2,
+ ["number"]=50,
+ ["type"]=15,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [16]={
+ ["day"]=2,
+ ["number"]=2,
+ ["type"]=16,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [17]={
+ ["day"]=2,
+ ["number"]=2,
+ ["type"]=17,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [18]={
+ ["day"]=2,
+ ["number"]=3,
+ ["type"]=18,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [19]={
+ ["day"]=2,
+ ["number"]=100,
+ ["type"]=20,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [20]={
+ ["day"]=2,
+ ["number"]=5,
+ ["type"]=21,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [21]={
+ ["day"]=3,
+ ["number"]=3,
+ ["type"]=6,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [22]={
+ ["day"]=3,
+ ["number"]=300,
+ ["type"]=2,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [23]={
+ ["day"]=3,
+ ["number"]=4,
+ ["type"]=10,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [24]={
+ ["day"]=3,
+ ["number"]=4,
+ ["type"]=11,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [25]={
+ ["day"]=3,
+ ["number"]=2400,
+ ["type"]=24,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [26]={
+ ["day"]=3,
+ ["number"]=2400,
+ ["type"]=25,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [27]={
+ ["day"]=3,
+ ["number"]=300,
+ ["type"]=7,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [28]={
+ ["day"]=3,
+ ["number"]=300,
+ ["type"]=8,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [29]={
+ ["day"]=3,
+ ["number"]=300,
+ ["type"]=9,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [30]={
+ ["day"]=3,
+ ["number"]=20,
+ ["type"]=4,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [31]={
+ ["day"]=4,
+ ["number"]=4,
+ ["type"]=6,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [32]={
+ ["day"]=4,
+ ["number"]=400,
+ ["type"]=2,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [33]={
+ ["day"]=4,
+ ["number"]=6,
+ ["type"]=12,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [34]={
+ ["day"]=4,
+ ["number"]=3,
+ ["type"]=22,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [35]={
+ ["day"]=4,
+ ["number"]=200,
+ ["type"]=15,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [36]={
+ ["day"]=4,
+ ["number"]=6,
+ ["type"]=16,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [37]={
+ ["day"]=4,
+ ["number"]=6,
+ ["type"]=17,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [38]={
+ ["day"]=4,
+ ["number"]=10,
+ ["type"]=18,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [39]={
+ ["day"]=4,
+ ["number"]=300,
+ ["type"]=20,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [40]={
+ ["day"]=4,
+ ["number"]=20,
+ ["type"]=21,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [41]={
+ ["day"]=5,
+ ["number"]=5,
+ ["type"]=6,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [42]={
+ ["day"]=5,
+ ["number"]=500,
+ ["type"]=2,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [43]={
+ ["day"]=5,
+ ["number"]=7,
+ ["type"]=10,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [44]={
+ ["day"]=5,
+ ["number"]=7,
+ ["type"]=11,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [45]={
+ ["day"]=5,
+ ["number"]=3600,
+ ["type"]=24,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [46]={
+ ["day"]=5,
+ ["number"]=3600,
+ ["type"]=25,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [47]={
+ ["day"]=5,
+ ["number"]=600,
+ ["type"]=7,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [48]={
+ ["day"]=5,
+ ["number"]=600,
+ ["type"]=8,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [49]={
+ ["day"]=5,
+ ["number"]=600,
+ ["type"]=9,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [50]={
+ ["day"]=5,
+ ["number"]=30,
+ ["type"]=4,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [51]={
+ ["day"]=6,
+ ["number"]=6,
+ ["type"]=6,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [52]={
+ ["day"]=6,
+ ["number"]=600,
+ ["type"]=2,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [53]={
+ ["day"]=6,
+ ["number"]=8,
+ ["type"]=12,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [54]={
+ ["day"]=6,
+ ["number"]=5,
+ ["type"]=22,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [55]={
+ ["day"]=6,
+ ["number"]=300,
+ ["type"]=15,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [56]={
+ ["day"]=6,
+ ["number"]=10,
+ ["type"]=16,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [57]={
+ ["day"]=6,
+ ["number"]=10,
+ ["type"]=17,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [58]={
+ ["day"]=6,
+ ["number"]=15,
+ ["type"]=18,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [59]={
+ ["day"]=6,
+ ["number"]=400,
+ ["type"]=20,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [60]={
+ ["day"]=6,
+ ["number"]=30,
+ ["type"]=21,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [61]={
+ ["day"]=7,
+ ["number"]=7,
+ ["type"]=6,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [62]={
+ ["day"]=7,
+ ["number"]=700,
+ ["type"]=2,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [63]={
+ ["day"]=7,
+ ["number"]=9,
+ ["type"]=10,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [64]={
+ ["day"]=7,
+ ["number"]=9,
+ ["type"]=11,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [65]={
+ ["day"]=7,
+ ["number"]=4500,
+ ["type"]=24,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [66]={
+ ["day"]=7,
+ ["number"]=4500,
+ ["type"]=25,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [67]={
+ ["day"]=7,
+ ["number"]=900,
+ ["type"]=7,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [68]={
+ ["day"]=7,
+ ["number"]=900,
+ ["type"]=8,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [69]={
+ ["day"]=7,
+ ["number"]=900,
+ ["type"]=9,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ [70]={
+ ["day"]=7,
+ ["number"]=50,
+ ["type"]=4,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ }
+}
+local config = {
+data=act_sevenday_quest,count=70
+}
+return config
\ No newline at end of file
diff --git a/lua/app/config/act_sevenday_quest.lua.meta b/lua/app/config/act_sevenday_quest.lua.meta
new file mode 100644
index 00000000..ce0aed45
--- /dev/null
+++ b/lua/app/config/act_sevenday_quest.lua.meta
@@ -0,0 +1,10 @@
+fileFormatVersion: 2
+guid: 98e10395602264e46b1c218c8ae261af
+ScriptedImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 2
+ userData:
+ assetBundleName:
+ assetBundleVariant:
+ script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
diff --git a/lua/app/config/act_sevenday_quest_reward.lua b/lua/app/config/act_sevenday_quest_reward.lua
new file mode 100644
index 00000000..a52d5045
--- /dev/null
+++ b/lua/app/config/act_sevenday_quest_reward.lua
@@ -0,0 +1,83 @@
+local act_sevenday_quest_reward = {
+ [1]={
+ ["num"]=10,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=1000,
+ ["unit"]=0
+ }
+ }
+ },
+ [2]={
+ ["num"]=20,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=21,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ },
+ [3]={
+ ["num"]=30,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=3000,
+ ["unit"]=0
+ }
+ }
+ },
+ [4]={
+ ["num"]=40,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=22,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ },
+ [5]={
+ ["num"]=50,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=2,
+ ["count"]={
+ ["value"]=5000,
+ ["unit"]=0
+ }
+ }
+ },
+ [6]={
+ ["num"]=60,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=22,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ },
+ [7]={
+ ["num"]=70,
+ ["reward"]={
+ ["type"]=1,
+ ["id"]=23,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ }
+}
+local config = {
+data=act_sevenday_quest_reward,count=7
+}
+return config
\ No newline at end of file
diff --git a/lua/app/config/act_sevenday_quest_reward.lua.meta b/lua/app/config/act_sevenday_quest_reward.lua.meta
new file mode 100644
index 00000000..95be1088
--- /dev/null
+++ b/lua/app/config/act_sevenday_quest_reward.lua.meta
@@ -0,0 +1,10 @@
+fileFormatVersion: 2
+guid: 7f592b6b3429e944c83eab9e07c6b96d
+ScriptedImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 2
+ userData:
+ assetBundleName:
+ assetBundleVariant:
+ script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
diff --git a/lua/app/config/arena.lua b/lua/app/config/arena.lua
new file mode 100644
index 00000000..859a85c4
--- /dev/null
+++ b/lua/app/config/arena.lua
@@ -0,0 +1,2118 @@
+local arena = {
+ [1]={
+ ["icon"]="arena_segment_1",
+ ["score"]=0,
+ ["battle_max_score"]=600,
+ ["battle_reward"]={
+ {
+ ["type"]=1,
+ ["id"]=17,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ }
+ },
+ ["week_reward"]={
+ {
+ ["type"]=1,
+ ["id"]=18,
+ ["count"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ },
+ {
+ ["type"]=1,
+ ["id"]=8,
+ ["count"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ }
+ },
+ ["atk_coefficient"]={
+ {
+ ["value"]=100,
+ ["unit"]=0
+ },
+ {
+ ["value"]=500,
+ ["unit"]=0
+ },
+ {
+ ["value"]=2000,
+ ["unit"]=0
+ },
+ {
+ ["value"]=6000,
+ ["unit"]=0
+ },
+ {
+ ["value"]=12000,
+ ["unit"]=0
+ },
+ {
+ ["value"]=15000,
+ ["unit"]=0
+ }
+ },
+ ["hp_coefficient"]={
+ {
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ {
+ ["value"]=50000,
+ ["unit"]=0
+ },
+ {
+ ["value"]=200000,
+ ["unit"]=0
+ },
+ {
+ ["value"]=600000,
+ ["unit"]=0
+ },
+ {
+ ["value"]=1200,
+ ["unit"]=1
+ },
+ {
+ ["value"]=1500,
+ ["unit"]=1
+ }
+ },
+ ["wave"]=6,
+ ["random_monster"]=5001,
+ ["time_limit"]=30
+ },
+ [2]={
+ ["icon"]="arena_segment_2",
+ ["score"]=600,
+ ["battle_max_score"]=1200,
+ ["battle_reward"]={
+ {
+ ["type"]=1,
+ ["id"]=17,
+ ["count"]={
+ ["value"]=2,
+ ["unit"]=0
+ }
+ }
+ },
+ ["week_reward"]={
+ {
+ ["type"]=1,
+ ["id"]=18,
+ ["count"]={
+ ["value"]=2,
+ ["unit"]=0
+ }
+ },
+ {
+ ["type"]=1,
+ ["id"]=8,
+ ["count"]={
+ ["value"]=250,
+ ["unit"]=0
+ }
+ }
+ },
+ ["atk_coefficient"]={
+ {
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ {
+ ["value"]=50000,
+ ["unit"]=0
+ },
+ {
+ ["value"]=200000,
+ ["unit"]=0
+ },
+ {
+ ["value"]=600000,
+ ["unit"]=0
+ },
+ {
+ ["value"]=1200,
+ ["unit"]=1
+ },
+ {
+ ["value"]=1500,
+ ["unit"]=1
+ }
+ },
+ ["hp_coefficient"]={
+ {
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ {
+ ["value"]=5000,
+ ["unit"]=1
+ },
+ {
+ ["value"]=20000,
+ ["unit"]=1
+ },
+ {
+ ["value"]=60000,
+ ["unit"]=1
+ },
+ {
+ ["value"]=120000,
+ ["unit"]=1
+ },
+ {
+ ["value"]=150000,
+ ["unit"]=1
+ }
+ },
+ ["wave"]=6,
+ ["random_monster"]=5001,
+ ["time_limit"]=30
+ },
+ [3]={
+ ["icon"]="arena_segment_3",
+ ["score"]=1800,
+ ["battle_max_score"]=2400,
+ ["battle_reward"]={
+ {
+ ["type"]=1,
+ ["id"]=17,
+ ["count"]={
+ ["value"]=3,
+ ["unit"]=0
+ }
+ }
+ },
+ ["week_reward"]={
+ {
+ ["type"]=1,
+ ["id"]=18,
+ ["count"]={
+ ["value"]=3,
+ ["unit"]=0
+ }
+ },
+ {
+ ["type"]=1,
+ ["id"]=8,
+ ["count"]={
+ ["value"]=300,
+ ["unit"]=0
+ }
+ }
+ },
+ ["atk_coefficient"]={
+ {
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ {
+ ["value"]=5000,
+ ["unit"]=1
+ },
+ {
+ ["value"]=20000,
+ ["unit"]=1
+ },
+ {
+ ["value"]=60000,
+ ["unit"]=1
+ },
+ {
+ ["value"]=120000,
+ ["unit"]=1
+ },
+ {
+ ["value"]=150000,
+ ["unit"]=1
+ }
+ },
+ ["hp_coefficient"]={
+ {
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ {
+ ["value"]=500000,
+ ["unit"]=1
+ },
+ {
+ ["value"]=2000,
+ ["unit"]=2
+ },
+ {
+ ["value"]=6000,
+ ["unit"]=2
+ },
+ {
+ ["value"]=12000,
+ ["unit"]=2
+ },
+ {
+ ["value"]=15000,
+ ["unit"]=2
+ }
+ },
+ ["wave"]=6,
+ ["random_monster"]=5001,
+ ["time_limit"]=30
+ },
+ [4]={
+ ["icon"]="arena_segment_4",
+ ["score"]=4200,
+ ["battle_max_score"]=3600,
+ ["battle_reward"]={
+ {
+ ["type"]=1,
+ ["id"]=17,
+ ["count"]={
+ ["value"]=4,
+ ["unit"]=0
+ }
+ }
+ },
+ ["week_reward"]={
+ {
+ ["type"]=1,
+ ["id"]=18,
+ ["count"]={
+ ["value"]=4,
+ ["unit"]=0
+ }
+ },
+ {
+ ["type"]=1,
+ ["id"]=8,
+ ["count"]={
+ ["value"]=350,
+ ["unit"]=0
+ }
+ }
+ },
+ ["atk_coefficient"]={
+ {
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ {
+ ["value"]=500000,
+ ["unit"]=1
+ },
+ {
+ ["value"]=2000,
+ ["unit"]=2
+ },
+ {
+ ["value"]=6000,
+ ["unit"]=2
+ },
+ {
+ ["value"]=12000,
+ ["unit"]=2
+ },
+ {
+ ["value"]=15000,
+ ["unit"]=2
+ }
+ },
+ ["hp_coefficient"]={
+ {
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ {
+ ["value"]=50000,
+ ["unit"]=2
+ },
+ {
+ ["value"]=200000,
+ ["unit"]=2
+ },
+ {
+ ["value"]=600000,
+ ["unit"]=2
+ },
+ {
+ ["value"]=1200,
+ ["unit"]=3
+ },
+ {
+ ["value"]=1500,
+ ["unit"]=3
+ }
+ },
+ ["wave"]=6,
+ ["random_monster"]=5001,
+ ["time_limit"]=30
+ },
+ [5]={
+ ["icon"]="arena_segment_5",
+ ["score"]=7800,
+ ["battle_max_score"]=4800,
+ ["battle_reward"]={
+ {
+ ["type"]=1,
+ ["id"]=17,
+ ["count"]={
+ ["value"]=5,
+ ["unit"]=0
+ }
+ }
+ },
+ ["week_reward"]={
+ {
+ ["type"]=1,
+ ["id"]=18,
+ ["count"]={
+ ["value"]=5,
+ ["unit"]=0
+ }
+ },
+ {
+ ["type"]=1,
+ ["id"]=8,
+ ["count"]={
+ ["value"]=400,
+ ["unit"]=0
+ }
+ }
+ },
+ ["atk_coefficient"]={
+ {
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ {
+ ["value"]=50000,
+ ["unit"]=2
+ },
+ {
+ ["value"]=200000,
+ ["unit"]=2
+ },
+ {
+ ["value"]=600000,
+ ["unit"]=2
+ },
+ {
+ ["value"]=1200,
+ ["unit"]=3
+ },
+ {
+ ["value"]=1500,
+ ["unit"]=3
+ }
+ },
+ ["hp_coefficient"]={
+ {
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ {
+ ["value"]=5000,
+ ["unit"]=3
+ },
+ {
+ ["value"]=20000,
+ ["unit"]=3
+ },
+ {
+ ["value"]=60000,
+ ["unit"]=3
+ },
+ {
+ ["value"]=120000,
+ ["unit"]=3
+ },
+ {
+ ["value"]=150000,
+ ["unit"]=3
+ }
+ },
+ ["wave"]=6,
+ ["random_monster"]=5001,
+ ["time_limit"]=30
+ },
+ [6]={
+ ["icon"]="arena_segment_6",
+ ["score"]=12600,
+ ["battle_max_score"]=6000,
+ ["battle_reward"]={
+ {
+ ["type"]=1,
+ ["id"]=17,
+ ["count"]={
+ ["value"]=6,
+ ["unit"]=0
+ }
+ }
+ },
+ ["week_reward"]={
+ {
+ ["type"]=1,
+ ["id"]=18,
+ ["count"]={
+ ["value"]=6,
+ ["unit"]=0
+ }
+ },
+ {
+ ["type"]=1,
+ ["id"]=8,
+ ["count"]={
+ ["value"]=450,
+ ["unit"]=0
+ }
+ }
+ },
+ ["atk_coefficient"]={
+ {
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ {
+ ["value"]=5000,
+ ["unit"]=3
+ },
+ {
+ ["value"]=20000,
+ ["unit"]=3
+ },
+ {
+ ["value"]=60000,
+ ["unit"]=3
+ },
+ {
+ ["value"]=120000,
+ ["unit"]=3
+ },
+ {
+ ["value"]=150000,
+ ["unit"]=3
+ }
+ },
+ ["hp_coefficient"]={
+ {
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ {
+ ["value"]=500000,
+ ["unit"]=3
+ },
+ {
+ ["value"]=2000,
+ ["unit"]=4
+ },
+ {
+ ["value"]=6000,
+ ["unit"]=4
+ },
+ {
+ ["value"]=12000,
+ ["unit"]=4
+ },
+ {
+ ["value"]=15000,
+ ["unit"]=4
+ }
+ },
+ ["wave"]=6,
+ ["random_monster"]=5001,
+ ["time_limit"]=30
+ },
+ [7]={
+ ["icon"]="arena_segment_7",
+ ["score"]=18600,
+ ["battle_max_score"]=9000,
+ ["battle_reward"]={
+ {
+ ["type"]=1,
+ ["id"]=17,
+ ["count"]={
+ ["value"]=7,
+ ["unit"]=0
+ }
+ }
+ },
+ ["week_reward"]={
+ {
+ ["type"]=1,
+ ["id"]=18,
+ ["count"]={
+ ["value"]=7,
+ ["unit"]=0
+ }
+ },
+ {
+ ["type"]=1,
+ ["id"]=8,
+ ["count"]={
+ ["value"]=500,
+ ["unit"]=0
+ }
+ }
+ },
+ ["atk_coefficient"]={
+ {
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ {
+ ["value"]=500000,
+ ["unit"]=3
+ },
+ {
+ ["value"]=2000,
+ ["unit"]=4
+ },
+ {
+ ["value"]=6000,
+ ["unit"]=4
+ },
+ {
+ ["value"]=12000,
+ ["unit"]=4
+ },
+ {
+ ["value"]=15000,
+ ["unit"]=4
+ }
+ },
+ ["hp_coefficient"]={
+ {
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ {
+ ["value"]=50000,
+ ["unit"]=4
+ },
+ {
+ ["value"]=200000,
+ ["unit"]=4
+ },
+ {
+ ["value"]=600000,
+ ["unit"]=4
+ },
+ {
+ ["value"]=1200,
+ ["unit"]=5
+ },
+ {
+ ["value"]=1500,
+ ["unit"]=5
+ }
+ },
+ ["wave"]=6,
+ ["random_monster"]=5001,
+ ["time_limit"]=30
+ },
+ [8]={
+ ["icon"]="arena_segment_8",
+ ["score"]=27000,
+ ["battle_max_score"]=12000,
+ ["battle_reward"]={
+ {
+ ["type"]=1,
+ ["id"]=17,
+ ["count"]={
+ ["value"]=8,
+ ["unit"]=0
+ }
+ }
+ },
+ ["week_reward"]={
+ {
+ ["type"]=1,
+ ["id"]=18,
+ ["count"]={
+ ["value"]=8,
+ ["unit"]=0
+ }
+ },
+ {
+ ["type"]=1,
+ ["id"]=8,
+ ["count"]={
+ ["value"]=550,
+ ["unit"]=0
+ }
+ }
+ },
+ ["atk_coefficient"]={
+ {
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ {
+ ["value"]=50000,
+ ["unit"]=4
+ },
+ {
+ ["value"]=200000,
+ ["unit"]=4
+ },
+ {
+ ["value"]=600000,
+ ["unit"]=4
+ },
+ {
+ ["value"]=1200,
+ ["unit"]=5
+ },
+ {
+ ["value"]=1500,
+ ["unit"]=5
+ }
+ },
+ ["hp_coefficient"]={
+ {
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ {
+ ["value"]=5000,
+ ["unit"]=5
+ },
+ {
+ ["value"]=20000,
+ ["unit"]=5
+ },
+ {
+ ["value"]=60000,
+ ["unit"]=5
+ },
+ {
+ ["value"]=120000,
+ ["unit"]=5
+ },
+ {
+ ["value"]=150000,
+ ["unit"]=5
+ }
+ },
+ ["wave"]=6,
+ ["random_monster"]=5001,
+ ["time_limit"]=30
+ },
+ [9]={
+ ["icon"]="arena_segment_9",
+ ["score"]=38000,
+ ["battle_max_score"]=15000,
+ ["battle_reward"]={
+ {
+ ["type"]=1,
+ ["id"]=17,
+ ["count"]={
+ ["value"]=9,
+ ["unit"]=0
+ }
+ }
+ },
+ ["week_reward"]={
+ {
+ ["type"]=1,
+ ["id"]=18,
+ ["count"]={
+ ["value"]=9,
+ ["unit"]=0
+ }
+ },
+ {
+ ["type"]=1,
+ ["id"]=8,
+ ["count"]={
+ ["value"]=600,
+ ["unit"]=0
+ }
+ }
+ },
+ ["atk_coefficient"]={
+ {
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ {
+ ["value"]=5000,
+ ["unit"]=5
+ },
+ {
+ ["value"]=20000,
+ ["unit"]=5
+ },
+ {
+ ["value"]=60000,
+ ["unit"]=5
+ },
+ {
+ ["value"]=120000,
+ ["unit"]=5
+ },
+ {
+ ["value"]=150000,
+ ["unit"]=5
+ }
+ },
+ ["hp_coefficient"]={
+ {
+ ["value"]=100000,
+ ["unit"]=5
+ },
+ {
+ ["value"]=500000,
+ ["unit"]=5
+ },
+ {
+ ["value"]=2000,
+ ["unit"]=6
+ },
+ {
+ ["value"]=6000,
+ ["unit"]=6
+ },
+ {
+ ["value"]=12000,
+ ["unit"]=6
+ },
+ {
+ ["value"]=15000,
+ ["unit"]=6
+ }
+ },
+ ["wave"]=6,
+ ["random_monster"]=5001,
+ ["time_limit"]=30
+ },
+ [10]={
+ ["icon"]="arena_segment_10",
+ ["score"]=52000,
+ ["battle_max_score"]=18000,
+ ["battle_reward"]={
+ {
+ ["type"]=1,
+ ["id"]=17,
+ ["count"]={
+ ["value"]=10,
+ ["unit"]=0
+ }
+ }
+ },
+ ["week_reward"]={
+ {
+ ["type"]=1,
+ ["id"]=18,
+ ["count"]={
+ ["value"]=10,
+ ["unit"]=0
+ }
+ },
+ {
+ ["type"]=1,
+ ["id"]=8,
+ ["count"]={
+ ["value"]=650,
+ ["unit"]=0
+ }
+ }
+ },
+ ["atk_coefficient"]={
+ {
+ ["value"]=100000,
+ ["unit"]=5
+ },
+ {
+ ["value"]=500000,
+ ["unit"]=5
+ },
+ {
+ ["value"]=2000,
+ ["unit"]=6
+ },
+ {
+ ["value"]=6000,
+ ["unit"]=6
+ },
+ {
+ ["value"]=12000,
+ ["unit"]=6
+ },
+ {
+ ["value"]=15000,
+ ["unit"]=6
+ }
+ },
+ ["hp_coefficient"]={
+ {
+ ["value"]=10000,
+ ["unit"]=6
+ },
+ {
+ ["value"]=50000,
+ ["unit"]=6
+ },
+ {
+ ["value"]=200000,
+ ["unit"]=6
+ },
+ {
+ ["value"]=600000,
+ ["unit"]=6
+ },
+ {
+ ["value"]=1200,
+ ["unit"]=7
+ },
+ {
+ ["value"]=1500,
+ ["unit"]=7
+ }
+ },
+ ["wave"]=6,
+ ["random_monster"]=5001,
+ ["time_limit"]=30
+ },
+ [11]={
+ ["icon"]="arena_segment_11",
+ ["score"]=69000,
+ ["battle_max_score"]=24000,
+ ["battle_reward"]={
+ {
+ ["type"]=1,
+ ["id"]=17,
+ ["count"]={
+ ["value"]=11,
+ ["unit"]=0
+ }
+ }
+ },
+ ["week_reward"]={
+ {
+ ["type"]=1,
+ ["id"]=18,
+ ["count"]={
+ ["value"]=11,
+ ["unit"]=0
+ }
+ },
+ {
+ ["type"]=1,
+ ["id"]=8,
+ ["count"]={
+ ["value"]=700,
+ ["unit"]=0
+ }
+ }
+ },
+ ["atk_coefficient"]={
+ {
+ ["value"]=10000,
+ ["unit"]=6
+ },
+ {
+ ["value"]=50000,
+ ["unit"]=6
+ },
+ {
+ ["value"]=200000,
+ ["unit"]=6
+ },
+ {
+ ["value"]=600000,
+ ["unit"]=6
+ },
+ {
+ ["value"]=1200,
+ ["unit"]=7
+ },
+ {
+ ["value"]=1500,
+ ["unit"]=7
+ }
+ },
+ ["hp_coefficient"]={
+ {
+ ["value"]=1000,
+ ["unit"]=7
+ },
+ {
+ ["value"]=5000,
+ ["unit"]=7
+ },
+ {
+ ["value"]=20000,
+ ["unit"]=7
+ },
+ {
+ ["value"]=60000,
+ ["unit"]=7
+ },
+ {
+ ["value"]=120000,
+ ["unit"]=7
+ },
+ {
+ ["value"]=150000,
+ ["unit"]=7
+ }
+ },
+ ["wave"]=6,
+ ["random_monster"]=5001,
+ ["time_limit"]=30
+ },
+ [12]={
+ ["icon"]="arena_segment_12",
+ ["score"]=92000,
+ ["battle_max_score"]=30000,
+ ["battle_reward"]={
+ {
+ ["type"]=1,
+ ["id"]=17,
+ ["count"]={
+ ["value"]=12,
+ ["unit"]=0
+ }
+ }
+ },
+ ["week_reward"]={
+ {
+ ["type"]=1,
+ ["id"]=18,
+ ["count"]={
+ ["value"]=12,
+ ["unit"]=0
+ }
+ },
+ {
+ ["type"]=1,
+ ["id"]=8,
+ ["count"]={
+ ["value"]=750,
+ ["unit"]=0
+ }
+ }
+ },
+ ["atk_coefficient"]={
+ {
+ ["value"]=1000,
+ ["unit"]=7
+ },
+ {
+ ["value"]=5000,
+ ["unit"]=7
+ },
+ {
+ ["value"]=20000,
+ ["unit"]=7
+ },
+ {
+ ["value"]=60000,
+ ["unit"]=7
+ },
+ {
+ ["value"]=120000,
+ ["unit"]=7
+ },
+ {
+ ["value"]=150000,
+ ["unit"]=7
+ }
+ },
+ ["hp_coefficient"]={
+ {
+ ["value"]=100000,
+ ["unit"]=7
+ },
+ {
+ ["value"]=500000,
+ ["unit"]=7
+ },
+ {
+ ["value"]=2000,
+ ["unit"]=8
+ },
+ {
+ ["value"]=6000,
+ ["unit"]=8
+ },
+ {
+ ["value"]=12000,
+ ["unit"]=8
+ },
+ {
+ ["value"]=15000,
+ ["unit"]=8
+ }
+ },
+ ["wave"]=6,
+ ["random_monster"]=5001,
+ ["time_limit"]=30
+ },
+ [13]={
+ ["icon"]="arena_segment_13",
+ ["score"]=120000,
+ ["battle_max_score"]=36000,
+ ["battle_reward"]={
+ {
+ ["type"]=1,
+ ["id"]=17,
+ ["count"]={
+ ["value"]=13,
+ ["unit"]=0
+ }
+ }
+ },
+ ["week_reward"]={
+ {
+ ["type"]=1,
+ ["id"]=18,
+ ["count"]={
+ ["value"]=13,
+ ["unit"]=0
+ }
+ },
+ {
+ ["type"]=1,
+ ["id"]=8,
+ ["count"]={
+ ["value"]=800,
+ ["unit"]=0
+ }
+ }
+ },
+ ["atk_coefficient"]={
+ {
+ ["value"]=100000,
+ ["unit"]=7
+ },
+ {
+ ["value"]=500000,
+ ["unit"]=7
+ },
+ {
+ ["value"]=2000,
+ ["unit"]=8
+ },
+ {
+ ["value"]=6000,
+ ["unit"]=8
+ },
+ {
+ ["value"]=12000,
+ ["unit"]=8
+ },
+ {
+ ["value"]=15000,
+ ["unit"]=8
+ }
+ },
+ ["hp_coefficient"]={
+ {
+ ["value"]=10000,
+ ["unit"]=8
+ },
+ {
+ ["value"]=50000,
+ ["unit"]=8
+ },
+ {
+ ["value"]=200000,
+ ["unit"]=8
+ },
+ {
+ ["value"]=600000,
+ ["unit"]=8
+ },
+ {
+ ["value"]=1200,
+ ["unit"]=9
+ },
+ {
+ ["value"]=1500,
+ ["unit"]=9
+ }
+ },
+ ["wave"]=6,
+ ["random_monster"]=5001,
+ ["time_limit"]=30
+ },
+ [14]={
+ ["icon"]="arena_segment_14",
+ ["score"]=154000,
+ ["battle_max_score"]=48000,
+ ["battle_reward"]={
+ {
+ ["type"]=1,
+ ["id"]=17,
+ ["count"]={
+ ["value"]=14,
+ ["unit"]=0
+ }
+ }
+ },
+ ["week_reward"]={
+ {
+ ["type"]=1,
+ ["id"]=18,
+ ["count"]={
+ ["value"]=14,
+ ["unit"]=0
+ }
+ },
+ {
+ ["type"]=1,
+ ["id"]=8,
+ ["count"]={
+ ["value"]=850,
+ ["unit"]=0
+ }
+ }
+ },
+ ["atk_coefficient"]={
+ {
+ ["value"]=10000,
+ ["unit"]=8
+ },
+ {
+ ["value"]=50000,
+ ["unit"]=8
+ },
+ {
+ ["value"]=200000,
+ ["unit"]=8
+ },
+ {
+ ["value"]=600000,
+ ["unit"]=8
+ },
+ {
+ ["value"]=1200,
+ ["unit"]=9
+ },
+ {
+ ["value"]=1500,
+ ["unit"]=9
+ }
+ },
+ ["hp_coefficient"]={
+ {
+ ["value"]=1000,
+ ["unit"]=9
+ },
+ {
+ ["value"]=5000,
+ ["unit"]=9
+ },
+ {
+ ["value"]=20000,
+ ["unit"]=9
+ },
+ {
+ ["value"]=60000,
+ ["unit"]=9
+ },
+ {
+ ["value"]=120000,
+ ["unit"]=9
+ },
+ {
+ ["value"]=150000,
+ ["unit"]=9
+ }
+ },
+ ["wave"]=6,
+ ["random_monster"]=5001,
+ ["time_limit"]=30
+ },
+ [15]={
+ ["icon"]="arena_segment_15",
+ ["score"]=200000,
+ ["battle_max_score"]=60000,
+ ["battle_reward"]={
+ {
+ ["type"]=1,
+ ["id"]=17,
+ ["count"]={
+ ["value"]=15,
+ ["unit"]=0
+ }
+ }
+ },
+ ["week_reward"]={
+ {
+ ["type"]=1,
+ ["id"]=18,
+ ["count"]={
+ ["value"]=15,
+ ["unit"]=0
+ }
+ },
+ {
+ ["type"]=1,
+ ["id"]=8,
+ ["count"]={
+ ["value"]=900,
+ ["unit"]=0
+ }
+ }
+ },
+ ["atk_coefficient"]={
+ {
+ ["value"]=1000,
+ ["unit"]=9
+ },
+ {
+ ["value"]=5000,
+ ["unit"]=9
+ },
+ {
+ ["value"]=20000,
+ ["unit"]=9
+ },
+ {
+ ["value"]=60000,
+ ["unit"]=9
+ },
+ {
+ ["value"]=120000,
+ ["unit"]=9
+ },
+ {
+ ["value"]=150000,
+ ["unit"]=9
+ }
+ },
+ ["hp_coefficient"]={
+ {
+ ["value"]=100000,
+ ["unit"]=9
+ },
+ {
+ ["value"]=500000,
+ ["unit"]=9
+ },
+ {
+ ["value"]=2000,
+ ["unit"]=10
+ },
+ {
+ ["value"]=6000,
+ ["unit"]=10
+ },
+ {
+ ["value"]=12000,
+ ["unit"]=10
+ },
+ {
+ ["value"]=15000,
+ ["unit"]=10
+ }
+ },
+ ["wave"]=6,
+ ["random_monster"]=5001,
+ ["time_limit"]=30
+ },
+ [16]={
+ ["icon"]="arena_segment_16",
+ ["score"]=256000,
+ ["battle_max_score"]=72000,
+ ["battle_reward"]={
+ {
+ ["type"]=1,
+ ["id"]=17,
+ ["count"]={
+ ["value"]=16,
+ ["unit"]=0
+ }
+ }
+ },
+ ["week_reward"]={
+ {
+ ["type"]=1,
+ ["id"]=18,
+ ["count"]={
+ ["value"]=16,
+ ["unit"]=0
+ }
+ },
+ {
+ ["type"]=1,
+ ["id"]=8,
+ ["count"]={
+ ["value"]=950,
+ ["unit"]=0
+ }
+ }
+ },
+ ["atk_coefficient"]={
+ {
+ ["value"]=100000,
+ ["unit"]=9
+ },
+ {
+ ["value"]=500000,
+ ["unit"]=9
+ },
+ {
+ ["value"]=2000,
+ ["unit"]=10
+ },
+ {
+ ["value"]=6000,
+ ["unit"]=10
+ },
+ {
+ ["value"]=12000,
+ ["unit"]=10
+ },
+ {
+ ["value"]=15000,
+ ["unit"]=10
+ }
+ },
+ ["hp_coefficient"]={
+ {
+ ["value"]=10000,
+ ["unit"]=10
+ },
+ {
+ ["value"]=50000,
+ ["unit"]=10
+ },
+ {
+ ["value"]=200000,
+ ["unit"]=10
+ },
+ {
+ ["value"]=600000,
+ ["unit"]=10
+ },
+ {
+ ["value"]=1200,
+ ["unit"]=11
+ },
+ {
+ ["value"]=1500,
+ ["unit"]=11
+ }
+ },
+ ["wave"]=6,
+ ["random_monster"]=5001,
+ ["time_limit"]=30
+ },
+ [17]={
+ ["icon"]="arena_segment_17",
+ ["score"]=320000,
+ ["battle_max_score"]=90000,
+ ["battle_reward"]={
+ {
+ ["type"]=1,
+ ["id"]=17,
+ ["count"]={
+ ["value"]=17,
+ ["unit"]=0
+ }
+ }
+ },
+ ["week_reward"]={
+ {
+ ["type"]=1,
+ ["id"]=18,
+ ["count"]={
+ ["value"]=17,
+ ["unit"]=0
+ }
+ },
+ {
+ ["type"]=1,
+ ["id"]=8,
+ ["count"]={
+ ["value"]=1000,
+ ["unit"]=0
+ }
+ }
+ },
+ ["atk_coefficient"]={
+ {
+ ["value"]=10000,
+ ["unit"]=10
+ },
+ {
+ ["value"]=50000,
+ ["unit"]=10
+ },
+ {
+ ["value"]=200000,
+ ["unit"]=10
+ },
+ {
+ ["value"]=600000,
+ ["unit"]=10
+ },
+ {
+ ["value"]=1200,
+ ["unit"]=11
+ },
+ {
+ ["value"]=1500,
+ ["unit"]=11
+ }
+ },
+ ["hp_coefficient"]={
+ {
+ ["value"]=1000,
+ ["unit"]=11
+ },
+ {
+ ["value"]=5000,
+ ["unit"]=11
+ },
+ {
+ ["value"]=20000,
+ ["unit"]=11
+ },
+ {
+ ["value"]=60000,
+ ["unit"]=11
+ },
+ {
+ ["value"]=120000,
+ ["unit"]=11
+ },
+ {
+ ["value"]=150000,
+ ["unit"]=11
+ }
+ },
+ ["wave"]=6,
+ ["random_monster"]=5001,
+ ["time_limit"]=30
+ },
+ [18]={
+ ["icon"]="arena_segment_18",
+ ["score"]=400000,
+ ["battle_max_score"]=120000,
+ ["battle_reward"]={
+ {
+ ["type"]=1,
+ ["id"]=17,
+ ["count"]={
+ ["value"]=18,
+ ["unit"]=0
+ }
+ }
+ },
+ ["week_reward"]={
+ {
+ ["type"]=1,
+ ["id"]=18,
+ ["count"]={
+ ["value"]=18,
+ ["unit"]=0
+ }
+ },
+ {
+ ["type"]=1,
+ ["id"]=8,
+ ["count"]={
+ ["value"]=1050,
+ ["unit"]=0
+ }
+ }
+ },
+ ["atk_coefficient"]={
+ {
+ ["value"]=1000,
+ ["unit"]=11
+ },
+ {
+ ["value"]=5000,
+ ["unit"]=11
+ },
+ {
+ ["value"]=20000,
+ ["unit"]=11
+ },
+ {
+ ["value"]=60000,
+ ["unit"]=11
+ },
+ {
+ ["value"]=120000,
+ ["unit"]=11
+ },
+ {
+ ["value"]=150000,
+ ["unit"]=11
+ }
+ },
+ ["hp_coefficient"]={
+ {
+ ["value"]=100000,
+ ["unit"]=11
+ },
+ {
+ ["value"]=500000,
+ ["unit"]=11
+ },
+ {
+ ["value"]=2000,
+ ["unit"]=12
+ },
+ {
+ ["value"]=6000,
+ ["unit"]=12
+ },
+ {
+ ["value"]=12000,
+ ["unit"]=12
+ },
+ {
+ ["value"]=15000,
+ ["unit"]=12
+ }
+ },
+ ["wave"]=6,
+ ["random_monster"]=5001,
+ ["time_limit"]=30
+ },
+ [19]={
+ ["icon"]="arena_segment_19",
+ ["score"]=510000,
+ ["battle_max_score"]=150000,
+ ["battle_reward"]={
+ {
+ ["type"]=1,
+ ["id"]=17,
+ ["count"]={
+ ["value"]=19,
+ ["unit"]=0
+ }
+ }
+ },
+ ["week_reward"]={
+ {
+ ["type"]=1,
+ ["id"]=18,
+ ["count"]={
+ ["value"]=19,
+ ["unit"]=0
+ }
+ },
+ {
+ ["type"]=1,
+ ["id"]=8,
+ ["count"]={
+ ["value"]=1100,
+ ["unit"]=0
+ }
+ }
+ },
+ ["atk_coefficient"]={
+ {
+ ["value"]=100000,
+ ["unit"]=11
+ },
+ {
+ ["value"]=500000,
+ ["unit"]=11
+ },
+ {
+ ["value"]=2000,
+ ["unit"]=12
+ },
+ {
+ ["value"]=6000,
+ ["unit"]=12
+ },
+ {
+ ["value"]=12000,
+ ["unit"]=12
+ },
+ {
+ ["value"]=15000,
+ ["unit"]=12
+ }
+ },
+ ["hp_coefficient"]={
+ {
+ ["value"]=10000,
+ ["unit"]=12
+ },
+ {
+ ["value"]=50000,
+ ["unit"]=12
+ },
+ {
+ ["value"]=200000,
+ ["unit"]=12
+ },
+ {
+ ["value"]=600000,
+ ["unit"]=12
+ },
+ {
+ ["value"]=1200,
+ ["unit"]=13
+ },
+ {
+ ["value"]=1500,
+ ["unit"]=13
+ }
+ },
+ ["wave"]=6,
+ ["random_monster"]=5001,
+ ["time_limit"]=30
+ },
+ [20]={
+ ["icon"]="arena_segment_20",
+ ["score"]=640000,
+ ["battle_max_score"]=180000,
+ ["battle_reward"]={
+ {
+ ["type"]=1,
+ ["id"]=17,
+ ["count"]={
+ ["value"]=20,
+ ["unit"]=0
+ }
+ }
+ },
+ ["week_reward"]={
+ {
+ ["type"]=1,
+ ["id"]=18,
+ ["count"]={
+ ["value"]=20,
+ ["unit"]=0
+ }
+ },
+ {
+ ["type"]=1,
+ ["id"]=8,
+ ["count"]={
+ ["value"]=1150,
+ ["unit"]=0
+ }
+ }
+ },
+ ["atk_coefficient"]={
+ {
+ ["value"]=10000,
+ ["unit"]=12
+ },
+ {
+ ["value"]=50000,
+ ["unit"]=12
+ },
+ {
+ ["value"]=200000,
+ ["unit"]=12
+ },
+ {
+ ["value"]=600000,
+ ["unit"]=12
+ },
+ {
+ ["value"]=1200,
+ ["unit"]=13
+ },
+ {
+ ["value"]=1500,
+ ["unit"]=13
+ }
+ },
+ ["hp_coefficient"]={
+ {
+ ["value"]=1000,
+ ["unit"]=13
+ },
+ {
+ ["value"]=5000,
+ ["unit"]=13
+ },
+ {
+ ["value"]=20000,
+ ["unit"]=13
+ },
+ {
+ ["value"]=60000,
+ ["unit"]=13
+ },
+ {
+ ["value"]=120000,
+ ["unit"]=13
+ },
+ {
+ ["value"]=150000,
+ ["unit"]=13
+ }
+ },
+ ["wave"]=6,
+ ["random_monster"]=5001,
+ ["time_limit"]=30
+ },
+ [21]={
+ ["icon"]="arena_segment_21",
+ ["score"]=800000,
+ ["battle_max_score"]=240000,
+ ["battle_reward"]={
+ {
+ ["type"]=1,
+ ["id"]=17,
+ ["count"]={
+ ["value"]=21,
+ ["unit"]=0
+ }
+ }
+ },
+ ["week_reward"]={
+ {
+ ["type"]=1,
+ ["id"]=18,
+ ["count"]={
+ ["value"]=21,
+ ["unit"]=0
+ }
+ },
+ {
+ ["type"]=1,
+ ["id"]=8,
+ ["count"]={
+ ["value"]=1200,
+ ["unit"]=0
+ }
+ }
+ },
+ ["atk_coefficient"]={
+ {
+ ["value"]=1000,
+ ["unit"]=13
+ },
+ {
+ ["value"]=5000,
+ ["unit"]=13
+ },
+ {
+ ["value"]=20000,
+ ["unit"]=13
+ },
+ {
+ ["value"]=60000,
+ ["unit"]=13
+ },
+ {
+ ["value"]=120000,
+ ["unit"]=13
+ },
+ {
+ ["value"]=150000,
+ ["unit"]=13
+ }
+ },
+ ["hp_coefficient"]={
+ {
+ ["value"]=100000,
+ ["unit"]=13
+ },
+ {
+ ["value"]=500000,
+ ["unit"]=13
+ },
+ {
+ ["value"]=2000,
+ ["unit"]=14
+ },
+ {
+ ["value"]=6000,
+ ["unit"]=14
+ },
+ {
+ ["value"]=12000,
+ ["unit"]=14
+ },
+ {
+ ["value"]=15000,
+ ["unit"]=14
+ }
+ },
+ ["wave"]=6,
+ ["random_monster"]=5001,
+ ["time_limit"]=30
+ },
+ [22]={
+ ["icon"]="arena_segment_22",
+ ["score"]=1000000,
+ ["battle_max_score"]=300000,
+ ["battle_reward"]={
+ {
+ ["type"]=1,
+ ["id"]=17,
+ ["count"]={
+ ["value"]=22,
+ ["unit"]=0
+ }
+ }
+ },
+ ["week_reward"]={
+ {
+ ["type"]=1,
+ ["id"]=18,
+ ["count"]={
+ ["value"]=22,
+ ["unit"]=0
+ }
+ },
+ {
+ ["type"]=1,
+ ["id"]=8,
+ ["count"]={
+ ["value"]=1300,
+ ["unit"]=0
+ }
+ }
+ },
+ ["atk_coefficient"]={
+ {
+ ["value"]=100000,
+ ["unit"]=13
+ },
+ {
+ ["value"]=500000,
+ ["unit"]=13
+ },
+ {
+ ["value"]=2000,
+ ["unit"]=14
+ },
+ {
+ ["value"]=6000,
+ ["unit"]=14
+ },
+ {
+ ["value"]=12000,
+ ["unit"]=14
+ },
+ {
+ ["value"]=15000,
+ ["unit"]=14
+ }
+ },
+ ["hp_coefficient"]={
+ {
+ ["value"]=10000,
+ ["unit"]=14
+ },
+ {
+ ["value"]=50000,
+ ["unit"]=14
+ },
+ {
+ ["value"]=200000,
+ ["unit"]=14
+ },
+ {
+ ["value"]=600000,
+ ["unit"]=14
+ },
+ {
+ ["value"]=1200,
+ ["unit"]=15
+ },
+ {
+ ["value"]=1500,
+ ["unit"]=15
+ }
+ },
+ ["wave"]=6,
+ ["random_monster"]=5001,
+ ["time_limit"]=30
+ },
+ [23]={
+ ["icon"]="arena_segment_23",
+ ["score"]=1260000,
+ ["battle_max_score"]=420000,
+ ["battle_reward"]={
+ {
+ ["type"]=1,
+ ["id"]=17,
+ ["count"]={
+ ["value"]=23,
+ ["unit"]=0
+ }
+ }
+ },
+ ["week_reward"]={
+ {
+ ["type"]=1,
+ ["id"]=18,
+ ["count"]={
+ ["value"]=23,
+ ["unit"]=0
+ }
+ },
+ {
+ ["type"]=1,
+ ["id"]=8,
+ ["count"]={
+ ["value"]=1400,
+ ["unit"]=0
+ }
+ }
+ },
+ ["atk_coefficient"]={
+ {
+ ["value"]=10000,
+ ["unit"]=14
+ },
+ {
+ ["value"]=50000,
+ ["unit"]=14
+ },
+ {
+ ["value"]=200000,
+ ["unit"]=14
+ },
+ {
+ ["value"]=600000,
+ ["unit"]=14
+ },
+ {
+ ["value"]=1200,
+ ["unit"]=15
+ },
+ {
+ ["value"]=1500,
+ ["unit"]=15
+ }
+ },
+ ["hp_coefficient"]={
+ {
+ ["value"]=1000,
+ ["unit"]=15
+ },
+ {
+ ["value"]=5000,
+ ["unit"]=15
+ },
+ {
+ ["value"]=20000,
+ ["unit"]=15
+ },
+ {
+ ["value"]=60000,
+ ["unit"]=15
+ },
+ {
+ ["value"]=120000,
+ ["unit"]=15
+ },
+ {
+ ["value"]=150000,
+ ["unit"]=15
+ }
+ },
+ ["wave"]=6,
+ ["random_monster"]=5001,
+ ["time_limit"]=30
+ },
+ [24]={
+ ["icon"]="arena_segment_24",
+ ["score"]=1640000,
+ ["battle_max_score"]=600000,
+ ["battle_reward"]={
+ {
+ ["type"]=1,
+ ["id"]=17,
+ ["count"]={
+ ["value"]=24,
+ ["unit"]=0
+ }
+ }
+ },
+ ["week_reward"]={
+ {
+ ["type"]=1,
+ ["id"]=18,
+ ["count"]={
+ ["value"]=24,
+ ["unit"]=0
+ }
+ },
+ {
+ ["type"]=1,
+ ["id"]=8,
+ ["count"]={
+ ["value"]=1500,
+ ["unit"]=0
+ }
+ }
+ },
+ ["atk_coefficient"]={
+ {
+ ["value"]=1000,
+ ["unit"]=15
+ },
+ {
+ ["value"]=5000,
+ ["unit"]=15
+ },
+ {
+ ["value"]=20000,
+ ["unit"]=15
+ },
+ {
+ ["value"]=60000,
+ ["unit"]=15
+ },
+ {
+ ["value"]=120000,
+ ["unit"]=15
+ },
+ {
+ ["value"]=150000,
+ ["unit"]=15
+ }
+ },
+ ["hp_coefficient"]={
+ {
+ ["value"]=100000,
+ ["unit"]=15
+ },
+ {
+ ["value"]=500000,
+ ["unit"]=15
+ },
+ {
+ ["value"]=2000,
+ ["unit"]=16
+ },
+ {
+ ["value"]=6000,
+ ["unit"]=16
+ },
+ {
+ ["value"]=12000,
+ ["unit"]=16
+ },
+ {
+ ["value"]=15000,
+ ["unit"]=16
+ }
+ },
+ ["wave"]=6,
+ ["random_monster"]=5001,
+ ["time_limit"]=30
+ }
+}
+local config = {
+data=arena,count=24
+}
+return config
\ No newline at end of file
diff --git a/lua/app/config/arena.lua.meta b/lua/app/config/arena.lua.meta
new file mode 100644
index 00000000..2381d6f0
--- /dev/null
+++ b/lua/app/config/arena.lua.meta
@@ -0,0 +1,10 @@
+fileFormatVersion: 2
+guid: 0e8f8f3318b1555438d8d450ddda4a12
+ScriptedImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 2
+ userData:
+ assetBundleName:
+ assetBundleVariant:
+ script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
diff --git a/lua/app/config/arena_rank_award.lua b/lua/app/config/arena_rank_award.lua
new file mode 100644
index 00000000..13518c43
--- /dev/null
+++ b/lua/app/config/arena_rank_award.lua
@@ -0,0 +1,214 @@
+local arena_rank_award = {
+ [1]={
+ ["rank"]={
+ 1,
+ 1
+ },
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["id"]=18,
+ ["count"]={
+ ["value"]=100,
+ ["unit"]=0
+ }
+ }
+ }
+ },
+ [2]={
+ ["rank"]={
+ 2,
+ 2
+ },
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["id"]=18,
+ ["count"]={
+ ["value"]=70,
+ ["unit"]=0
+ }
+ }
+ }
+ },
+ [3]={
+ ["rank"]={
+ 3,
+ 3
+ },
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["id"]=18,
+ ["count"]={
+ ["value"]=50,
+ ["unit"]=0
+ }
+ }
+ }
+ },
+ [4]={
+ ["rank"]={
+ 4,
+ 5
+ },
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["id"]=18,
+ ["count"]={
+ ["value"]=40,
+ ["unit"]=0
+ }
+ }
+ }
+ },
+ [5]={
+ ["rank"]={
+ 6,
+ 10
+ },
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["id"]=18,
+ ["count"]={
+ ["value"]=30,
+ ["unit"]=0
+ }
+ }
+ }
+ },
+ [6]={
+ ["rank"]={
+ 11,
+ 20
+ },
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["id"]=18,
+ ["count"]={
+ ["value"]=25,
+ ["unit"]=0
+ }
+ }
+ }
+ },
+ [7]={
+ ["rank"]={
+ 21,
+ 30
+ },
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["id"]=18,
+ ["count"]={
+ ["value"]=20,
+ ["unit"]=0
+ }
+ }
+ }
+ },
+ [8]={
+ ["rank"]={
+ 31,
+ 40
+ },
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["id"]=18,
+ ["count"]={
+ ["value"]=15,
+ ["unit"]=0
+ }
+ }
+ }
+ },
+ [9]={
+ ["rank"]={
+ 41,
+ 50
+ },
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["id"]=18,
+ ["count"]={
+ ["value"]=12,
+ ["unit"]=0
+ }
+ }
+ }
+ },
+ [10]={
+ ["rank"]={
+ 51,
+ 70
+ },
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["id"]=18,
+ ["count"]={
+ ["value"]=10,
+ ["unit"]=0
+ }
+ }
+ }
+ },
+ [11]={
+ ["rank"]={
+ 71,
+ 100
+ },
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["id"]=18,
+ ["count"]={
+ ["value"]=8,
+ ["unit"]=0
+ }
+ }
+ }
+ },
+ [12]={
+ ["rank"]={
+ 101,
+ 150
+ },
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["id"]=18,
+ ["count"]={
+ ["value"]=6,
+ ["unit"]=0
+ }
+ }
+ }
+ },
+ [13]={
+ ["rank"]={
+ 151,
+ 200
+ },
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["id"]=18,
+ ["count"]={
+ ["value"]=5,
+ ["unit"]=0
+ }
+ }
+ }
+ }
+}
+local config = {
+data=arena_rank_award,count=13
+}
+return config
\ No newline at end of file
diff --git a/lua/app/config/arena_rank_award.lua.meta b/lua/app/config/arena_rank_award.lua.meta
new file mode 100644
index 00000000..4b6f16ac
--- /dev/null
+++ b/lua/app/config/arena_rank_award.lua.meta
@@ -0,0 +1,10 @@
+fileFormatVersion: 2
+guid: d3c590bad9570aa4981fa61844f3bbdd
+ScriptedImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 2
+ userData:
+ assetBundleName:
+ assetBundleVariant:
+ script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
diff --git a/lua/app/config/attr.lua b/lua/app/config/attr.lua
new file mode 100644
index 00000000..757adb95
--- /dev/null
+++ b/lua/app/config/attr.lua
@@ -0,0 +1,144 @@
+local attr = {
+ [1]={
+ ["name"]="hp"
+ },
+ [2]={
+ ["name"]="atk"
+ },
+ [3]={
+ ["name"]="crit"
+ },
+ [4]={
+ ["name"]="crit_time"
+ },
+ [5]={
+ ["name"]="dmg_dec_all"
+ },
+ [6]={
+ ["name"]="atkp_1"
+ },
+ [7]={
+ ["name"]="atkp_2"
+ },
+ [8]={
+ ["name"]="atkp_3"
+ },
+ [9]={
+ ["name"]="atkp_4"
+ },
+ [10]={
+ ["name"]="atkp_5"
+ },
+ [11]={
+ ["name"]="atkp_6"
+ },
+ [12]={
+ ["name"]="atkp_7"
+ },
+ [13]={
+ ["name"]="atkp_8"
+ },
+ [14]={
+ ["name"]="atkp_9"
+ },
+ [15]={
+ ["name"]="hpp_1"
+ },
+ [16]={
+ ["name"]="hpp_2"
+ },
+ [17]={
+ ["name"]="hpp_3"
+ },
+ [18]={
+ ["name"]="hpp_4"
+ },
+ [19]={
+ ["name"]="hpp_5"
+ },
+ [20]={
+ ["name"]="hpp_6"
+ },
+ [21]={
+ ["name"]="hpp_7"
+ },
+ [22]={
+ ["name"]="dmg_addition"
+ },
+ [23]={
+ ["name"]="miss"
+ },
+ [24]={
+ ["name"]="gold_gain"
+ },
+ [25]={
+ ["name"]="dmg_addition_skill"
+ },
+ [26]={
+ ["name"]="dmg_addition_normal"
+ },
+ [27]={
+ ["name"]="idle_income"
+ },
+ [28]={
+ ["name"]="pickaxe_recover_spd"
+ },
+ [29]={
+ ["name"]="pickaxe_own_limit"
+ },
+ [30]={
+ ["name"]="mineral_gain"
+ },
+ [31]={
+ ["name"]="research_spd"
+ },
+ [32]={
+ ["name"]="airborne_damage"
+ },
+ [33]={
+ ["name"]="airborne_num"
+ }
+}
+local keys = {
+ name = {
+ ["hp"]=attr[1],
+ ["atk"]=attr[2],
+ ["crit"]=attr[3],
+ ["crit_time"]=attr[4],
+ ["dmg_dec_all"]=attr[5],
+ ["atkp_1"]=attr[6],
+ ["atkp_2"]=attr[7],
+ ["atkp_3"]=attr[8],
+ ["atkp_4"]=attr[9],
+ ["atkp_5"]=attr[10],
+ ["atkp_6"]=attr[11],
+ ["atkp_7"]=attr[12],
+ ["atkp_8"]=attr[13],
+ ["atkp_9"]=attr[14],
+ ["hpp_1"]=attr[15],
+ ["hpp_2"]=attr[16],
+ ["hpp_3"]=attr[17],
+ ["hpp_4"]=attr[18],
+ ["hpp_5"]=attr[19],
+ ["hpp_6"]=attr[20],
+ ["hpp_7"]=attr[21],
+ ["dmg_addition"]=attr[22],
+ ["miss"]=attr[23],
+ ["gold_gain"]=attr[24],
+ ["dmg_addition_skill"]=attr[25],
+ ["dmg_addition_normal"]=attr[26],
+ ["idle_income"]=attr[27],
+ ["pickaxe_recover_spd"]=attr[28],
+ ["pickaxe_own_limit"]=attr[29],
+ ["mineral_gain"]=attr[30],
+ ["research_spd"]=attr[31],
+ ["airborne_damage"]=attr[32],
+ ["airborne_num"]=attr[33]
+ }
+}
+local config = {
+data=attr,
+keys=keys,
+count=33
+}
+return config
\ No newline at end of file
diff --git a/lua/app/config/attr.lua.meta b/lua/app/config/attr.lua.meta
new file mode 100644
index 00000000..5fa9b3bf
--- /dev/null
+++ b/lua/app/config/attr.lua.meta
@@ -0,0 +1,10 @@
+fileFormatVersion: 2
+guid: 4a4e43c1acadab548bf5dd452ceb482f
+ScriptedImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 2
+ userData:
+ assetBundleName:
+ assetBundleVariant:
+ script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
diff --git a/lua/app/config/battle_const.lua b/lua/app/config/battle_const.lua
new file mode 100644
index 00000000..4b894a6c
--- /dev/null
+++ b/lua/app/config/battle_const.lua
@@ -0,0 +1,111 @@
+local battle_const = {
+ ["origin_attack"]={
+ ["int_list"]={
+ 2101,
+ 2102,
+ 2103,
+ 2104,
+ 2105,
+ 2106
+ }
+ },
+ ["test_hero"]={
+ ["value"]=2
+ },
+ ["test_attack"]={
+ ["int_list"]={
+ 2601,
+ 2602,
+ 2603,
+ 2604,
+ 2605,
+ 2606
+ }
+ },
+ ["test_skill"]={
+ ["int_list"]={
+ 21011,
+ 21014,
+ 21015
+ }
+ },
+ ["test_skill_extra"]={
+ ["int_list"]={
+ 2001,
+ 2002
+ }
+ },
+ ["distance_scene"]={
+ ["value"]=5000
+ },
+ ["distance_attack"]={
+ ["value"]=313
+ },
+ ["distance_dash"]={
+ ["value"]=1250
+ },
+ ["distance_back"]={
+ ["value"]=625
+ },
+ ["time_attack"]={
+ ["value"]=100
+ },
+ ["time_back"]={
+ ["value"]=50
+ },
+ ["shake_level_1"]={
+ ["value"]=10
+ },
+ ["shake_level_2"]={
+ ["value"]=20
+ },
+ ["shake_level_3"]={
+ ["value"]=60
+ },
+ ["distance_hit_back"]={
+ ["value"]=80
+ },
+ ["distance_hit_fly"]={
+ ["value"]=555
+ },
+ ["height_hit_fly"]={
+ ["value"]=592
+ },
+ ["time_hit_fly"]={
+ ["value"]=1200
+ },
+ ["time_lie"]={
+ ["value"]=1200
+ },
+ ["delay_battle_start"]={
+ ["value"]=2000
+ },
+ ["aotu_fight_interval"]={
+ ["value"]=400
+ },
+ ["double_skill_interval"]={
+ ["value"]=500
+ },
+ ["height_number_small"]={
+ ["value"]=70
+ },
+ ["height_number_middle"]={
+ ["value"]=100
+ },
+ ["height_number_high"]={
+ ["value"]=160
+ },
+ ["height_hp_bar_small"]={
+ ["value"]=120
+ },
+ ["height_hp_bar_middle"]={
+ ["value"]=150
+ },
+ ["height_hp_bar_high"]={
+ ["value"]=190
+ }
+}
+local config = {
+data=battle_const,count=28
+}
+return config
\ No newline at end of file
diff --git a/lua/app/config/battle_const.lua.meta b/lua/app/config/battle_const.lua.meta
new file mode 100644
index 00000000..e999dfdd
--- /dev/null
+++ b/lua/app/config/battle_const.lua.meta
@@ -0,0 +1,10 @@
+fileFormatVersion: 2
+guid: 75c976f101923524ab2cbe669322f373
+ScriptedImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 2
+ userData:
+ assetBundleName:
+ assetBundleVariant:
+ script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
diff --git a/lua/app/config/battle_move.lua b/lua/app/config/battle_move.lua
new file mode 100644
index 00000000..90aa90cc
--- /dev/null
+++ b/lua/app/config/battle_move.lua
@@ -0,0 +1,311 @@
+local battle_move = {
+ [1]={
+ ["horizontal"]=2,
+ ["target"]=2,
+ ["target_offset"]={
+ -200,
+ 0
+ },
+ ["refresh"]=1,
+ ["speed"]=600,
+ ["end_distance"]=0
+ },
+ [2]={
+ ["horizontal"]=2,
+ ["target"]=2,
+ ["target_offset"]={
+ -250,
+ 0
+ },
+ ["refresh"]=1,
+ ["speed"]=700,
+ ["end_distance"]=0
+ },
+ [3]={
+ ["horizontal"]=2,
+ ["target"]=2,
+ ["target_offset"]={
+ -350,
+ 0
+ },
+ ["refresh"]=1,
+ ["speed"]=300,
+ ["end_distance"]=0
+ },
+ [4]={
+ ["horizontal"]=2,
+ ["target"]=2,
+ ["target_offset"]={
+ -1000,
+ 0
+ },
+ ["refresh"]=1,
+ ["speed"]=300,
+ ["end_time"]=1000,
+ ["collision_type"]=1
+ },
+ [5]={
+ ["horizontal"]=2,
+ ["target"]=2,
+ ["target_offset"]={
+ 0,
+ 0
+ },
+ ["refresh"]=1,
+ ["speed"]=300,
+ ["end_distance"]=1000
+ },
+ [6]={
+ ["horizontal"]=2,
+ ["target"]=2,
+ ["target_offset"]={
+ -1000,
+ 0
+ },
+ ["refresh"]=1,
+ ["speed"]=300,
+ ["end_time"]=2000,
+ ["collision_type"]=1
+ },
+ [7]={
+ ["horizontal"]=2,
+ ["target"]=2,
+ ["target_offset"]={
+ 0,
+ 0
+ },
+ ["speed"]=10000,
+ ["end_time"]=100,
+ ["collision_type"]=1
+ },
+ [8]={
+ ["horizontal"]=2,
+ ["target"]=2,
+ ["target_offset"]={
+ 1000,
+ 0
+ },
+ ["across"]=1,
+ ["speed"]=5000,
+ ["end_time"]=500,
+ ["collision_type"]=1
+ },
+ [9]={
+ ["horizontal"]=2,
+ ["target"]=2,
+ ["target_offset"]={
+ 0,
+ 0
+ },
+ ["speed"]=800,
+ ["end_time"]=2000,
+ ["collision_type"]=1
+ },
+ [10]={
+ ["horizontal"]=2,
+ ["target"]=2,
+ ["target_offset"]={
+ 0,
+ 0
+ },
+ ["refresh"]=1,
+ ["speed"]=300,
+ ["end_distance"]=650
+ },
+ [11]={
+ ["horizontal"]=1,
+ ["target"]=2,
+ ["target_offset"]={
+ 200,
+ 0
+ },
+ ["across"]=1,
+ ["end_distance"]=0
+ },
+ [12]={
+ ["horizontal"]=1,
+ ["target"]=1,
+ ["target_offset"]={
+ 10000,
+ 0
+ },
+ ["refresh"]=1,
+ ["across"]=1,
+ ["speed"]=5000,
+ ["end_time"]=200,
+ ["collision_type"]=1
+ },
+ [13]={
+ ["horizontal"]=1,
+ ["target"]=1,
+ ["target_offset"]={
+ -500,
+ 0
+ },
+ ["refresh"]=1,
+ ["speed"]=600,
+ ["end_time"]=1000,
+ ["collision_type"]=1
+ },
+ [14]={
+ ["horizontal"]=1,
+ ["target"]=2,
+ ["target_offset"]={
+ 0,
+ 0
+ },
+ ["speed"]=2000,
+ ["end_time"]=300
+ },
+ [15]={
+ ["horizontal"]=2,
+ ["target"]=2,
+ ["target_offset"]={
+ 0,
+ 0
+ },
+ ["refresh"]=1,
+ ["speed"]=600,
+ ["end_distance"]=1000
+ },
+ [16]={
+ ["horizontal"]=2,
+ ["target"]=2,
+ ["target_offset"]={
+ -1000,
+ 0
+ },
+ ["refresh"]=1,
+ ["speed"]=600,
+ ["end_time"]=2000,
+ ["collision_type"]=1
+ },
+ [17]={
+ ["horizontal"]=2,
+ ["target"]=2,
+ ["target_offset"]={
+ 0,
+ 0
+ },
+ ["speed"]=1000,
+ ["end_time"]=200,
+ ["collision_type"]=1
+ },
+ [18]={
+ ["horizontal"]=1,
+ ["target"]=2,
+ ["target_offset"]={
+ 500,
+ 0
+ },
+ ["across"]=1,
+ ["speed"]=2000,
+ ["end_time"]=300
+ },
+ [19]={
+ ["horizontal"]=2,
+ ["target"]=2,
+ ["target_offset"]={
+ 0,
+ 0
+ },
+ ["refresh"]=1,
+ ["across"]=1,
+ ["end_distance"]=0
+ },
+ [20]={
+ ["horizontal"]=2,
+ ["target"]=2,
+ ["target_offset"]={
+ 0,
+ 0
+ },
+ ["refresh"]=1,
+ ["across"]=1,
+ ["speed"]=500,
+ ["end_time"]=3000
+ },
+ [21]={
+ ["horizontal"]=2,
+ ["target"]=2,
+ ["target_offset"]={
+ -250,
+ 0
+ },
+ ["refresh"]=1,
+ ["speed"]=400,
+ ["end_distance"]=0
+ },
+ [22]={
+ ["horizontal"]=2,
+ ["target"]=2,
+ ["target_offset"]={
+ 0,
+ 0
+ },
+ ["speed"]=13000,
+ ["end_time"]=100,
+ ["collision_type"]=1
+ },
+ [23]={
+ ["horizontal"]=2,
+ ["target"]=2,
+ ["target_offset"]={
+ 0,
+ 0
+ },
+ ["refresh"]=1,
+ ["across"]=1,
+ ["end_time"]=1000
+ },
+ [24]={
+ ["horizontal"]=2,
+ ["target"]=2,
+ ["target_offset"]={
+ 0,
+ 0
+ },
+ ["refresh"]=1,
+ ["across"]=1,
+ ["end_time"]=500
+ },
+ [25]={
+ ["horizontal"]=2,
+ ["target"]=2,
+ ["target_offset"]={
+ 0,
+ 0
+ },
+ ["refresh"]=1,
+ ["across"]=1,
+ ["end_time"]=2000
+ },
+ [26]={
+ ["horizontal"]=2,
+ ["target"]=2,
+ ["target_offset"]={
+ 1000,
+ 0
+ },
+ ["across"]=1,
+ ["speed"]=3500,
+ ["end_time"]=200,
+ ["collision_type"]=1
+ },
+ [27]={
+ ["horizontal"]=2,
+ ["target"]=2,
+ ["target_offset"]={
+ 1000,
+ 0
+ },
+ ["across"]=1,
+ ["speed"]=7000,
+ ["end_time"]=200,
+ ["collision_type"]=1
+ }
+}
+local config = {
+data=battle_move,count=27
+}
+return config
\ No newline at end of file
diff --git a/lua/app/config/battle_move.lua.meta b/lua/app/config/battle_move.lua.meta
new file mode 100644
index 00000000..28746960
--- /dev/null
+++ b/lua/app/config/battle_move.lua.meta
@@ -0,0 +1,10 @@
+fileFormatVersion: 2
+guid: bc648d16309ee604c8693c7abf401abb
+ScriptedImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 2
+ userData:
+ assetBundleName:
+ assetBundleVariant:
+ script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
diff --git a/lua/app/config/bignum_mapping.lua b/lua/app/config/bignum_mapping.lua
new file mode 100644
index 00000000..1bf56429
--- /dev/null
+++ b/lua/app/config/bignum_mapping.lua
@@ -0,0 +1,2814 @@
+local bignum_mapping = {
+ [1]={
+ ["letter"]="A",
+ ["num_lv"]=3
+ },
+ [2]={
+ ["letter"]="B",
+ ["num_lv"]=6
+ },
+ [3]={
+ ["letter"]="C",
+ ["num_lv"]=9
+ },
+ [4]={
+ ["letter"]="D",
+ ["num_lv"]=12
+ },
+ [5]={
+ ["letter"]="E",
+ ["num_lv"]=15
+ },
+ [6]={
+ ["letter"]="F",
+ ["num_lv"]=18
+ },
+ [7]={
+ ["letter"]="G",
+ ["num_lv"]=21
+ },
+ [8]={
+ ["letter"]="H",
+ ["num_lv"]=24
+ },
+ [9]={
+ ["letter"]="I",
+ ["num_lv"]=27
+ },
+ [10]={
+ ["letter"]="J",
+ ["num_lv"]=30
+ },
+ [11]={
+ ["letter"]="K",
+ ["num_lv"]=33
+ },
+ [12]={
+ ["letter"]="L",
+ ["num_lv"]=36
+ },
+ [13]={
+ ["letter"]="M",
+ ["num_lv"]=39
+ },
+ [14]={
+ ["letter"]="N",
+ ["num_lv"]=42
+ },
+ [15]={
+ ["letter"]="O",
+ ["num_lv"]=45
+ },
+ [16]={
+ ["letter"]="P",
+ ["num_lv"]=48
+ },
+ [17]={
+ ["letter"]="Q",
+ ["num_lv"]=51
+ },
+ [18]={
+ ["letter"]="R",
+ ["num_lv"]=54
+ },
+ [19]={
+ ["letter"]="S",
+ ["num_lv"]=57
+ },
+ [20]={
+ ["letter"]="T",
+ ["num_lv"]=60
+ },
+ [21]={
+ ["letter"]="U",
+ ["num_lv"]=63
+ },
+ [22]={
+ ["letter"]="V",
+ ["num_lv"]=66
+ },
+ [23]={
+ ["letter"]="W",
+ ["num_lv"]=69
+ },
+ [24]={
+ ["letter"]="X",
+ ["num_lv"]=72
+ },
+ [25]={
+ ["letter"]="Y",
+ ["num_lv"]=75
+ },
+ [26]={
+ ["letter"]="Z",
+ ["num_lv"]=78
+ },
+ [27]={
+ ["letter"]="AA",
+ ["num_lv"]=81
+ },
+ [28]={
+ ["letter"]="AB",
+ ["num_lv"]=84
+ },
+ [29]={
+ ["letter"]="AC",
+ ["num_lv"]=87
+ },
+ [30]={
+ ["letter"]="AD",
+ ["num_lv"]=90
+ },
+ [31]={
+ ["letter"]="AE",
+ ["num_lv"]=93
+ },
+ [32]={
+ ["letter"]="AF",
+ ["num_lv"]=96
+ },
+ [33]={
+ ["letter"]="AG",
+ ["num_lv"]=99
+ },
+ [34]={
+ ["letter"]="AH",
+ ["num_lv"]=102
+ },
+ [35]={
+ ["letter"]="AI",
+ ["num_lv"]=105
+ },
+ [36]={
+ ["letter"]="AJ",
+ ["num_lv"]=108
+ },
+ [37]={
+ ["letter"]="AK",
+ ["num_lv"]=111
+ },
+ [38]={
+ ["letter"]="AL",
+ ["num_lv"]=114
+ },
+ [39]={
+ ["letter"]="AM",
+ ["num_lv"]=117
+ },
+ [40]={
+ ["letter"]="AN",
+ ["num_lv"]=120
+ },
+ [41]={
+ ["letter"]="AO",
+ ["num_lv"]=123
+ },
+ [42]={
+ ["letter"]="AP",
+ ["num_lv"]=126
+ },
+ [43]={
+ ["letter"]="AQ",
+ ["num_lv"]=129
+ },
+ [44]={
+ ["letter"]="AR",
+ ["num_lv"]=132
+ },
+ [45]={
+ ["letter"]="AS",
+ ["num_lv"]=135
+ },
+ [46]={
+ ["letter"]="AT",
+ ["num_lv"]=138
+ },
+ [47]={
+ ["letter"]="AU",
+ ["num_lv"]=141
+ },
+ [48]={
+ ["letter"]="AV",
+ ["num_lv"]=144
+ },
+ [49]={
+ ["letter"]="AW",
+ ["num_lv"]=147
+ },
+ [50]={
+ ["letter"]="AX",
+ ["num_lv"]=150
+ },
+ [51]={
+ ["letter"]="AY",
+ ["num_lv"]=153
+ },
+ [52]={
+ ["letter"]="AZ",
+ ["num_lv"]=156
+ },
+ [53]={
+ ["letter"]="BA",
+ ["num_lv"]=159
+ },
+ [54]={
+ ["letter"]="BB",
+ ["num_lv"]=162
+ },
+ [55]={
+ ["letter"]="BC",
+ ["num_lv"]=165
+ },
+ [56]={
+ ["letter"]="BD",
+ ["num_lv"]=168
+ },
+ [57]={
+ ["letter"]="BE",
+ ["num_lv"]=171
+ },
+ [58]={
+ ["letter"]="BF",
+ ["num_lv"]=174
+ },
+ [59]={
+ ["letter"]="BG",
+ ["num_lv"]=177
+ },
+ [60]={
+ ["letter"]="BH",
+ ["num_lv"]=180
+ },
+ [61]={
+ ["letter"]="BI",
+ ["num_lv"]=183
+ },
+ [62]={
+ ["letter"]="BJ",
+ ["num_lv"]=186
+ },
+ [63]={
+ ["letter"]="BK",
+ ["num_lv"]=189
+ },
+ [64]={
+ ["letter"]="BL",
+ ["num_lv"]=192
+ },
+ [65]={
+ ["letter"]="BM",
+ ["num_lv"]=195
+ },
+ [66]={
+ ["letter"]="BN",
+ ["num_lv"]=198
+ },
+ [67]={
+ ["letter"]="BO",
+ ["num_lv"]=201
+ },
+ [68]={
+ ["letter"]="BP",
+ ["num_lv"]=204
+ },
+ [69]={
+ ["letter"]="BQ",
+ ["num_lv"]=207
+ },
+ [70]={
+ ["letter"]="BR",
+ ["num_lv"]=210
+ },
+ [71]={
+ ["letter"]="BS",
+ ["num_lv"]=213
+ },
+ [72]={
+ ["letter"]="BT",
+ ["num_lv"]=216
+ },
+ [73]={
+ ["letter"]="BU",
+ ["num_lv"]=219
+ },
+ [74]={
+ ["letter"]="BV",
+ ["num_lv"]=222
+ },
+ [75]={
+ ["letter"]="BW",
+ ["num_lv"]=225
+ },
+ [76]={
+ ["letter"]="BX",
+ ["num_lv"]=228
+ },
+ [77]={
+ ["letter"]="BY",
+ ["num_lv"]=231
+ },
+ [78]={
+ ["letter"]="BZ",
+ ["num_lv"]=234
+ },
+ [79]={
+ ["letter"]="CA",
+ ["num_lv"]=237
+ },
+ [80]={
+ ["letter"]="CB",
+ ["num_lv"]=240
+ },
+ [81]={
+ ["letter"]="CC",
+ ["num_lv"]=243
+ },
+ [82]={
+ ["letter"]="CD",
+ ["num_lv"]=246
+ },
+ [83]={
+ ["letter"]="CE",
+ ["num_lv"]=249
+ },
+ [84]={
+ ["letter"]="CF",
+ ["num_lv"]=252
+ },
+ [85]={
+ ["letter"]="CG",
+ ["num_lv"]=255
+ },
+ [86]={
+ ["letter"]="CH",
+ ["num_lv"]=258
+ },
+ [87]={
+ ["letter"]="CI",
+ ["num_lv"]=261
+ },
+ [88]={
+ ["letter"]="CJ",
+ ["num_lv"]=264
+ },
+ [89]={
+ ["letter"]="CK",
+ ["num_lv"]=267
+ },
+ [90]={
+ ["letter"]="CL",
+ ["num_lv"]=270
+ },
+ [91]={
+ ["letter"]="CM",
+ ["num_lv"]=273
+ },
+ [92]={
+ ["letter"]="CN",
+ ["num_lv"]=276
+ },
+ [93]={
+ ["letter"]="CO",
+ ["num_lv"]=279
+ },
+ [94]={
+ ["letter"]="CP",
+ ["num_lv"]=282
+ },
+ [95]={
+ ["letter"]="CQ",
+ ["num_lv"]=285
+ },
+ [96]={
+ ["letter"]="CR",
+ ["num_lv"]=288
+ },
+ [97]={
+ ["letter"]="CS",
+ ["num_lv"]=291
+ },
+ [98]={
+ ["letter"]="CT",
+ ["num_lv"]=294
+ },
+ [99]={
+ ["letter"]="CU",
+ ["num_lv"]=297
+ },
+ [100]={
+ ["letter"]="CV",
+ ["num_lv"]=300
+ },
+ [101]={
+ ["letter"]="CW",
+ ["num_lv"]=303
+ },
+ [102]={
+ ["letter"]="CX",
+ ["num_lv"]=306
+ },
+ [103]={
+ ["letter"]="CY",
+ ["num_lv"]=309
+ },
+ [104]={
+ ["letter"]="CZ",
+ ["num_lv"]=312
+ },
+ [105]={
+ ["letter"]="DA",
+ ["num_lv"]=315
+ },
+ [106]={
+ ["letter"]="DB",
+ ["num_lv"]=318
+ },
+ [107]={
+ ["letter"]="DC",
+ ["num_lv"]=321
+ },
+ [108]={
+ ["letter"]="DD",
+ ["num_lv"]=324
+ },
+ [109]={
+ ["letter"]="DE",
+ ["num_lv"]=327
+ },
+ [110]={
+ ["letter"]="DF",
+ ["num_lv"]=330
+ },
+ [111]={
+ ["letter"]="DG",
+ ["num_lv"]=333
+ },
+ [112]={
+ ["letter"]="DH",
+ ["num_lv"]=336
+ },
+ [113]={
+ ["letter"]="DI",
+ ["num_lv"]=339
+ },
+ [114]={
+ ["letter"]="DJ",
+ ["num_lv"]=342
+ },
+ [115]={
+ ["letter"]="DK",
+ ["num_lv"]=345
+ },
+ [116]={
+ ["letter"]="DL",
+ ["num_lv"]=348
+ },
+ [117]={
+ ["letter"]="DM",
+ ["num_lv"]=351
+ },
+ [118]={
+ ["letter"]="DN",
+ ["num_lv"]=354
+ },
+ [119]={
+ ["letter"]="DO",
+ ["num_lv"]=357
+ },
+ [120]={
+ ["letter"]="DP",
+ ["num_lv"]=360
+ },
+ [121]={
+ ["letter"]="DQ",
+ ["num_lv"]=363
+ },
+ [122]={
+ ["letter"]="DR",
+ ["num_lv"]=366
+ },
+ [123]={
+ ["letter"]="DS",
+ ["num_lv"]=369
+ },
+ [124]={
+ ["letter"]="DT",
+ ["num_lv"]=372
+ },
+ [125]={
+ ["letter"]="DU",
+ ["num_lv"]=375
+ },
+ [126]={
+ ["letter"]="DV",
+ ["num_lv"]=378
+ },
+ [127]={
+ ["letter"]="DW",
+ ["num_lv"]=381
+ },
+ [128]={
+ ["letter"]="DX",
+ ["num_lv"]=384
+ },
+ [129]={
+ ["letter"]="DY",
+ ["num_lv"]=387
+ },
+ [130]={
+ ["letter"]="DZ",
+ ["num_lv"]=390
+ },
+ [131]={
+ ["letter"]="EA",
+ ["num_lv"]=393
+ },
+ [132]={
+ ["letter"]="EB",
+ ["num_lv"]=396
+ },
+ [133]={
+ ["letter"]="EC",
+ ["num_lv"]=399
+ },
+ [134]={
+ ["letter"]="ED",
+ ["num_lv"]=402
+ },
+ [135]={
+ ["letter"]="EE",
+ ["num_lv"]=405
+ },
+ [136]={
+ ["letter"]="EF",
+ ["num_lv"]=408
+ },
+ [137]={
+ ["letter"]="EG",
+ ["num_lv"]=411
+ },
+ [138]={
+ ["letter"]="EH",
+ ["num_lv"]=414
+ },
+ [139]={
+ ["letter"]="EI",
+ ["num_lv"]=417
+ },
+ [140]={
+ ["letter"]="EJ",
+ ["num_lv"]=420
+ },
+ [141]={
+ ["letter"]="EK",
+ ["num_lv"]=423
+ },
+ [142]={
+ ["letter"]="EL",
+ ["num_lv"]=426
+ },
+ [143]={
+ ["letter"]="EM",
+ ["num_lv"]=429
+ },
+ [144]={
+ ["letter"]="EN",
+ ["num_lv"]=432
+ },
+ [145]={
+ ["letter"]="EO",
+ ["num_lv"]=435
+ },
+ [146]={
+ ["letter"]="EP",
+ ["num_lv"]=438
+ },
+ [147]={
+ ["letter"]="EQ",
+ ["num_lv"]=441
+ },
+ [148]={
+ ["letter"]="ER",
+ ["num_lv"]=444
+ },
+ [149]={
+ ["letter"]="ES",
+ ["num_lv"]=447
+ },
+ [150]={
+ ["letter"]="ET",
+ ["num_lv"]=450
+ },
+ [151]={
+ ["letter"]="EU",
+ ["num_lv"]=453
+ },
+ [152]={
+ ["letter"]="EV",
+ ["num_lv"]=456
+ },
+ [153]={
+ ["letter"]="EW",
+ ["num_lv"]=459
+ },
+ [154]={
+ ["letter"]="EX",
+ ["num_lv"]=462
+ },
+ [155]={
+ ["letter"]="EY",
+ ["num_lv"]=465
+ },
+ [156]={
+ ["letter"]="EZ",
+ ["num_lv"]=468
+ },
+ [157]={
+ ["letter"]="FA",
+ ["num_lv"]=471
+ },
+ [158]={
+ ["letter"]="FB",
+ ["num_lv"]=474
+ },
+ [159]={
+ ["letter"]="FC",
+ ["num_lv"]=477
+ },
+ [160]={
+ ["letter"]="FD",
+ ["num_lv"]=480
+ },
+ [161]={
+ ["letter"]="FE",
+ ["num_lv"]=483
+ },
+ [162]={
+ ["letter"]="FF",
+ ["num_lv"]=486
+ },
+ [163]={
+ ["letter"]="FG",
+ ["num_lv"]=489
+ },
+ [164]={
+ ["letter"]="FH",
+ ["num_lv"]=492
+ },
+ [165]={
+ ["letter"]="FI",
+ ["num_lv"]=495
+ },
+ [166]={
+ ["letter"]="FJ",
+ ["num_lv"]=498
+ },
+ [167]={
+ ["letter"]="FK",
+ ["num_lv"]=501
+ },
+ [168]={
+ ["letter"]="FL",
+ ["num_lv"]=504
+ },
+ [169]={
+ ["letter"]="FM",
+ ["num_lv"]=507
+ },
+ [170]={
+ ["letter"]="FN",
+ ["num_lv"]=510
+ },
+ [171]={
+ ["letter"]="FO",
+ ["num_lv"]=513
+ },
+ [172]={
+ ["letter"]="FP",
+ ["num_lv"]=516
+ },
+ [173]={
+ ["letter"]="FQ",
+ ["num_lv"]=519
+ },
+ [174]={
+ ["letter"]="FR",
+ ["num_lv"]=522
+ },
+ [175]={
+ ["letter"]="FS",
+ ["num_lv"]=525
+ },
+ [176]={
+ ["letter"]="FT",
+ ["num_lv"]=528
+ },
+ [177]={
+ ["letter"]="FU",
+ ["num_lv"]=531
+ },
+ [178]={
+ ["letter"]="FV",
+ ["num_lv"]=534
+ },
+ [179]={
+ ["letter"]="FW",
+ ["num_lv"]=537
+ },
+ [180]={
+ ["letter"]="FX",
+ ["num_lv"]=540
+ },
+ [181]={
+ ["letter"]="FY",
+ ["num_lv"]=543
+ },
+ [182]={
+ ["letter"]="FZ",
+ ["num_lv"]=546
+ },
+ [183]={
+ ["letter"]="GA",
+ ["num_lv"]=549
+ },
+ [184]={
+ ["letter"]="GB",
+ ["num_lv"]=552
+ },
+ [185]={
+ ["letter"]="GC",
+ ["num_lv"]=555
+ },
+ [186]={
+ ["letter"]="GD",
+ ["num_lv"]=558
+ },
+ [187]={
+ ["letter"]="GE",
+ ["num_lv"]=561
+ },
+ [188]={
+ ["letter"]="GF",
+ ["num_lv"]=564
+ },
+ [189]={
+ ["letter"]="GG",
+ ["num_lv"]=567
+ },
+ [190]={
+ ["letter"]="GH",
+ ["num_lv"]=570
+ },
+ [191]={
+ ["letter"]="GI",
+ ["num_lv"]=573
+ },
+ [192]={
+ ["letter"]="GJ",
+ ["num_lv"]=576
+ },
+ [193]={
+ ["letter"]="GK",
+ ["num_lv"]=579
+ },
+ [194]={
+ ["letter"]="GL",
+ ["num_lv"]=582
+ },
+ [195]={
+ ["letter"]="GM",
+ ["num_lv"]=585
+ },
+ [196]={
+ ["letter"]="GN",
+ ["num_lv"]=588
+ },
+ [197]={
+ ["letter"]="GO",
+ ["num_lv"]=591
+ },
+ [198]={
+ ["letter"]="GP",
+ ["num_lv"]=594
+ },
+ [199]={
+ ["letter"]="GQ",
+ ["num_lv"]=597
+ },
+ [200]={
+ ["letter"]="GR",
+ ["num_lv"]=600
+ },
+ [201]={
+ ["letter"]="GS",
+ ["num_lv"]=603
+ },
+ [202]={
+ ["letter"]="GT",
+ ["num_lv"]=606
+ },
+ [203]={
+ ["letter"]="GU",
+ ["num_lv"]=609
+ },
+ [204]={
+ ["letter"]="GV",
+ ["num_lv"]=612
+ },
+ [205]={
+ ["letter"]="GW",
+ ["num_lv"]=615
+ },
+ [206]={
+ ["letter"]="GX",
+ ["num_lv"]=618
+ },
+ [207]={
+ ["letter"]="GY",
+ ["num_lv"]=621
+ },
+ [208]={
+ ["letter"]="GZ",
+ ["num_lv"]=624
+ },
+ [209]={
+ ["letter"]="HA",
+ ["num_lv"]=627
+ },
+ [210]={
+ ["letter"]="HB",
+ ["num_lv"]=630
+ },
+ [211]={
+ ["letter"]="HC",
+ ["num_lv"]=633
+ },
+ [212]={
+ ["letter"]="HD",
+ ["num_lv"]=636
+ },
+ [213]={
+ ["letter"]="HE",
+ ["num_lv"]=639
+ },
+ [214]={
+ ["letter"]="HF",
+ ["num_lv"]=642
+ },
+ [215]={
+ ["letter"]="HG",
+ ["num_lv"]=645
+ },
+ [216]={
+ ["letter"]="HH",
+ ["num_lv"]=648
+ },
+ [217]={
+ ["letter"]="HI",
+ ["num_lv"]=651
+ },
+ [218]={
+ ["letter"]="HJ",
+ ["num_lv"]=654
+ },
+ [219]={
+ ["letter"]="HK",
+ ["num_lv"]=657
+ },
+ [220]={
+ ["letter"]="HL",
+ ["num_lv"]=660
+ },
+ [221]={
+ ["letter"]="HM",
+ ["num_lv"]=663
+ },
+ [222]={
+ ["letter"]="HN",
+ ["num_lv"]=666
+ },
+ [223]={
+ ["letter"]="HO",
+ ["num_lv"]=669
+ },
+ [224]={
+ ["letter"]="HP",
+ ["num_lv"]=672
+ },
+ [225]={
+ ["letter"]="HQ",
+ ["num_lv"]=675
+ },
+ [226]={
+ ["letter"]="HR",
+ ["num_lv"]=678
+ },
+ [227]={
+ ["letter"]="HS",
+ ["num_lv"]=681
+ },
+ [228]={
+ ["letter"]="HT",
+ ["num_lv"]=684
+ },
+ [229]={
+ ["letter"]="HU",
+ ["num_lv"]=687
+ },
+ [230]={
+ ["letter"]="HV",
+ ["num_lv"]=690
+ },
+ [231]={
+ ["letter"]="HW",
+ ["num_lv"]=693
+ },
+ [232]={
+ ["letter"]="HX",
+ ["num_lv"]=696
+ },
+ [233]={
+ ["letter"]="HY",
+ ["num_lv"]=699
+ },
+ [234]={
+ ["letter"]="HZ",
+ ["num_lv"]=702
+ },
+ [235]={
+ ["letter"]="IA",
+ ["num_lv"]=705
+ },
+ [236]={
+ ["letter"]="IB",
+ ["num_lv"]=708
+ },
+ [237]={
+ ["letter"]="IC",
+ ["num_lv"]=711
+ },
+ [238]={
+ ["letter"]="ID",
+ ["num_lv"]=714
+ },
+ [239]={
+ ["letter"]="IE",
+ ["num_lv"]=717
+ },
+ [240]={
+ ["letter"]="IF",
+ ["num_lv"]=720
+ },
+ [241]={
+ ["letter"]="IG",
+ ["num_lv"]=723
+ },
+ [242]={
+ ["letter"]="IH",
+ ["num_lv"]=726
+ },
+ [243]={
+ ["letter"]="II",
+ ["num_lv"]=729
+ },
+ [244]={
+ ["letter"]="IJ",
+ ["num_lv"]=732
+ },
+ [245]={
+ ["letter"]="IK",
+ ["num_lv"]=735
+ },
+ [246]={
+ ["letter"]="IL",
+ ["num_lv"]=738
+ },
+ [247]={
+ ["letter"]="IM",
+ ["num_lv"]=741
+ },
+ [248]={
+ ["letter"]="IN",
+ ["num_lv"]=744
+ },
+ [249]={
+ ["letter"]="IO",
+ ["num_lv"]=747
+ },
+ [250]={
+ ["letter"]="IP",
+ ["num_lv"]=750
+ },
+ [251]={
+ ["letter"]="IQ",
+ ["num_lv"]=753
+ },
+ [252]={
+ ["letter"]="IR",
+ ["num_lv"]=756
+ },
+ [253]={
+ ["letter"]="IS",
+ ["num_lv"]=759
+ },
+ [254]={
+ ["letter"]="IT",
+ ["num_lv"]=762
+ },
+ [255]={
+ ["letter"]="IU",
+ ["num_lv"]=765
+ },
+ [256]={
+ ["letter"]="IV",
+ ["num_lv"]=768
+ },
+ [257]={
+ ["letter"]="IW",
+ ["num_lv"]=771
+ },
+ [258]={
+ ["letter"]="IX",
+ ["num_lv"]=774
+ },
+ [259]={
+ ["letter"]="IY",
+ ["num_lv"]=777
+ },
+ [260]={
+ ["letter"]="IZ",
+ ["num_lv"]=780
+ },
+ [261]={
+ ["letter"]="JA",
+ ["num_lv"]=783
+ },
+ [262]={
+ ["letter"]="JB",
+ ["num_lv"]=786
+ },
+ [263]={
+ ["letter"]="JC",
+ ["num_lv"]=789
+ },
+ [264]={
+ ["letter"]="JD",
+ ["num_lv"]=792
+ },
+ [265]={
+ ["letter"]="JE",
+ ["num_lv"]=795
+ },
+ [266]={
+ ["letter"]="JF",
+ ["num_lv"]=798
+ },
+ [267]={
+ ["letter"]="JG",
+ ["num_lv"]=801
+ },
+ [268]={
+ ["letter"]="JH",
+ ["num_lv"]=804
+ },
+ [269]={
+ ["letter"]="JI",
+ ["num_lv"]=807
+ },
+ [270]={
+ ["letter"]="JJ",
+ ["num_lv"]=810
+ },
+ [271]={
+ ["letter"]="JK",
+ ["num_lv"]=813
+ },
+ [272]={
+ ["letter"]="JL",
+ ["num_lv"]=816
+ },
+ [273]={
+ ["letter"]="JM",
+ ["num_lv"]=819
+ },
+ [274]={
+ ["letter"]="JN",
+ ["num_lv"]=822
+ },
+ [275]={
+ ["letter"]="JO",
+ ["num_lv"]=825
+ },
+ [276]={
+ ["letter"]="JP",
+ ["num_lv"]=828
+ },
+ [277]={
+ ["letter"]="JQ",
+ ["num_lv"]=831
+ },
+ [278]={
+ ["letter"]="JR",
+ ["num_lv"]=834
+ },
+ [279]={
+ ["letter"]="JS",
+ ["num_lv"]=837
+ },
+ [280]={
+ ["letter"]="JT",
+ ["num_lv"]=840
+ },
+ [281]={
+ ["letter"]="JU",
+ ["num_lv"]=843
+ },
+ [282]={
+ ["letter"]="JV",
+ ["num_lv"]=846
+ },
+ [283]={
+ ["letter"]="JW",
+ ["num_lv"]=849
+ },
+ [284]={
+ ["letter"]="JX",
+ ["num_lv"]=852
+ },
+ [285]={
+ ["letter"]="JY",
+ ["num_lv"]=855
+ },
+ [286]={
+ ["letter"]="JZ",
+ ["num_lv"]=858
+ },
+ [287]={
+ ["letter"]="KA",
+ ["num_lv"]=861
+ },
+ [288]={
+ ["letter"]="KB",
+ ["num_lv"]=864
+ },
+ [289]={
+ ["letter"]="KC",
+ ["num_lv"]=867
+ },
+ [290]={
+ ["letter"]="KD",
+ ["num_lv"]=870
+ },
+ [291]={
+ ["letter"]="KE",
+ ["num_lv"]=873
+ },
+ [292]={
+ ["letter"]="KF",
+ ["num_lv"]=876
+ },
+ [293]={
+ ["letter"]="KG",
+ ["num_lv"]=879
+ },
+ [294]={
+ ["letter"]="KH",
+ ["num_lv"]=882
+ },
+ [295]={
+ ["letter"]="KI",
+ ["num_lv"]=885
+ },
+ [296]={
+ ["letter"]="KJ",
+ ["num_lv"]=888
+ },
+ [297]={
+ ["letter"]="KK",
+ ["num_lv"]=891
+ },
+ [298]={
+ ["letter"]="KL",
+ ["num_lv"]=894
+ },
+ [299]={
+ ["letter"]="KM",
+ ["num_lv"]=897
+ },
+ [300]={
+ ["letter"]="KN",
+ ["num_lv"]=900
+ },
+ [301]={
+ ["letter"]="KO",
+ ["num_lv"]=903
+ },
+ [302]={
+ ["letter"]="KP",
+ ["num_lv"]=906
+ },
+ [303]={
+ ["letter"]="KQ",
+ ["num_lv"]=909
+ },
+ [304]={
+ ["letter"]="KR",
+ ["num_lv"]=912
+ },
+ [305]={
+ ["letter"]="KS",
+ ["num_lv"]=915
+ },
+ [306]={
+ ["letter"]="KT",
+ ["num_lv"]=918
+ },
+ [307]={
+ ["letter"]="KU",
+ ["num_lv"]=921
+ },
+ [308]={
+ ["letter"]="KV",
+ ["num_lv"]=924
+ },
+ [309]={
+ ["letter"]="KW",
+ ["num_lv"]=927
+ },
+ [310]={
+ ["letter"]="KX",
+ ["num_lv"]=930
+ },
+ [311]={
+ ["letter"]="KY",
+ ["num_lv"]=933
+ },
+ [312]={
+ ["letter"]="KZ",
+ ["num_lv"]=936
+ },
+ [313]={
+ ["letter"]="LA",
+ ["num_lv"]=939
+ },
+ [314]={
+ ["letter"]="LB",
+ ["num_lv"]=942
+ },
+ [315]={
+ ["letter"]="LC",
+ ["num_lv"]=945
+ },
+ [316]={
+ ["letter"]="LD",
+ ["num_lv"]=948
+ },
+ [317]={
+ ["letter"]="LE",
+ ["num_lv"]=951
+ },
+ [318]={
+ ["letter"]="LF",
+ ["num_lv"]=954
+ },
+ [319]={
+ ["letter"]="LG",
+ ["num_lv"]=957
+ },
+ [320]={
+ ["letter"]="LH",
+ ["num_lv"]=960
+ },
+ [321]={
+ ["letter"]="LI",
+ ["num_lv"]=963
+ },
+ [322]={
+ ["letter"]="LJ",
+ ["num_lv"]=966
+ },
+ [323]={
+ ["letter"]="LK",
+ ["num_lv"]=969
+ },
+ [324]={
+ ["letter"]="LL",
+ ["num_lv"]=972
+ },
+ [325]={
+ ["letter"]="LM",
+ ["num_lv"]=975
+ },
+ [326]={
+ ["letter"]="LN",
+ ["num_lv"]=978
+ },
+ [327]={
+ ["letter"]="LO",
+ ["num_lv"]=981
+ },
+ [328]={
+ ["letter"]="LP",
+ ["num_lv"]=984
+ },
+ [329]={
+ ["letter"]="LQ",
+ ["num_lv"]=987
+ },
+ [330]={
+ ["letter"]="LR",
+ ["num_lv"]=990
+ },
+ [331]={
+ ["letter"]="LS",
+ ["num_lv"]=993
+ },
+ [332]={
+ ["letter"]="LT",
+ ["num_lv"]=996
+ },
+ [333]={
+ ["letter"]="LU",
+ ["num_lv"]=999
+ },
+ [334]={
+ ["letter"]="LV",
+ ["num_lv"]=1002
+ },
+ [335]={
+ ["letter"]="LW",
+ ["num_lv"]=1005
+ },
+ [336]={
+ ["letter"]="LX",
+ ["num_lv"]=1008
+ },
+ [337]={
+ ["letter"]="LY",
+ ["num_lv"]=1011
+ },
+ [338]={
+ ["letter"]="LZ",
+ ["num_lv"]=1014
+ },
+ [339]={
+ ["letter"]="MA",
+ ["num_lv"]=1017
+ },
+ [340]={
+ ["letter"]="MB",
+ ["num_lv"]=1020
+ },
+ [341]={
+ ["letter"]="MC",
+ ["num_lv"]=1023
+ },
+ [342]={
+ ["letter"]="MD",
+ ["num_lv"]=1026
+ },
+ [343]={
+ ["letter"]="ME",
+ ["num_lv"]=1029
+ },
+ [344]={
+ ["letter"]="MF",
+ ["num_lv"]=1032
+ },
+ [345]={
+ ["letter"]="MG",
+ ["num_lv"]=1035
+ },
+ [346]={
+ ["letter"]="MH",
+ ["num_lv"]=1038
+ },
+ [347]={
+ ["letter"]="MI",
+ ["num_lv"]=1041
+ },
+ [348]={
+ ["letter"]="MJ",
+ ["num_lv"]=1044
+ },
+ [349]={
+ ["letter"]="MK",
+ ["num_lv"]=1047
+ },
+ [350]={
+ ["letter"]="ML",
+ ["num_lv"]=1050
+ },
+ [351]={
+ ["letter"]="MM",
+ ["num_lv"]=1053
+ },
+ [352]={
+ ["letter"]="MN",
+ ["num_lv"]=1056
+ },
+ [353]={
+ ["letter"]="MO",
+ ["num_lv"]=1059
+ },
+ [354]={
+ ["letter"]="MP",
+ ["num_lv"]=1062
+ },
+ [355]={
+ ["letter"]="MQ",
+ ["num_lv"]=1065
+ },
+ [356]={
+ ["letter"]="MR",
+ ["num_lv"]=1068
+ },
+ [357]={
+ ["letter"]="MS",
+ ["num_lv"]=1071
+ },
+ [358]={
+ ["letter"]="MT",
+ ["num_lv"]=1074
+ },
+ [359]={
+ ["letter"]="MU",
+ ["num_lv"]=1077
+ },
+ [360]={
+ ["letter"]="MV",
+ ["num_lv"]=1080
+ },
+ [361]={
+ ["letter"]="MW",
+ ["num_lv"]=1083
+ },
+ [362]={
+ ["letter"]="MX",
+ ["num_lv"]=1086
+ },
+ [363]={
+ ["letter"]="MY",
+ ["num_lv"]=1089
+ },
+ [364]={
+ ["letter"]="MZ",
+ ["num_lv"]=1092
+ },
+ [365]={
+ ["letter"]="NA",
+ ["num_lv"]=1095
+ },
+ [366]={
+ ["letter"]="NB",
+ ["num_lv"]=1098
+ },
+ [367]={
+ ["letter"]="NC",
+ ["num_lv"]=1101
+ },
+ [368]={
+ ["letter"]="ND",
+ ["num_lv"]=1104
+ },
+ [369]={
+ ["letter"]="NE",
+ ["num_lv"]=1107
+ },
+ [370]={
+ ["letter"]="NF",
+ ["num_lv"]=1110
+ },
+ [371]={
+ ["letter"]="NG",
+ ["num_lv"]=1113
+ },
+ [372]={
+ ["letter"]="NH",
+ ["num_lv"]=1116
+ },
+ [373]={
+ ["letter"]="NI",
+ ["num_lv"]=1119
+ },
+ [374]={
+ ["letter"]="NJ",
+ ["num_lv"]=1122
+ },
+ [375]={
+ ["letter"]="NK",
+ ["num_lv"]=1125
+ },
+ [376]={
+ ["letter"]="NL",
+ ["num_lv"]=1128
+ },
+ [377]={
+ ["letter"]="NM",
+ ["num_lv"]=1131
+ },
+ [378]={
+ ["letter"]="NN",
+ ["num_lv"]=1134
+ },
+ [379]={
+ ["letter"]="NO",
+ ["num_lv"]=1137
+ },
+ [380]={
+ ["letter"]="NP",
+ ["num_lv"]=1140
+ },
+ [381]={
+ ["letter"]="NQ",
+ ["num_lv"]=1143
+ },
+ [382]={
+ ["letter"]="NR",
+ ["num_lv"]=1146
+ },
+ [383]={
+ ["letter"]="NS",
+ ["num_lv"]=1149
+ },
+ [384]={
+ ["letter"]="NT",
+ ["num_lv"]=1152
+ },
+ [385]={
+ ["letter"]="NU",
+ ["num_lv"]=1155
+ },
+ [386]={
+ ["letter"]="NV",
+ ["num_lv"]=1158
+ },
+ [387]={
+ ["letter"]="NW",
+ ["num_lv"]=1161
+ },
+ [388]={
+ ["letter"]="NX",
+ ["num_lv"]=1164
+ },
+ [389]={
+ ["letter"]="NY",
+ ["num_lv"]=1167
+ },
+ [390]={
+ ["letter"]="NZ",
+ ["num_lv"]=1170
+ },
+ [391]={
+ ["letter"]="OA",
+ ["num_lv"]=1173
+ },
+ [392]={
+ ["letter"]="OB",
+ ["num_lv"]=1176
+ },
+ [393]={
+ ["letter"]="OC",
+ ["num_lv"]=1179
+ },
+ [394]={
+ ["letter"]="OD",
+ ["num_lv"]=1182
+ },
+ [395]={
+ ["letter"]="OE",
+ ["num_lv"]=1185
+ },
+ [396]={
+ ["letter"]="OF",
+ ["num_lv"]=1188
+ },
+ [397]={
+ ["letter"]="OG",
+ ["num_lv"]=1191
+ },
+ [398]={
+ ["letter"]="OH",
+ ["num_lv"]=1194
+ },
+ [399]={
+ ["letter"]="OI",
+ ["num_lv"]=1197
+ },
+ [400]={
+ ["letter"]="OJ",
+ ["num_lv"]=1200
+ },
+ [401]={
+ ["letter"]="OK",
+ ["num_lv"]=1203
+ },
+ [402]={
+ ["letter"]="OL",
+ ["num_lv"]=1206
+ },
+ [403]={
+ ["letter"]="OM",
+ ["num_lv"]=1209
+ },
+ [404]={
+ ["letter"]="ON",
+ ["num_lv"]=1212
+ },
+ [405]={
+ ["letter"]="OO",
+ ["num_lv"]=1215
+ },
+ [406]={
+ ["letter"]="OP",
+ ["num_lv"]=1218
+ },
+ [407]={
+ ["letter"]="OQ",
+ ["num_lv"]=1221
+ },
+ [408]={
+ ["letter"]="OR",
+ ["num_lv"]=1224
+ },
+ [409]={
+ ["letter"]="OS",
+ ["num_lv"]=1227
+ },
+ [410]={
+ ["letter"]="OT",
+ ["num_lv"]=1230
+ },
+ [411]={
+ ["letter"]="OU",
+ ["num_lv"]=1233
+ },
+ [412]={
+ ["letter"]="OV",
+ ["num_lv"]=1236
+ },
+ [413]={
+ ["letter"]="OW",
+ ["num_lv"]=1239
+ },
+ [414]={
+ ["letter"]="OX",
+ ["num_lv"]=1242
+ },
+ [415]={
+ ["letter"]="OY",
+ ["num_lv"]=1245
+ },
+ [416]={
+ ["letter"]="OZ",
+ ["num_lv"]=1248
+ },
+ [417]={
+ ["letter"]="PA",
+ ["num_lv"]=1251
+ },
+ [418]={
+ ["letter"]="PB",
+ ["num_lv"]=1254
+ },
+ [419]={
+ ["letter"]="PC",
+ ["num_lv"]=1257
+ },
+ [420]={
+ ["letter"]="PD",
+ ["num_lv"]=1260
+ },
+ [421]={
+ ["letter"]="PE",
+ ["num_lv"]=1263
+ },
+ [422]={
+ ["letter"]="PF",
+ ["num_lv"]=1266
+ },
+ [423]={
+ ["letter"]="PG",
+ ["num_lv"]=1269
+ },
+ [424]={
+ ["letter"]="PH",
+ ["num_lv"]=1272
+ },
+ [425]={
+ ["letter"]="PI",
+ ["num_lv"]=1275
+ },
+ [426]={
+ ["letter"]="PJ",
+ ["num_lv"]=1278
+ },
+ [427]={
+ ["letter"]="PK",
+ ["num_lv"]=1281
+ },
+ [428]={
+ ["letter"]="PL",
+ ["num_lv"]=1284
+ },
+ [429]={
+ ["letter"]="PM",
+ ["num_lv"]=1287
+ },
+ [430]={
+ ["letter"]="PN",
+ ["num_lv"]=1290
+ },
+ [431]={
+ ["letter"]="PO",
+ ["num_lv"]=1293
+ },
+ [432]={
+ ["letter"]="PP",
+ ["num_lv"]=1296
+ },
+ [433]={
+ ["letter"]="PQ",
+ ["num_lv"]=1299
+ },
+ [434]={
+ ["letter"]="PR",
+ ["num_lv"]=1302
+ },
+ [435]={
+ ["letter"]="PS",
+ ["num_lv"]=1305
+ },
+ [436]={
+ ["letter"]="PT",
+ ["num_lv"]=1308
+ },
+ [437]={
+ ["letter"]="PU",
+ ["num_lv"]=1311
+ },
+ [438]={
+ ["letter"]="PV",
+ ["num_lv"]=1314
+ },
+ [439]={
+ ["letter"]="PW",
+ ["num_lv"]=1317
+ },
+ [440]={
+ ["letter"]="PX",
+ ["num_lv"]=1320
+ },
+ [441]={
+ ["letter"]="PY",
+ ["num_lv"]=1323
+ },
+ [442]={
+ ["letter"]="PZ",
+ ["num_lv"]=1326
+ },
+ [443]={
+ ["letter"]="QA",
+ ["num_lv"]=1329
+ },
+ [444]={
+ ["letter"]="QB",
+ ["num_lv"]=1332
+ },
+ [445]={
+ ["letter"]="QC",
+ ["num_lv"]=1335
+ },
+ [446]={
+ ["letter"]="QD",
+ ["num_lv"]=1338
+ },
+ [447]={
+ ["letter"]="QE",
+ ["num_lv"]=1341
+ },
+ [448]={
+ ["letter"]="QF",
+ ["num_lv"]=1344
+ },
+ [449]={
+ ["letter"]="QG",
+ ["num_lv"]=1347
+ },
+ [450]={
+ ["letter"]="QH",
+ ["num_lv"]=1350
+ },
+ [451]={
+ ["letter"]="QI",
+ ["num_lv"]=1353
+ },
+ [452]={
+ ["letter"]="QJ",
+ ["num_lv"]=1356
+ },
+ [453]={
+ ["letter"]="QK",
+ ["num_lv"]=1359
+ },
+ [454]={
+ ["letter"]="QL",
+ ["num_lv"]=1362
+ },
+ [455]={
+ ["letter"]="QM",
+ ["num_lv"]=1365
+ },
+ [456]={
+ ["letter"]="QN",
+ ["num_lv"]=1368
+ },
+ [457]={
+ ["letter"]="QO",
+ ["num_lv"]=1371
+ },
+ [458]={
+ ["letter"]="QP",
+ ["num_lv"]=1374
+ },
+ [459]={
+ ["letter"]="QQ",
+ ["num_lv"]=1377
+ },
+ [460]={
+ ["letter"]="QR",
+ ["num_lv"]=1380
+ },
+ [461]={
+ ["letter"]="QS",
+ ["num_lv"]=1383
+ },
+ [462]={
+ ["letter"]="QT",
+ ["num_lv"]=1386
+ },
+ [463]={
+ ["letter"]="QU",
+ ["num_lv"]=1389
+ },
+ [464]={
+ ["letter"]="QV",
+ ["num_lv"]=1392
+ },
+ [465]={
+ ["letter"]="QW",
+ ["num_lv"]=1395
+ },
+ [466]={
+ ["letter"]="QX",
+ ["num_lv"]=1398
+ },
+ [467]={
+ ["letter"]="QY",
+ ["num_lv"]=1401
+ },
+ [468]={
+ ["letter"]="QZ",
+ ["num_lv"]=1404
+ },
+ [469]={
+ ["letter"]="RA",
+ ["num_lv"]=1407
+ },
+ [470]={
+ ["letter"]="RB",
+ ["num_lv"]=1410
+ },
+ [471]={
+ ["letter"]="RC",
+ ["num_lv"]=1413
+ },
+ [472]={
+ ["letter"]="RD",
+ ["num_lv"]=1416
+ },
+ [473]={
+ ["letter"]="RE",
+ ["num_lv"]=1419
+ },
+ [474]={
+ ["letter"]="RF",
+ ["num_lv"]=1422
+ },
+ [475]={
+ ["letter"]="RG",
+ ["num_lv"]=1425
+ },
+ [476]={
+ ["letter"]="RH",
+ ["num_lv"]=1428
+ },
+ [477]={
+ ["letter"]="RI",
+ ["num_lv"]=1431
+ },
+ [478]={
+ ["letter"]="RJ",
+ ["num_lv"]=1434
+ },
+ [479]={
+ ["letter"]="RK",
+ ["num_lv"]=1437
+ },
+ [480]={
+ ["letter"]="RL",
+ ["num_lv"]=1440
+ },
+ [481]={
+ ["letter"]="RM",
+ ["num_lv"]=1443
+ },
+ [482]={
+ ["letter"]="RN",
+ ["num_lv"]=1446
+ },
+ [483]={
+ ["letter"]="RO",
+ ["num_lv"]=1449
+ },
+ [484]={
+ ["letter"]="RP",
+ ["num_lv"]=1452
+ },
+ [485]={
+ ["letter"]="RQ",
+ ["num_lv"]=1455
+ },
+ [486]={
+ ["letter"]="RR",
+ ["num_lv"]=1458
+ },
+ [487]={
+ ["letter"]="RS",
+ ["num_lv"]=1461
+ },
+ [488]={
+ ["letter"]="RT",
+ ["num_lv"]=1464
+ },
+ [489]={
+ ["letter"]="RU",
+ ["num_lv"]=1467
+ },
+ [490]={
+ ["letter"]="RV",
+ ["num_lv"]=1470
+ },
+ [491]={
+ ["letter"]="RW",
+ ["num_lv"]=1473
+ },
+ [492]={
+ ["letter"]="RX",
+ ["num_lv"]=1476
+ },
+ [493]={
+ ["letter"]="RY",
+ ["num_lv"]=1479
+ },
+ [494]={
+ ["letter"]="RZ",
+ ["num_lv"]=1482
+ },
+ [495]={
+ ["letter"]="SA",
+ ["num_lv"]=1485
+ },
+ [496]={
+ ["letter"]="SB",
+ ["num_lv"]=1488
+ },
+ [497]={
+ ["letter"]="SC",
+ ["num_lv"]=1491
+ },
+ [498]={
+ ["letter"]="SD",
+ ["num_lv"]=1494
+ },
+ [499]={
+ ["letter"]="SE",
+ ["num_lv"]=1497
+ },
+ [500]={
+ ["letter"]="SF",
+ ["num_lv"]=1500
+ },
+ [501]={
+ ["letter"]="SG",
+ ["num_lv"]=1503
+ },
+ [502]={
+ ["letter"]="SH",
+ ["num_lv"]=1506
+ },
+ [503]={
+ ["letter"]="SI",
+ ["num_lv"]=1509
+ },
+ [504]={
+ ["letter"]="SJ",
+ ["num_lv"]=1512
+ },
+ [505]={
+ ["letter"]="SK",
+ ["num_lv"]=1515
+ },
+ [506]={
+ ["letter"]="SL",
+ ["num_lv"]=1518
+ },
+ [507]={
+ ["letter"]="SM",
+ ["num_lv"]=1521
+ },
+ [508]={
+ ["letter"]="SN",
+ ["num_lv"]=1524
+ },
+ [509]={
+ ["letter"]="SO",
+ ["num_lv"]=1527
+ },
+ [510]={
+ ["letter"]="SP",
+ ["num_lv"]=1530
+ },
+ [511]={
+ ["letter"]="SQ",
+ ["num_lv"]=1533
+ },
+ [512]={
+ ["letter"]="SR",
+ ["num_lv"]=1536
+ },
+ [513]={
+ ["letter"]="SS",
+ ["num_lv"]=1539
+ },
+ [514]={
+ ["letter"]="ST",
+ ["num_lv"]=1542
+ },
+ [515]={
+ ["letter"]="SU",
+ ["num_lv"]=1545
+ },
+ [516]={
+ ["letter"]="SV",
+ ["num_lv"]=1548
+ },
+ [517]={
+ ["letter"]="SW",
+ ["num_lv"]=1551
+ },
+ [518]={
+ ["letter"]="SX",
+ ["num_lv"]=1554
+ },
+ [519]={
+ ["letter"]="SY",
+ ["num_lv"]=1557
+ },
+ [520]={
+ ["letter"]="SZ",
+ ["num_lv"]=1560
+ },
+ [521]={
+ ["letter"]="TA",
+ ["num_lv"]=1563
+ },
+ [522]={
+ ["letter"]="TB",
+ ["num_lv"]=1566
+ },
+ [523]={
+ ["letter"]="TC",
+ ["num_lv"]=1569
+ },
+ [524]={
+ ["letter"]="TD",
+ ["num_lv"]=1572
+ },
+ [525]={
+ ["letter"]="TE",
+ ["num_lv"]=1575
+ },
+ [526]={
+ ["letter"]="TF",
+ ["num_lv"]=1578
+ },
+ [527]={
+ ["letter"]="TG",
+ ["num_lv"]=1581
+ },
+ [528]={
+ ["letter"]="TH",
+ ["num_lv"]=1584
+ },
+ [529]={
+ ["letter"]="TI",
+ ["num_lv"]=1587
+ },
+ [530]={
+ ["letter"]="TJ",
+ ["num_lv"]=1590
+ },
+ [531]={
+ ["letter"]="TK",
+ ["num_lv"]=1593
+ },
+ [532]={
+ ["letter"]="TL",
+ ["num_lv"]=1596
+ },
+ [533]={
+ ["letter"]="TM",
+ ["num_lv"]=1599
+ },
+ [534]={
+ ["letter"]="TN",
+ ["num_lv"]=1602
+ },
+ [535]={
+ ["letter"]="TO",
+ ["num_lv"]=1605
+ },
+ [536]={
+ ["letter"]="TP",
+ ["num_lv"]=1608
+ },
+ [537]={
+ ["letter"]="TQ",
+ ["num_lv"]=1611
+ },
+ [538]={
+ ["letter"]="TR",
+ ["num_lv"]=1614
+ },
+ [539]={
+ ["letter"]="TS",
+ ["num_lv"]=1617
+ },
+ [540]={
+ ["letter"]="TT",
+ ["num_lv"]=1620
+ },
+ [541]={
+ ["letter"]="TU",
+ ["num_lv"]=1623
+ },
+ [542]={
+ ["letter"]="TV",
+ ["num_lv"]=1626
+ },
+ [543]={
+ ["letter"]="TW",
+ ["num_lv"]=1629
+ },
+ [544]={
+ ["letter"]="TX",
+ ["num_lv"]=1632
+ },
+ [545]={
+ ["letter"]="TY",
+ ["num_lv"]=1635
+ },
+ [546]={
+ ["letter"]="TZ",
+ ["num_lv"]=1638
+ },
+ [547]={
+ ["letter"]="UA",
+ ["num_lv"]=1641
+ },
+ [548]={
+ ["letter"]="UB",
+ ["num_lv"]=1644
+ },
+ [549]={
+ ["letter"]="UC",
+ ["num_lv"]=1647
+ },
+ [550]={
+ ["letter"]="UD",
+ ["num_lv"]=1650
+ },
+ [551]={
+ ["letter"]="UE",
+ ["num_lv"]=1653
+ },
+ [552]={
+ ["letter"]="UF",
+ ["num_lv"]=1656
+ },
+ [553]={
+ ["letter"]="UG",
+ ["num_lv"]=1659
+ },
+ [554]={
+ ["letter"]="UH",
+ ["num_lv"]=1662
+ },
+ [555]={
+ ["letter"]="UI",
+ ["num_lv"]=1665
+ },
+ [556]={
+ ["letter"]="UJ",
+ ["num_lv"]=1668
+ },
+ [557]={
+ ["letter"]="UK",
+ ["num_lv"]=1671
+ },
+ [558]={
+ ["letter"]="UL",
+ ["num_lv"]=1674
+ },
+ [559]={
+ ["letter"]="UM",
+ ["num_lv"]=1677
+ },
+ [560]={
+ ["letter"]="UN",
+ ["num_lv"]=1680
+ },
+ [561]={
+ ["letter"]="UO",
+ ["num_lv"]=1683
+ },
+ [562]={
+ ["letter"]="UP",
+ ["num_lv"]=1686
+ },
+ [563]={
+ ["letter"]="UQ",
+ ["num_lv"]=1689
+ },
+ [564]={
+ ["letter"]="UR",
+ ["num_lv"]=1692
+ },
+ [565]={
+ ["letter"]="US",
+ ["num_lv"]=1695
+ },
+ [566]={
+ ["letter"]="UT",
+ ["num_lv"]=1698
+ },
+ [567]={
+ ["letter"]="UU",
+ ["num_lv"]=1701
+ },
+ [568]={
+ ["letter"]="UV",
+ ["num_lv"]=1704
+ },
+ [569]={
+ ["letter"]="UW",
+ ["num_lv"]=1707
+ },
+ [570]={
+ ["letter"]="UX",
+ ["num_lv"]=1710
+ },
+ [571]={
+ ["letter"]="UY",
+ ["num_lv"]=1713
+ },
+ [572]={
+ ["letter"]="UZ",
+ ["num_lv"]=1716
+ },
+ [573]={
+ ["letter"]="VA",
+ ["num_lv"]=1719
+ },
+ [574]={
+ ["letter"]="VB",
+ ["num_lv"]=1722
+ },
+ [575]={
+ ["letter"]="VC",
+ ["num_lv"]=1725
+ },
+ [576]={
+ ["letter"]="VD",
+ ["num_lv"]=1728
+ },
+ [577]={
+ ["letter"]="VE",
+ ["num_lv"]=1731
+ },
+ [578]={
+ ["letter"]="VF",
+ ["num_lv"]=1734
+ },
+ [579]={
+ ["letter"]="VG",
+ ["num_lv"]=1737
+ },
+ [580]={
+ ["letter"]="VH",
+ ["num_lv"]=1740
+ },
+ [581]={
+ ["letter"]="VI",
+ ["num_lv"]=1743
+ },
+ [582]={
+ ["letter"]="VJ",
+ ["num_lv"]=1746
+ },
+ [583]={
+ ["letter"]="VK",
+ ["num_lv"]=1749
+ },
+ [584]={
+ ["letter"]="VL",
+ ["num_lv"]=1752
+ },
+ [585]={
+ ["letter"]="VM",
+ ["num_lv"]=1755
+ },
+ [586]={
+ ["letter"]="VN",
+ ["num_lv"]=1758
+ },
+ [587]={
+ ["letter"]="VO",
+ ["num_lv"]=1761
+ },
+ [588]={
+ ["letter"]="VP",
+ ["num_lv"]=1764
+ },
+ [589]={
+ ["letter"]="VQ",
+ ["num_lv"]=1767
+ },
+ [590]={
+ ["letter"]="VR",
+ ["num_lv"]=1770
+ },
+ [591]={
+ ["letter"]="VS",
+ ["num_lv"]=1773
+ },
+ [592]={
+ ["letter"]="VT",
+ ["num_lv"]=1776
+ },
+ [593]={
+ ["letter"]="VU",
+ ["num_lv"]=1779
+ },
+ [594]={
+ ["letter"]="VV",
+ ["num_lv"]=1782
+ },
+ [595]={
+ ["letter"]="VW",
+ ["num_lv"]=1785
+ },
+ [596]={
+ ["letter"]="VX",
+ ["num_lv"]=1788
+ },
+ [597]={
+ ["letter"]="VY",
+ ["num_lv"]=1791
+ },
+ [598]={
+ ["letter"]="VZ",
+ ["num_lv"]=1794
+ },
+ [599]={
+ ["letter"]="WA",
+ ["num_lv"]=1797
+ },
+ [600]={
+ ["letter"]="WB",
+ ["num_lv"]=1800
+ },
+ [601]={
+ ["letter"]="WC",
+ ["num_lv"]=1803
+ },
+ [602]={
+ ["letter"]="WD",
+ ["num_lv"]=1806
+ },
+ [603]={
+ ["letter"]="WE",
+ ["num_lv"]=1809
+ },
+ [604]={
+ ["letter"]="WF",
+ ["num_lv"]=1812
+ },
+ [605]={
+ ["letter"]="WG",
+ ["num_lv"]=1815
+ },
+ [606]={
+ ["letter"]="WH",
+ ["num_lv"]=1818
+ },
+ [607]={
+ ["letter"]="WI",
+ ["num_lv"]=1821
+ },
+ [608]={
+ ["letter"]="WJ",
+ ["num_lv"]=1824
+ },
+ [609]={
+ ["letter"]="WK",
+ ["num_lv"]=1827
+ },
+ [610]={
+ ["letter"]="WL",
+ ["num_lv"]=1830
+ },
+ [611]={
+ ["letter"]="WM",
+ ["num_lv"]=1833
+ },
+ [612]={
+ ["letter"]="WN",
+ ["num_lv"]=1836
+ },
+ [613]={
+ ["letter"]="WO",
+ ["num_lv"]=1839
+ },
+ [614]={
+ ["letter"]="WP",
+ ["num_lv"]=1842
+ },
+ [615]={
+ ["letter"]="WQ",
+ ["num_lv"]=1845
+ },
+ [616]={
+ ["letter"]="WR",
+ ["num_lv"]=1848
+ },
+ [617]={
+ ["letter"]="WS",
+ ["num_lv"]=1851
+ },
+ [618]={
+ ["letter"]="WT",
+ ["num_lv"]=1854
+ },
+ [619]={
+ ["letter"]="WU",
+ ["num_lv"]=1857
+ },
+ [620]={
+ ["letter"]="WV",
+ ["num_lv"]=1860
+ },
+ [621]={
+ ["letter"]="WW",
+ ["num_lv"]=1863
+ },
+ [622]={
+ ["letter"]="WX",
+ ["num_lv"]=1866
+ },
+ [623]={
+ ["letter"]="WY",
+ ["num_lv"]=1869
+ },
+ [624]={
+ ["letter"]="WZ",
+ ["num_lv"]=1872
+ },
+ [625]={
+ ["letter"]="XA",
+ ["num_lv"]=1875
+ },
+ [626]={
+ ["letter"]="XB",
+ ["num_lv"]=1878
+ },
+ [627]={
+ ["letter"]="XC",
+ ["num_lv"]=1881
+ },
+ [628]={
+ ["letter"]="XD",
+ ["num_lv"]=1884
+ },
+ [629]={
+ ["letter"]="XE",
+ ["num_lv"]=1887
+ },
+ [630]={
+ ["letter"]="XF",
+ ["num_lv"]=1890
+ },
+ [631]={
+ ["letter"]="XG",
+ ["num_lv"]=1893
+ },
+ [632]={
+ ["letter"]="XH",
+ ["num_lv"]=1896
+ },
+ [633]={
+ ["letter"]="XI",
+ ["num_lv"]=1899
+ },
+ [634]={
+ ["letter"]="XJ",
+ ["num_lv"]=1902
+ },
+ [635]={
+ ["letter"]="XK",
+ ["num_lv"]=1905
+ },
+ [636]={
+ ["letter"]="XL",
+ ["num_lv"]=1908
+ },
+ [637]={
+ ["letter"]="XM",
+ ["num_lv"]=1911
+ },
+ [638]={
+ ["letter"]="XN",
+ ["num_lv"]=1914
+ },
+ [639]={
+ ["letter"]="XO",
+ ["num_lv"]=1917
+ },
+ [640]={
+ ["letter"]="XP",
+ ["num_lv"]=1920
+ },
+ [641]={
+ ["letter"]="XQ",
+ ["num_lv"]=1923
+ },
+ [642]={
+ ["letter"]="XR",
+ ["num_lv"]=1926
+ },
+ [643]={
+ ["letter"]="XS",
+ ["num_lv"]=1929
+ },
+ [644]={
+ ["letter"]="XT",
+ ["num_lv"]=1932
+ },
+ [645]={
+ ["letter"]="XU",
+ ["num_lv"]=1935
+ },
+ [646]={
+ ["letter"]="XV",
+ ["num_lv"]=1938
+ },
+ [647]={
+ ["letter"]="XW",
+ ["num_lv"]=1941
+ },
+ [648]={
+ ["letter"]="XX",
+ ["num_lv"]=1944
+ },
+ [649]={
+ ["letter"]="XY",
+ ["num_lv"]=1947
+ },
+ [650]={
+ ["letter"]="XZ",
+ ["num_lv"]=1950
+ },
+ [651]={
+ ["letter"]="YA",
+ ["num_lv"]=1953
+ },
+ [652]={
+ ["letter"]="YB",
+ ["num_lv"]=1956
+ },
+ [653]={
+ ["letter"]="YC",
+ ["num_lv"]=1959
+ },
+ [654]={
+ ["letter"]="YD",
+ ["num_lv"]=1962
+ },
+ [655]={
+ ["letter"]="YE",
+ ["num_lv"]=1965
+ },
+ [656]={
+ ["letter"]="YF",
+ ["num_lv"]=1968
+ },
+ [657]={
+ ["letter"]="YG",
+ ["num_lv"]=1971
+ },
+ [658]={
+ ["letter"]="YH",
+ ["num_lv"]=1974
+ },
+ [659]={
+ ["letter"]="YI",
+ ["num_lv"]=1977
+ },
+ [660]={
+ ["letter"]="YJ",
+ ["num_lv"]=1980
+ },
+ [661]={
+ ["letter"]="YK",
+ ["num_lv"]=1983
+ },
+ [662]={
+ ["letter"]="YL",
+ ["num_lv"]=1986
+ },
+ [663]={
+ ["letter"]="YM",
+ ["num_lv"]=1989
+ },
+ [664]={
+ ["letter"]="YN",
+ ["num_lv"]=1992
+ },
+ [665]={
+ ["letter"]="YO",
+ ["num_lv"]=1995
+ },
+ [666]={
+ ["letter"]="YP",
+ ["num_lv"]=1998
+ },
+ [667]={
+ ["letter"]="YQ",
+ ["num_lv"]=2001
+ },
+ [668]={
+ ["letter"]="YR",
+ ["num_lv"]=2004
+ },
+ [669]={
+ ["letter"]="YS",
+ ["num_lv"]=2007
+ },
+ [670]={
+ ["letter"]="YT",
+ ["num_lv"]=2010
+ },
+ [671]={
+ ["letter"]="YU",
+ ["num_lv"]=2013
+ },
+ [672]={
+ ["letter"]="YV",
+ ["num_lv"]=2016
+ },
+ [673]={
+ ["letter"]="YW",
+ ["num_lv"]=2019
+ },
+ [674]={
+ ["letter"]="YX",
+ ["num_lv"]=2022
+ },
+ [675]={
+ ["letter"]="YY",
+ ["num_lv"]=2025
+ },
+ [676]={
+ ["letter"]="YZ",
+ ["num_lv"]=2028
+ },
+ [677]={
+ ["letter"]="ZA",
+ ["num_lv"]=2031
+ },
+ [678]={
+ ["letter"]="ZB",
+ ["num_lv"]=2034
+ },
+ [679]={
+ ["letter"]="ZC",
+ ["num_lv"]=2037
+ },
+ [680]={
+ ["letter"]="ZD",
+ ["num_lv"]=2040
+ },
+ [681]={
+ ["letter"]="ZE",
+ ["num_lv"]=2043
+ },
+ [682]={
+ ["letter"]="ZF",
+ ["num_lv"]=2046
+ },
+ [683]={
+ ["letter"]="ZG",
+ ["num_lv"]=2049
+ },
+ [684]={
+ ["letter"]="ZH",
+ ["num_lv"]=2052
+ },
+ [685]={
+ ["letter"]="ZI",
+ ["num_lv"]=2055
+ },
+ [686]={
+ ["letter"]="ZJ",
+ ["num_lv"]=2058
+ },
+ [687]={
+ ["letter"]="ZK",
+ ["num_lv"]=2061
+ },
+ [688]={
+ ["letter"]="ZL",
+ ["num_lv"]=2064
+ },
+ [689]={
+ ["letter"]="ZM",
+ ["num_lv"]=2067
+ },
+ [690]={
+ ["letter"]="ZN",
+ ["num_lv"]=2070
+ },
+ [691]={
+ ["letter"]="ZO",
+ ["num_lv"]=2073
+ },
+ [692]={
+ ["letter"]="ZP",
+ ["num_lv"]=2076
+ },
+ [693]={
+ ["letter"]="ZQ",
+ ["num_lv"]=2079
+ },
+ [694]={
+ ["letter"]="ZR",
+ ["num_lv"]=2082
+ },
+ [695]={
+ ["letter"]="ZS",
+ ["num_lv"]=2085
+ },
+ [696]={
+ ["letter"]="ZT",
+ ["num_lv"]=2088
+ },
+ [697]={
+ ["letter"]="ZU",
+ ["num_lv"]=2091
+ },
+ [698]={
+ ["letter"]="ZV",
+ ["num_lv"]=2094
+ },
+ [699]={
+ ["letter"]="ZW",
+ ["num_lv"]=2097
+ },
+ [700]={
+ ["letter"]="ZX",
+ ["num_lv"]=2100
+ },
+ [701]={
+ ["letter"]="ZY",
+ ["num_lv"]=2103
+ },
+ [702]={
+ ["letter"]="ZZ",
+ ["num_lv"]=2106
+ }
+}
+local config = {
+data=bignum_mapping,count=702
+}
+return config
\ No newline at end of file
diff --git a/lua/app/config/bignum_mapping.lua.meta b/lua/app/config/bignum_mapping.lua.meta
new file mode 100644
index 00000000..9fa82b59
--- /dev/null
+++ b/lua/app/config/bignum_mapping.lua.meta
@@ -0,0 +1,10 @@
+fileFormatVersion: 2
+guid: ad5c3dd29b65135448e0de7cb793b01a
+ScriptedImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 2
+ userData:
+ assetBundleName:
+ assetBundleVariant:
+ script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
diff --git a/lua/app/config/blessing.lua b/lua/app/config/blessing.lua
new file mode 100644
index 00000000..c8d50653
--- /dev/null
+++ b/lua/app/config/blessing.lua
@@ -0,0 +1,63 @@
+local blessing = {
+ [1]={
+ ["time"]=1200,
+ ["up_cost"]=2,
+ ["max_lv"]=30,
+ ["basic_effect"]={
+ ["type"]="gold_gain",
+ ["bignum"]={
+ ["value"]=5000,
+ ["unit"]=0
+ }
+ },
+ ["grow_effect"]={
+ ["type"]="gold_gain",
+ ["bignum"]={
+ ["value"]=500,
+ ["unit"]=0
+ }
+ }
+ },
+ [2]={
+ ["time"]=1200,
+ ["up_cost"]=2,
+ ["max_lv"]=30,
+ ["basic_effect"]={
+ ["type"]="atkp_8",
+ ["bignum"]={
+ ["value"]=10000,
+ ["unit"]=0
+ }
+ },
+ ["grow_effect"]={
+ ["type"]="atkp_8",
+ ["bignum"]={
+ ["value"]=1000,
+ ["unit"]=0
+ }
+ }
+ },
+ [3]={
+ ["time"]=1200,
+ ["up_cost"]=2,
+ ["max_lv"]=30,
+ ["basic_effect"]={
+ ["type"]="dmg_addition_skill",
+ ["bignum"]={
+ ["value"]=10000,
+ ["unit"]=0
+ }
+ },
+ ["grow_effect"]={
+ ["type"]="dmg_addition_skill",
+ ["bignum"]={
+ ["value"]=1000,
+ ["unit"]=0
+ }
+ }
+ }
+}
+local config = {
+data=blessing,count=3
+}
+return config
\ No newline at end of file
diff --git a/lua/app/config/blessing.lua.meta b/lua/app/config/blessing.lua.meta
new file mode 100644
index 00000000..df4bff74
--- /dev/null
+++ b/lua/app/config/blessing.lua.meta
@@ -0,0 +1,10 @@
+fileFormatVersion: 2
+guid: 516eeae51aef556489a34f776c7d116a
+ScriptedImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 2
+ userData:
+ assetBundleName:
+ assetBundleVariant:
+ script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
diff --git a/lua/app/config/buff.lua b/lua/app/config/buff.lua
new file mode 100644
index 00000000..c320c63e
--- /dev/null
+++ b/lua/app/config/buff.lua
@@ -0,0 +1,231 @@
+local buff = {
+ [1]={
+ ["name"]="hurt",
+ ["buff_type"]=1,
+ ["formula"]=1
+ },
+ [2]={
+ ["name"]="hurt_hpp_t",
+ ["buff_type"]=1,
+ ["formula"]=2
+ },
+ [3]={
+ ["name"]="poison",
+ ["buff_type"]=2,
+ ["formula"]=1,
+ ["buff_interval"]=300,
+ ["fx_buff"]=7
+ },
+ [4]={
+ ["name"]="treat",
+ ["buff_type"]=3,
+ ["formula"]=2,
+ ["fx_get"]=4
+ },
+ [5]={
+ ["name"]="attack_interval_dec",
+ ["buff_type"]=5,
+ ["formula"]=1
+ },
+ [6]={
+ ["name"]="treat_shield",
+ ["buff_type"]=5,
+ ["formula"]=2
+ },
+ [7]={
+ ["name"]="miss_up",
+ ["buff_type"]=5,
+ ["formula"]=1
+ },
+ [8]={
+ ["name"]="atkp_up",
+ ["buff_type"]=5,
+ ["formula"]=1
+ },
+ [9]={
+ ["name"]="dmg_addition_up",
+ ["buff_type"]=5,
+ ["formula"]=1
+ },
+ [10]={
+ ["name"]="airborne_time",
+ ["buff_type"]=5,
+ ["formula"]=1
+ },
+ [11]={
+ ["name"]="lie_time",
+ ["buff_type"]=5,
+ ["formula"]=1
+ },
+ [12]={
+ ["name"]="attack_crit_up",
+ ["buff_type"]=5,
+ ["formula"]=1
+ },
+ [13]={
+ ["name"]="airborne_damage_up",
+ ["buff_type"]=5,
+ ["formula"]=1
+ },
+ [14]={
+ ["name"]="airborne_num_up",
+ ["buff_type"]=5,
+ ["formula"]=1
+ },
+ [15]={
+ ["name"]="double_skill",
+ ["buff_type"]=5,
+ ["formula"]=1
+ },
+ [16]={
+ ["name"]="skill_all_damage_up",
+ ["buff_type"]=5,
+ ["formula"]=1
+ },
+ [17]={
+ ["name"]="skill_1_damage_up",
+ ["buff_type"]=5,
+ ["formula"]=1
+ },
+ [18]={
+ ["name"]="skill_2_damage_up",
+ ["buff_type"]=5,
+ ["formula"]=1
+ },
+ [19]={
+ ["name"]="skill_3_damage_up",
+ ["buff_type"]=5,
+ ["formula"]=1
+ },
+ [20]={
+ ["name"]="attack_damage_up",
+ ["buff_type"]=5,
+ ["formula"]=1
+ },
+ [21]={
+ ["name"]="spell_mark",
+ ["buff_type"]=7,
+ ["formula"]=1
+ },
+ [22]={
+ ["name"]="spell_mark_explode",
+ ["buff_type"]=7,
+ ["formula"]=1
+ },
+ [23]={
+ ["name"]="spell_mark_save",
+ ["buff_type"]=7,
+ ["formula"]=1
+ },
+ [24]={
+ ["name"]="spell_mark_damage",
+ ["buff_type"]=5,
+ ["formula"]=1
+ },
+ [25]={
+ ["name"]="crit_up",
+ ["buff_type"]=5,
+ ["formula"]=1
+ },
+ [26]={
+ ["name"]="poison_double",
+ ["buff_type"]=5,
+ ["formula"]=1
+ },
+ [27]={
+ ["name"]="poison_superposition",
+ ["buff_type"]=5,
+ ["formula"]=1
+ },
+ [28]={
+ ["name"]="skill_1",
+ ["buff_type"]=7,
+ ["formula"]=1
+ },
+ [29]={
+ ["name"]="skill_2",
+ ["buff_type"]=7,
+ ["formula"]=1
+ },
+ [30]={
+ ["name"]="skill_3",
+ ["buff_type"]=7,
+ ["formula"]=1
+ },
+ [31]={
+ ["name"]="poison_time",
+ ["buff_type"]=7,
+ ["formula"]=1
+ },
+ [32]={
+ ["name"]="crit_time_up",
+ ["buff_type"]=5,
+ ["formula"]=1
+ },
+ [33]={
+ ["name"]="stun",
+ ["buff_type"]=6,
+ ["formula"]=1,
+ ["fx_buff"]=6
+ },
+ [34]={
+ ["name"]="airborne",
+ ["buff_type"]=7,
+ ["formula"]=1
+ },
+ [35]={
+ ["name"]="skill_damage_double",
+ ["buff_type"]=5,
+ ["formula"]=1
+ },
+ [36]={
+ ["name"]="none",
+ ["buff_type"]=0
+ }
+}
+local keys = {
+ name = {
+ ["hurt"]=buff[1],
+ ["hurt_hpp_t"]=buff[2],
+ ["poison"]=buff[3],
+ ["treat"]=buff[4],
+ ["attack_interval_dec"]=buff[5],
+ ["treat_shield"]=buff[6],
+ ["miss_up"]=buff[7],
+ ["atkp_up"]=buff[8],
+ ["dmg_addition_up"]=buff[9],
+ ["airborne_time"]=buff[10],
+ ["lie_time"]=buff[11],
+ ["attack_crit_up"]=buff[12],
+ ["airborne_damage_up"]=buff[13],
+ ["airborne_num_up"]=buff[14],
+ ["double_skill"]=buff[15],
+ ["skill_all_damage_up"]=buff[16],
+ ["skill_1_damage_up"]=buff[17],
+ ["skill_2_damage_up"]=buff[18],
+ ["skill_3_damage_up"]=buff[19],
+ ["attack_damage_up"]=buff[20],
+ ["spell_mark"]=buff[21],
+ ["spell_mark_explode"]=buff[22],
+ ["spell_mark_save"]=buff[23],
+ ["spell_mark_damage"]=buff[24],
+ ["crit_up"]=buff[25],
+ ["poison_double"]=buff[26],
+ ["poison_superposition"]=buff[27],
+ ["skill_1"]=buff[28],
+ ["skill_2"]=buff[29],
+ ["skill_3"]=buff[30],
+ ["poison_time"]=buff[31],
+ ["crit_time_up"]=buff[32],
+ ["stun"]=buff[33],
+ ["airborne"]=buff[34],
+ ["skill_damage_double"]=buff[35],
+ ["none"]=buff[36]
+ }
+}
+local config = {
+data=buff,
+keys=keys,
+count=36
+}
+return config
\ No newline at end of file
diff --git a/lua/app/config/buff.lua.meta b/lua/app/config/buff.lua.meta
new file mode 100644
index 00000000..5c30b45b
--- /dev/null
+++ b/lua/app/config/buff.lua.meta
@@ -0,0 +1,10 @@
+fileFormatVersion: 2
+guid: b5cd0e8e5bf81d04483d5540a8cadfbb
+ScriptedImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 2
+ userData:
+ assetBundleName:
+ assetBundleVariant:
+ script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
diff --git a/lua/app/config/bullet.lua b/lua/app/config/bullet.lua
new file mode 100644
index 00000000..f50c53eb
--- /dev/null
+++ b/lua/app/config/bullet.lua
@@ -0,0 +1,19 @@
+local bullet = {
+ [1]={
+ ["bullet_type"]=2,
+ ["bullet_finish_type"]=1,
+ ["radius"]=300,
+ ["bullet_time"]=1000
+ },
+ [2]={
+ ["bullet_type"]=2,
+ ["bullet_finish_type"]=2,
+ ["radius"]=300,
+ ["bullet_time"]=4000,
+ ["bullet_spd"]=300
+ }
+}
+local config = {
+data=bullet,count=2
+}
+return config
\ No newline at end of file
diff --git a/lua/app/config/bullet.lua.meta b/lua/app/config/bullet.lua.meta
new file mode 100644
index 00000000..85f0b524
--- /dev/null
+++ b/lua/app/config/bullet.lua.meta
@@ -0,0 +1,10 @@
+fileFormatVersion: 2
+guid: 4e27f6aef92c8944b8df32280cdf71fa
+ScriptedImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 2
+ userData:
+ assetBundleName:
+ assetBundleVariant:
+ script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
diff --git a/lua/app/config/chapter1.lua b/lua/app/config/chapter1.lua
new file mode 100644
index 00000000..2547cce6
--- /dev/null
+++ b/lua/app/config/chapter1.lua
@@ -0,0 +1,175506 @@
+local chapter1 = {
+ [1]={
+ ["next_chapter"]=2,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=1,
+ ["atk_coefficient"]={
+ ["value"]=1,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=100,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=100,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=100,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=100,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=1,
+ ["grasp_gold_reward"]={
+ ["value"]=0,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=0,
+ ["unit"]=0
+ }
+ },
+ [2]={
+ ["next_chapter"]=3,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=2,
+ ["atk_coefficient"]={
+ ["value"]=2,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=100,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=110,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=210,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=110,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=1,
+ ["grasp_gold_reward"]={
+ ["value"]=0,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=0,
+ ["unit"]=0
+ }
+ },
+ [3]={
+ ["next_chapter"]=4,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=3,
+ ["atk_coefficient"]={
+ ["value"]=3,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=100,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=120,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=330,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=120,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=1,
+ ["grasp_gold_reward"]={
+ ["value"]=0,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=0,
+ ["unit"]=0
+ }
+ },
+ [4]={
+ ["next_chapter"]=5,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=4,
+ ["atk_coefficient"]={
+ ["value"]=4,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=100,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=130,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=460,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=130,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=1,
+ ["grasp_gold_reward"]={
+ ["value"]=0,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=0,
+ ["unit"]=0
+ }
+ },
+ [5]={
+ ["next_chapter"]=6,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=5,
+ ["atk_coefficient"]={
+ ["value"]=5,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=100,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=140,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=600,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=140,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=1,
+ ["grasp_gold_reward"]={
+ ["value"]=0,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=0,
+ ["unit"]=0
+ }
+ },
+ [6]={
+ ["next_chapter"]=7,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=6,
+ ["atk_coefficient"]={
+ ["value"]=6,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=200,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=150,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=750,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=150,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=1,
+ ["grasp_gold_reward"]={
+ ["value"]=0,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=0,
+ ["unit"]=0
+ }
+ },
+ [7]={
+ ["next_chapter"]=8,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=7,
+ ["atk_coefficient"]={
+ ["value"]=7,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=300,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=160,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=910,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=160,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=1,
+ ["grasp_gold_reward"]={
+ ["value"]=0,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=0,
+ ["unit"]=0
+ }
+ },
+ [8]={
+ ["next_chapter"]=9,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=8,
+ ["atk_coefficient"]={
+ ["value"]=8,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=400,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=170,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1080,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=170,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=1,
+ ["grasp_gold_reward"]={
+ ["value"]=0,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=0,
+ ["unit"]=0
+ }
+ },
+ [9]={
+ ["next_chapter"]=10,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=9,
+ ["atk_coefficient"]={
+ ["value"]=9,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=500,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=180,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1260,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=180,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=1,
+ ["grasp_gold_reward"]={
+ ["value"]=0,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=0,
+ ["unit"]=0
+ }
+ },
+ [10]={
+ ["next_chapter"]=11,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=10,
+ ["atk_coefficient"]={
+ ["value"]=10,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=400,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=190,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1450,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=190,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=1,
+ ["grasp_gold_reward"]={
+ ["value"]=1900,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ },
+ [11]={
+ ["next_chapter"]=12,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=11,
+ ["atk_coefficient"]={
+ ["value"]=12,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=900,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=200,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1650,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=200,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=1,
+ ["grasp_gold_reward"]={
+ ["value"]=1900,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ },
+ [12]={
+ ["next_chapter"]=13,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=12,
+ ["atk_coefficient"]={
+ ["value"]=14,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=1200,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=210,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1860,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=210,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=1,
+ ["grasp_gold_reward"]={
+ ["value"]=1900,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ },
+ [13]={
+ ["next_chapter"]=14,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=13,
+ ["atk_coefficient"]={
+ ["value"]=16,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=1500,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=220,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2080,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=220,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=1,
+ ["grasp_gold_reward"]={
+ ["value"]=1900,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ },
+ [14]={
+ ["next_chapter"]=15,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=14,
+ ["atk_coefficient"]={
+ ["value"]=18,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=1800,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=230,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2310,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=230,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=1,
+ ["grasp_gold_reward"]={
+ ["value"]=1900,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ },
+ [15]={
+ ["next_chapter"]=16,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=15,
+ ["atk_coefficient"]={
+ ["value"]=20,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=2200,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=240,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2550,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=240,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=1,
+ ["grasp_gold_reward"]={
+ ["value"]=1900,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ },
+ [16]={
+ ["next_chapter"]=17,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=16,
+ ["atk_coefficient"]={
+ ["value"]=22,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=2700,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=250,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2800,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=250,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=1,
+ ["grasp_gold_reward"]={
+ ["value"]=1900,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ },
+ [17]={
+ ["next_chapter"]=18,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=17,
+ ["atk_coefficient"]={
+ ["value"]=24,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=3200,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=260,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3060,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=260,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=1,
+ ["grasp_gold_reward"]={
+ ["value"]=1900,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ },
+ [18]={
+ ["next_chapter"]=19,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=18,
+ ["atk_coefficient"]={
+ ["value"]=26,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=3800,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=270,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3330,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=270,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=1,
+ ["grasp_gold_reward"]={
+ ["value"]=1900,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ },
+ [19]={
+ ["next_chapter"]=20,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=19,
+ ["atk_coefficient"]={
+ ["value"]=28,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=4400,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=280,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3610,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=280,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=1,
+ ["grasp_gold_reward"]={
+ ["value"]=1900,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1,
+ ["unit"]=0
+ }
+ },
+ [20]={
+ ["next_chapter"]=21,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=20,
+ ["atk_coefficient"]={
+ ["value"]=30,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=5200,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=290,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3900,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=290,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=1,
+ ["grasp_gold_reward"]={
+ ["value"]=4800,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=2,
+ ["unit"]=0
+ }
+ },
+ [21]={
+ ["next_chapter"]=22,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=21,
+ ["atk_coefficient"]={
+ ["value"]=32,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=6000,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=300,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4200,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=300,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=2,
+ ["grasp_gold_reward"]={
+ ["value"]=4800,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=2,
+ ["unit"]=0
+ }
+ },
+ [22]={
+ ["next_chapter"]=23,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=22,
+ ["atk_coefficient"]={
+ ["value"]=34,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=6900,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=310,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4510,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=310,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=2,
+ ["grasp_gold_reward"]={
+ ["value"]=4800,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=2,
+ ["unit"]=0
+ }
+ },
+ [23]={
+ ["next_chapter"]=24,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=23,
+ ["atk_coefficient"]={
+ ["value"]=36,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=7800,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=320,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4830,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=320,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=2,
+ ["grasp_gold_reward"]={
+ ["value"]=4800,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=2,
+ ["unit"]=0
+ }
+ },
+ [24]={
+ ["next_chapter"]=25,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=24,
+ ["atk_coefficient"]={
+ ["value"]=38,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=8900,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=330,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5160,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=330,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=2,
+ ["grasp_gold_reward"]={
+ ["value"]=4800,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=2,
+ ["unit"]=0
+ }
+ },
+ [25]={
+ ["next_chapter"]=26,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=25,
+ ["atk_coefficient"]={
+ ["value"]=40,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=340,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5500,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=340,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=2,
+ ["grasp_gold_reward"]={
+ ["value"]=4800,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=2,
+ ["unit"]=0
+ }
+ },
+ [26]={
+ ["next_chapter"]=27,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=26,
+ ["atk_coefficient"]={
+ ["value"]=42,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=11300,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=350,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5850,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=350,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=2,
+ ["grasp_gold_reward"]={
+ ["value"]=4800,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=2,
+ ["unit"]=0
+ }
+ },
+ [27]={
+ ["next_chapter"]=28,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=27,
+ ["atk_coefficient"]={
+ ["value"]=44,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=12600,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=360,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6210,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=360,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=2,
+ ["grasp_gold_reward"]={
+ ["value"]=4800,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=2,
+ ["unit"]=0
+ }
+ },
+ [28]={
+ ["next_chapter"]=29,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=28,
+ ["atk_coefficient"]={
+ ["value"]=46,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=14100,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=370,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6580,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=370,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=2,
+ ["grasp_gold_reward"]={
+ ["value"]=4800,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=2,
+ ["unit"]=0
+ }
+ },
+ [29]={
+ ["next_chapter"]=30,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=29,
+ ["atk_coefficient"]={
+ ["value"]=48,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=15700,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=380,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6960,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=380,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=2,
+ ["grasp_gold_reward"]={
+ ["value"]=4800,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=2,
+ ["unit"]=0
+ }
+ },
+ [30]={
+ ["next_chapter"]=31,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=30,
+ ["atk_coefficient"]={
+ ["value"]=50,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=17300,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=390,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7350,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=390,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=2,
+ ["grasp_gold_reward"]={
+ ["value"]=8700,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=3,
+ ["unit"]=0
+ }
+ },
+ [31]={
+ ["next_chapter"]=32,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=31,
+ ["atk_coefficient"]={
+ ["value"]=55,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=19100,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=400,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7750,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=400,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=2,
+ ["grasp_gold_reward"]={
+ ["value"]=8700,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=3,
+ ["unit"]=0
+ }
+ },
+ [32]={
+ ["next_chapter"]=33,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=32,
+ ["atk_coefficient"]={
+ ["value"]=60,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=21000,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=410,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8160,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=410,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=2,
+ ["grasp_gold_reward"]={
+ ["value"]=8700,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=3,
+ ["unit"]=0
+ }
+ },
+ [33]={
+ ["next_chapter"]=34,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=33,
+ ["atk_coefficient"]={
+ ["value"]=65,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=23000,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=420,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8580,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=420,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=2,
+ ["grasp_gold_reward"]={
+ ["value"]=8700,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=3,
+ ["unit"]=0
+ }
+ },
+ [34]={
+ ["next_chapter"]=35,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=34,
+ ["atk_coefficient"]={
+ ["value"]=70,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=25200,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=430,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9010,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=430,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=2,
+ ["grasp_gold_reward"]={
+ ["value"]=8700,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=3,
+ ["unit"]=0
+ }
+ },
+ [35]={
+ ["next_chapter"]=36,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=35,
+ ["atk_coefficient"]={
+ ["value"]=75,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=27500,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=440,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9450,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=440,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=2,
+ ["grasp_gold_reward"]={
+ ["value"]=8700,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=3,
+ ["unit"]=0
+ }
+ },
+ [36]={
+ ["next_chapter"]=37,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=36,
+ ["atk_coefficient"]={
+ ["value"]=80,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=29900,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=450,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9900,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=450,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=2,
+ ["grasp_gold_reward"]={
+ ["value"]=8700,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=3,
+ ["unit"]=0
+ }
+ },
+ [37]={
+ ["next_chapter"]=38,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=37,
+ ["atk_coefficient"]={
+ ["value"]=85,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=32500,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=460,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10360,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=460,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=2,
+ ["grasp_gold_reward"]={
+ ["value"]=8700,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=3,
+ ["unit"]=0
+ }
+ },
+ [38]={
+ ["next_chapter"]=39,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=38,
+ ["atk_coefficient"]={
+ ["value"]=90,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=35200,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=470,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10830,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=470,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=2,
+ ["grasp_gold_reward"]={
+ ["value"]=8700,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=3,
+ ["unit"]=0
+ }
+ },
+ [39]={
+ ["next_chapter"]=40,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=39,
+ ["atk_coefficient"]={
+ ["value"]=95,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=38000,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=480,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11310,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=480,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=2,
+ ["grasp_gold_reward"]={
+ ["value"]=8700,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=3,
+ ["unit"]=0
+ }
+ },
+ [40]={
+ ["next_chapter"]=41,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=40,
+ ["atk_coefficient"]={
+ ["value"]=100,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=41000,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=490,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11800,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=490,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=2,
+ ["grasp_gold_reward"]={
+ ["value"]=13600,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=4,
+ ["unit"]=0
+ }
+ },
+ [41]={
+ ["next_chapter"]=42,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=41,
+ ["atk_coefficient"]={
+ ["value"]=120,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=44200,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=500,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12300,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=500,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=3,
+ ["grasp_gold_reward"]={
+ ["value"]=13600,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=4,
+ ["unit"]=0
+ }
+ },
+ [42]={
+ ["next_chapter"]=43,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=42,
+ ["atk_coefficient"]={
+ ["value"]=140,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=47500,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=510,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12810,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=510,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=3,
+ ["grasp_gold_reward"]={
+ ["value"]=13600,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=4,
+ ["unit"]=0
+ }
+ },
+ [43]={
+ ["next_chapter"]=44,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=43,
+ ["atk_coefficient"]={
+ ["value"]=160,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=50900,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=520,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13330,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=520,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=3,
+ ["grasp_gold_reward"]={
+ ["value"]=13600,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=4,
+ ["unit"]=0
+ }
+ },
+ [44]={
+ ["next_chapter"]=45,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=44,
+ ["atk_coefficient"]={
+ ["value"]=180,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=54600,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=530,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13860,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=530,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=3,
+ ["grasp_gold_reward"]={
+ ["value"]=13600,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=4,
+ ["unit"]=0
+ }
+ },
+ [45]={
+ ["next_chapter"]=46,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=45,
+ ["atk_coefficient"]={
+ ["value"]=200,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=58400,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=540,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14400,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=540,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=3,
+ ["grasp_gold_reward"]={
+ ["value"]=13600,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=4,
+ ["unit"]=0
+ }
+ },
+ [46]={
+ ["next_chapter"]=47,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=46,
+ ["atk_coefficient"]={
+ ["value"]=220,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=62300,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=550,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14950,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=550,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=3,
+ ["grasp_gold_reward"]={
+ ["value"]=13600,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=4,
+ ["unit"]=0
+ }
+ },
+ [47]={
+ ["next_chapter"]=48,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=47,
+ ["atk_coefficient"]={
+ ["value"]=240,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=66500,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=560,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15510,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=560,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=3,
+ ["grasp_gold_reward"]={
+ ["value"]=13600,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=4,
+ ["unit"]=0
+ }
+ },
+ [48]={
+ ["next_chapter"]=49,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=48,
+ ["atk_coefficient"]={
+ ["value"]=260,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=70800,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=570,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16080,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=570,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=3,
+ ["grasp_gold_reward"]={
+ ["value"]=13600,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=4,
+ ["unit"]=0
+ }
+ },
+ [49]={
+ ["next_chapter"]=50,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=49,
+ ["atk_coefficient"]={
+ ["value"]=280,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=75300,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=580,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16660,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=580,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=3,
+ ["grasp_gold_reward"]={
+ ["value"]=13600,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=4,
+ ["unit"]=0
+ }
+ },
+ [50]={
+ ["next_chapter"]=51,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=50,
+ ["atk_coefficient"]={
+ ["value"]=300,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=80000,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=590,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17250,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=590,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=3,
+ ["grasp_gold_reward"]={
+ ["value"]=19500,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=5,
+ ["unit"]=0
+ }
+ },
+ [51]={
+ ["next_chapter"]=52,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=84900,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=600,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17850,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=600,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=3,
+ ["grasp_gold_reward"]={
+ ["value"]=19500,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=5,
+ ["unit"]=0
+ }
+ },
+ [52]={
+ ["next_chapter"]=53,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=400,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=90000,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=610,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18460,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=610,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=3,
+ ["grasp_gold_reward"]={
+ ["value"]=19500,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=5,
+ ["unit"]=0
+ }
+ },
+ [53]={
+ ["next_chapter"]=54,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=450,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=95300,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=620,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19080,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=620,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=3,
+ ["grasp_gold_reward"]={
+ ["value"]=19500,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=5,
+ ["unit"]=0
+ }
+ },
+ [54]={
+ ["next_chapter"]=55,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=500,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=100800,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=630,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19710,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=630,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=3,
+ ["grasp_gold_reward"]={
+ ["value"]=19500,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=5,
+ ["unit"]=0
+ }
+ },
+ [55]={
+ ["next_chapter"]=56,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=550,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=106500,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=640,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20350,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=640,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=3,
+ ["grasp_gold_reward"]={
+ ["value"]=19500,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=5,
+ ["unit"]=0
+ }
+ },
+ [56]={
+ ["next_chapter"]=57,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=600,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=112400,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=650,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21000,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=650,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=3,
+ ["grasp_gold_reward"]={
+ ["value"]=19500,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=5,
+ ["unit"]=0
+ }
+ },
+ [57]={
+ ["next_chapter"]=58,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=650,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=118600,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=660,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21660,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=660,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=3,
+ ["grasp_gold_reward"]={
+ ["value"]=19500,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=5,
+ ["unit"]=0
+ }
+ },
+ [58]={
+ ["next_chapter"]=59,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=700,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=124900,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=670,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22330,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=670,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=3,
+ ["grasp_gold_reward"]={
+ ["value"]=19500,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=5,
+ ["unit"]=0
+ }
+ },
+ [59]={
+ ["next_chapter"]=60,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=750,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=131500,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=680,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23010,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=680,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=3,
+ ["grasp_gold_reward"]={
+ ["value"]=19500,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=5,
+ ["unit"]=0
+ }
+ },
+ [60]={
+ ["next_chapter"]=61,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=800,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=138300,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=690,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23700,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=690,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=3,
+ ["grasp_gold_reward"]={
+ ["value"]=26400,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=6,
+ ["unit"]=0
+ }
+ },
+ [61]={
+ ["next_chapter"]=62,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=900,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=145300,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=700,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24400,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=700,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=4,
+ ["grasp_gold_reward"]={
+ ["value"]=26400,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=6,
+ ["unit"]=0
+ }
+ },
+ [62]={
+ ["next_chapter"]=63,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1000,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=152600,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=710,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25110,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=710,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=4,
+ ["grasp_gold_reward"]={
+ ["value"]=26400,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=6,
+ ["unit"]=0
+ }
+ },
+ [63]={
+ ["next_chapter"]=64,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1100,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=160100,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=720,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25830,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=720,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=4,
+ ["grasp_gold_reward"]={
+ ["value"]=26400,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=6,
+ ["unit"]=0
+ }
+ },
+ [64]={
+ ["next_chapter"]=65,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1200,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=167800,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=730,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26560,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=730,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=4,
+ ["grasp_gold_reward"]={
+ ["value"]=26400,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=6,
+ ["unit"]=0
+ }
+ },
+ [65]={
+ ["next_chapter"]=66,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1300,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=175800,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=740,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27300,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=740,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=4,
+ ["grasp_gold_reward"]={
+ ["value"]=26400,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=6,
+ ["unit"]=0
+ }
+ },
+ [66]={
+ ["next_chapter"]=67,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1400,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=184000,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=750,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28050,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=750,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=4,
+ ["grasp_gold_reward"]={
+ ["value"]=26400,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=6,
+ ["unit"]=0
+ }
+ },
+ [67]={
+ ["next_chapter"]=68,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1500,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=192500,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=760,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28810,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=760,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=4,
+ ["grasp_gold_reward"]={
+ ["value"]=26400,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=6,
+ ["unit"]=0
+ }
+ },
+ [68]={
+ ["next_chapter"]=69,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1600,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=201300,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=770,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29580,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=770,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=4,
+ ["grasp_gold_reward"]={
+ ["value"]=26400,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=6,
+ ["unit"]=0
+ }
+ },
+ [69]={
+ ["next_chapter"]=70,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1700,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=210300,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=780,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30360,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=780,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=4,
+ ["grasp_gold_reward"]={
+ ["value"]=26400,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=6,
+ ["unit"]=0
+ }
+ },
+ [70]={
+ ["next_chapter"]=71,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=1800,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=219600,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=790,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31150,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=790,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=4,
+ ["grasp_gold_reward"]={
+ ["value"]=34300,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=7,
+ ["unit"]=0
+ }
+ },
+ [71]={
+ ["next_chapter"]=72,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1950,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=229100,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=800,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31950,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=800,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=4,
+ ["grasp_gold_reward"]={
+ ["value"]=34300,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=7,
+ ["unit"]=0
+ }
+ },
+ [72]={
+ ["next_chapter"]=73,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2100,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=238900,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=810,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32760,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=810,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=4,
+ ["grasp_gold_reward"]={
+ ["value"]=34300,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=7,
+ ["unit"]=0
+ }
+ },
+ [73]={
+ ["next_chapter"]=74,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2250,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=249000,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=820,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33580,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=820,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=4,
+ ["grasp_gold_reward"]={
+ ["value"]=34300,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=7,
+ ["unit"]=0
+ }
+ },
+ [74]={
+ ["next_chapter"]=75,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2400,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=259400,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=830,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34410,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=830,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=4,
+ ["grasp_gold_reward"]={
+ ["value"]=34300,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=7,
+ ["unit"]=0
+ }
+ },
+ [75]={
+ ["next_chapter"]=76,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2550,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=270000,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=840,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35250,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=840,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=4,
+ ["grasp_gold_reward"]={
+ ["value"]=34300,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=7,
+ ["unit"]=0
+ }
+ },
+ [76]={
+ ["next_chapter"]=77,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2700,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=281000,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=850,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36100,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=850,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=4,
+ ["grasp_gold_reward"]={
+ ["value"]=34300,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=7,
+ ["unit"]=0
+ }
+ },
+ [77]={
+ ["next_chapter"]=78,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2850,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=292200,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=860,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36960,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=860,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=4,
+ ["grasp_gold_reward"]={
+ ["value"]=34300,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=7,
+ ["unit"]=0
+ }
+ },
+ [78]={
+ ["next_chapter"]=79,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3000,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=303800,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=870,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37830,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=870,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=4,
+ ["grasp_gold_reward"]={
+ ["value"]=34300,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=7,
+ ["unit"]=0
+ }
+ },
+ [79]={
+ ["next_chapter"]=80,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3150,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=315600,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=880,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=38710,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=880,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=4,
+ ["grasp_gold_reward"]={
+ ["value"]=34300,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=7,
+ ["unit"]=0
+ }
+ },
+ [80]={
+ ["next_chapter"]=81,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=3300,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=327700,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=890,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39600,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=890,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=4,
+ ["grasp_gold_reward"]={
+ ["value"]=43200,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=8,
+ ["unit"]=0
+ }
+ },
+ [81]={
+ ["next_chapter"]=82,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3402,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=340200,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=900,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=40500,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=900,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=5,
+ ["grasp_gold_reward"]={
+ ["value"]=43200,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=8,
+ ["unit"]=0
+ }
+ },
+ [82]={
+ ["next_chapter"]=83,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3529,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=352900,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=910,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41410,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=910,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=5,
+ ["grasp_gold_reward"]={
+ ["value"]=43200,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=8,
+ ["unit"]=0
+ }
+ },
+ [83]={
+ ["next_chapter"]=84,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3660,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=366000,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=920,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=42330,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=920,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=5,
+ ["grasp_gold_reward"]={
+ ["value"]=43200,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=8,
+ ["unit"]=0
+ }
+ },
+ [84]={
+ ["next_chapter"]=85,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3794,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=379400,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=930,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=43260,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=930,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=5,
+ ["grasp_gold_reward"]={
+ ["value"]=43200,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=8,
+ ["unit"]=0
+ }
+ },
+ [85]={
+ ["next_chapter"]=86,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3931,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=393100,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=940,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=44200,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=940,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=5,
+ ["grasp_gold_reward"]={
+ ["value"]=43200,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=8,
+ ["unit"]=0
+ }
+ },
+ [86]={
+ ["next_chapter"]=87,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4071,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=407100,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=950,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=45150,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=950,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=5,
+ ["grasp_gold_reward"]={
+ ["value"]=43200,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=8,
+ ["unit"]=0
+ }
+ },
+ [87]={
+ ["next_chapter"]=88,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4215,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=421500,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=960,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=46110,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=960,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=5,
+ ["grasp_gold_reward"]={
+ ["value"]=43200,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=8,
+ ["unit"]=0
+ }
+ },
+ [88]={
+ ["next_chapter"]=89,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4362,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=436200,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=970,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=47080,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=970,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=5,
+ ["grasp_gold_reward"]={
+ ["value"]=43200,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=8,
+ ["unit"]=0
+ }
+ },
+ [89]={
+ ["next_chapter"]=90,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4512,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=451200,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=980,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=48060,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=980,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=5,
+ ["grasp_gold_reward"]={
+ ["value"]=43200,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=8,
+ ["unit"]=0
+ }
+ },
+ [90]={
+ ["next_chapter"]=91,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=4666,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=466600,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=990,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=49050,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=990,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=5,
+ ["grasp_gold_reward"]={
+ ["value"]=53100,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=9,
+ ["unit"]=0
+ }
+ },
+ [91]={
+ ["next_chapter"]=92,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4823,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=482300,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=50050,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=5,
+ ["grasp_gold_reward"]={
+ ["value"]=53100,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=9,
+ ["unit"]=0
+ }
+ },
+ [92]={
+ ["next_chapter"]=93,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4984,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=498400,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=1010,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=51060,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1010,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=5,
+ ["grasp_gold_reward"]={
+ ["value"]=53100,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=9,
+ ["unit"]=0
+ }
+ },
+ [93]={
+ ["next_chapter"]=94,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5148,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=514800,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=1020,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=52080,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1020,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=5,
+ ["grasp_gold_reward"]={
+ ["value"]=53100,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=9,
+ ["unit"]=0
+ }
+ },
+ [94]={
+ ["next_chapter"]=95,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5316,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=531600,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=1030,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=53110,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1030,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=5,
+ ["grasp_gold_reward"]={
+ ["value"]=53100,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=9,
+ ["unit"]=0
+ }
+ },
+ [95]={
+ ["next_chapter"]=96,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5488,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=548800,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=1040,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=54150,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1040,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=5,
+ ["grasp_gold_reward"]={
+ ["value"]=53100,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=9,
+ ["unit"]=0
+ }
+ },
+ [96]={
+ ["next_chapter"]=97,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5663,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=566300,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=1050,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=55200,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1050,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=5,
+ ["grasp_gold_reward"]={
+ ["value"]=53100,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=9,
+ ["unit"]=0
+ }
+ },
+ [97]={
+ ["next_chapter"]=98,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5842,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=584200,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=1060,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=56260,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1060,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=5,
+ ["grasp_gold_reward"]={
+ ["value"]=53100,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=9,
+ ["unit"]=0
+ }
+ },
+ [98]={
+ ["next_chapter"]=99,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6024,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=602400,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=1070,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=57330,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1070,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=5,
+ ["grasp_gold_reward"]={
+ ["value"]=53100,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=9,
+ ["unit"]=0
+ }
+ },
+ [99]={
+ ["next_chapter"]=100,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6210,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=621000,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=1080,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=58410,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1080,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=5,
+ ["grasp_gold_reward"]={
+ ["value"]=53100,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=9,
+ ["unit"]=0
+ }
+ },
+ [100]={
+ ["next_chapter"]=101,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=6400,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=640000,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=1090,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=59500,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1090,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=5,
+ ["grasp_gold_reward"]={
+ ["value"]=64000,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=10,
+ ["unit"]=0
+ }
+ },
+ [101]={
+ ["next_chapter"]=102,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6594,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=659400,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=1100,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=60600,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1100,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=6,
+ ["grasp_gold_reward"]={
+ ["value"]=64000,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=10,
+ ["unit"]=0
+ }
+ },
+ [102]={
+ ["next_chapter"]=103,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6792,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=679200,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=1110,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=61710,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1110,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=6,
+ ["grasp_gold_reward"]={
+ ["value"]=64000,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=10,
+ ["unit"]=0
+ }
+ },
+ [103]={
+ ["next_chapter"]=104,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6994,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=699400,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=1120,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=62830,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1120,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=6,
+ ["grasp_gold_reward"]={
+ ["value"]=64000,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=10,
+ ["unit"]=0
+ }
+ },
+ [104]={
+ ["next_chapter"]=105,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7200,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=720000,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=1130,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=63960,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1130,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=6,
+ ["grasp_gold_reward"]={
+ ["value"]=64000,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=10,
+ ["unit"]=0
+ }
+ },
+ [105]={
+ ["next_chapter"]=106,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7409,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=740900,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=1140,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=65100,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1140,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=6,
+ ["grasp_gold_reward"]={
+ ["value"]=64000,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=10,
+ ["unit"]=0
+ }
+ },
+ [106]={
+ ["next_chapter"]=107,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7623,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=762300,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=1150,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=66250,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1150,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=6,
+ ["grasp_gold_reward"]={
+ ["value"]=64000,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=10,
+ ["unit"]=0
+ }
+ },
+ [107]={
+ ["next_chapter"]=108,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7841,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=784100,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=1160,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=67410,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1160,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=6,
+ ["grasp_gold_reward"]={
+ ["value"]=64000,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=10,
+ ["unit"]=0
+ }
+ },
+ [108]={
+ ["next_chapter"]=109,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8063,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=806300,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=1170,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=68580,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1170,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=6,
+ ["grasp_gold_reward"]={
+ ["value"]=64000,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=10,
+ ["unit"]=0
+ }
+ },
+ [109]={
+ ["next_chapter"]=110,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8289,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=828900,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=1180,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=69760,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1180,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=6,
+ ["grasp_gold_reward"]={
+ ["value"]=64000,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=10,
+ ["unit"]=0
+ }
+ },
+ [110]={
+ ["next_chapter"]=111,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=8519,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=851900,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=1190,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=70950,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1190,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=6,
+ ["grasp_gold_reward"]={
+ ["value"]=75900,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=11,
+ ["unit"]=0
+ }
+ },
+ [111]={
+ ["next_chapter"]=112,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8753,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=875300,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=1200,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=72150,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1200,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=6,
+ ["grasp_gold_reward"]={
+ ["value"]=75900,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=11,
+ ["unit"]=0
+ }
+ },
+ [112]={
+ ["next_chapter"]=113,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8992,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=899200,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=1210,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=73360,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1210,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=6,
+ ["grasp_gold_reward"]={
+ ["value"]=75900,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=11,
+ ["unit"]=0
+ }
+ },
+ [113]={
+ ["next_chapter"]=114,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9235,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=923500,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=1220,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=74580,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1220,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=6,
+ ["grasp_gold_reward"]={
+ ["value"]=75900,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=11,
+ ["unit"]=0
+ }
+ },
+ [114]={
+ ["next_chapter"]=115,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9482,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=948200,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=1230,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=75810,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1230,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=6,
+ ["grasp_gold_reward"]={
+ ["value"]=75900,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=11,
+ ["unit"]=0
+ }
+ },
+ [115]={
+ ["next_chapter"]=116,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9734,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=973400,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=1240,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=77050,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1240,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=6,
+ ["grasp_gold_reward"]={
+ ["value"]=75900,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=11,
+ ["unit"]=0
+ }
+ },
+ [116]={
+ ["next_chapter"]=117,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9990,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=999000,
+ ["unit"]=0
+ },
+ ["gold_reward"]={
+ ["value"]=1250,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=78300,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1250,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=6,
+ ["grasp_gold_reward"]={
+ ["value"]=75900,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=11,
+ ["unit"]=0
+ }
+ },
+ [117]={
+ ["next_chapter"]=118,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10251,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=1025,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1260,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=79560,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1260,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=6,
+ ["grasp_gold_reward"]={
+ ["value"]=75900,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=11,
+ ["unit"]=0
+ }
+ },
+ [118]={
+ ["next_chapter"]=119,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10516,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=1052,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1270,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=80830,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1270,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=6,
+ ["grasp_gold_reward"]={
+ ["value"]=75900,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=11,
+ ["unit"]=0
+ }
+ },
+ [119]={
+ ["next_chapter"]=120,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10786,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=1079,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1280,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=82110,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1280,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=6,
+ ["grasp_gold_reward"]={
+ ["value"]=75900,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=11,
+ ["unit"]=0
+ }
+ },
+ [120]={
+ ["next_chapter"]=121,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=11060,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=1106,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1290,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=83400,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1290,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=6,
+ ["grasp_gold_reward"]={
+ ["value"]=88800,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=12,
+ ["unit"]=0
+ }
+ },
+ [121]={
+ ["next_chapter"]=122,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11338,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=1134,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1300,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=84700,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1300,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=7,
+ ["grasp_gold_reward"]={
+ ["value"]=88800,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=12,
+ ["unit"]=0
+ }
+ },
+ [122]={
+ ["next_chapter"]=123,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11622,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=1162,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1310,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=86010,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1310,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=7,
+ ["grasp_gold_reward"]={
+ ["value"]=88800,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=12,
+ ["unit"]=0
+ }
+ },
+ [123]={
+ ["next_chapter"]=124,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11910,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=1191,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1320,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=87330,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1320,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=7,
+ ["grasp_gold_reward"]={
+ ["value"]=88800,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=12,
+ ["unit"]=0
+ }
+ },
+ [124]={
+ ["next_chapter"]=125,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12203,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=1220,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1330,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=88660,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1330,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=7,
+ ["grasp_gold_reward"]={
+ ["value"]=88800,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=12,
+ ["unit"]=0
+ }
+ },
+ [125]={
+ ["next_chapter"]=126,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12500,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=1250,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1340,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1340,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=7,
+ ["grasp_gold_reward"]={
+ ["value"]=88800,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=12,
+ ["unit"]=0
+ }
+ },
+ [126]={
+ ["next_chapter"]=127,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12803,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=1280,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1350,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=91350,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1350,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=7,
+ ["grasp_gold_reward"]={
+ ["value"]=88800,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=12,
+ ["unit"]=0
+ }
+ },
+ [127]={
+ ["next_chapter"]=128,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13110,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=1311,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1360,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=92710,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1360,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=7,
+ ["grasp_gold_reward"]={
+ ["value"]=88800,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=12,
+ ["unit"]=0
+ }
+ },
+ [128]={
+ ["next_chapter"]=129,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13422,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=1342,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1370,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=94080,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1370,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=7,
+ ["grasp_gold_reward"]={
+ ["value"]=88800,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=12,
+ ["unit"]=0
+ }
+ },
+ [129]={
+ ["next_chapter"]=130,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13739,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=1374,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1380,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=95460,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1380,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=7,
+ ["grasp_gold_reward"]={
+ ["value"]=88800,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=12,
+ ["unit"]=0
+ }
+ },
+ [130]={
+ ["next_chapter"]=131,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=14061,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=1406,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1390,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=96850,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1390,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=7,
+ ["grasp_gold_reward"]={
+ ["value"]=102700,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=13,
+ ["unit"]=0
+ }
+ },
+ [131]={
+ ["next_chapter"]=132,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14388,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=1439,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1400,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=98250,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1400,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=7,
+ ["grasp_gold_reward"]={
+ ["value"]=102700,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=13,
+ ["unit"]=0
+ }
+ },
+ [132]={
+ ["next_chapter"]=133,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14720,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=1472,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1410,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=99660,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1410,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=7,
+ ["grasp_gold_reward"]={
+ ["value"]=102700,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=13,
+ ["unit"]=0
+ }
+ },
+ [133]={
+ ["next_chapter"]=134,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15057,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=1506,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1420,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=101080,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1420,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=7,
+ ["grasp_gold_reward"]={
+ ["value"]=102700,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=13,
+ ["unit"]=0
+ }
+ },
+ [134]={
+ ["next_chapter"]=135,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15400,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=1540,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1430,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=102510,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1430,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=7,
+ ["grasp_gold_reward"]={
+ ["value"]=102700,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=13,
+ ["unit"]=0
+ }
+ },
+ [135]={
+ ["next_chapter"]=136,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15747,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=1575,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1440,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=103950,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1440,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=7,
+ ["grasp_gold_reward"]={
+ ["value"]=102700,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=13,
+ ["unit"]=0
+ }
+ },
+ [136]={
+ ["next_chapter"]=137,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16099,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=1610,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1450,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=105400,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1450,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=7,
+ ["grasp_gold_reward"]={
+ ["value"]=102700,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=13,
+ ["unit"]=0
+ }
+ },
+ [137]={
+ ["next_chapter"]=138,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16457,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=1646,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1460,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=106860,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1460,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=7,
+ ["grasp_gold_reward"]={
+ ["value"]=102700,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=13,
+ ["unit"]=0
+ }
+ },
+ [138]={
+ ["next_chapter"]=139,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16820,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=1682,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1470,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=108330,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1470,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=7,
+ ["grasp_gold_reward"]={
+ ["value"]=102700,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=13,
+ ["unit"]=0
+ }
+ },
+ [139]={
+ ["next_chapter"]=140,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17188,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=1719,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1480,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=109810,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1480,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=7,
+ ["grasp_gold_reward"]={
+ ["value"]=102700,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=13,
+ ["unit"]=0
+ }
+ },
+ [140]={
+ ["next_chapter"]=141,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=17562,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=1756,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1490,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=111300,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1490,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=7,
+ ["grasp_gold_reward"]={
+ ["value"]=117600,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=14,
+ ["unit"]=0
+ }
+ },
+ [141]={
+ ["next_chapter"]=142,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17941,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=1794,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1500,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=112800,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1500,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=8,
+ ["grasp_gold_reward"]={
+ ["value"]=117600,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=14,
+ ["unit"]=0
+ }
+ },
+ [142]={
+ ["next_chapter"]=143,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18326,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=1833,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1510,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=114310,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1510,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=8,
+ ["grasp_gold_reward"]={
+ ["value"]=117600,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=14,
+ ["unit"]=0
+ }
+ },
+ [143]={
+ ["next_chapter"]=144,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18715,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=1872,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1520,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=115830,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1520,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=8,
+ ["grasp_gold_reward"]={
+ ["value"]=117600,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=14,
+ ["unit"]=0
+ }
+ },
+ [144]={
+ ["next_chapter"]=145,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19111,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=1911,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1530,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=117360,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1530,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=8,
+ ["grasp_gold_reward"]={
+ ["value"]=117600,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=14,
+ ["unit"]=0
+ }
+ },
+ [145]={
+ ["next_chapter"]=146,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19512,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=1951,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1540,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=118900,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1540,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=8,
+ ["grasp_gold_reward"]={
+ ["value"]=117600,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=14,
+ ["unit"]=0
+ }
+ },
+ [146]={
+ ["next_chapter"]=147,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19918,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=1992,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1550,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=120450,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1550,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=8,
+ ["grasp_gold_reward"]={
+ ["value"]=117600,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=14,
+ ["unit"]=0
+ }
+ },
+ [147]={
+ ["next_chapter"]=148,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20330,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=2033,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1560,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=122010,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1560,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=8,
+ ["grasp_gold_reward"]={
+ ["value"]=117600,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=14,
+ ["unit"]=0
+ }
+ },
+ [148]={
+ ["next_chapter"]=149,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20748,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=2075,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1570,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=123580,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1570,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=8,
+ ["grasp_gold_reward"]={
+ ["value"]=117600,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=14,
+ ["unit"]=0
+ }
+ },
+ [149]={
+ ["next_chapter"]=150,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21171,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=2117,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1580,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=125160,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1580,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=8,
+ ["grasp_gold_reward"]={
+ ["value"]=117600,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=14,
+ ["unit"]=0
+ }
+ },
+ [150]={
+ ["next_chapter"]=151,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=21600,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=2160,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1590,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=126750,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1590,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=8,
+ ["grasp_gold_reward"]={
+ ["value"]=133500,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=15,
+ ["unit"]=0
+ }
+ },
+ [151]={
+ ["next_chapter"]=152,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22035,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=2204,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1600,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=128350,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1600,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=8,
+ ["grasp_gold_reward"]={
+ ["value"]=133500,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=15,
+ ["unit"]=0
+ }
+ },
+ [152]={
+ ["next_chapter"]=153,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22476,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=2248,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1610,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=129960,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1610,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=8,
+ ["grasp_gold_reward"]={
+ ["value"]=133500,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=15,
+ ["unit"]=0
+ }
+ },
+ [153]={
+ ["next_chapter"]=154,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22923,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=2292,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1620,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=131580,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1620,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=8,
+ ["grasp_gold_reward"]={
+ ["value"]=133500,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=15,
+ ["unit"]=0
+ }
+ },
+ [154]={
+ ["next_chapter"]=155,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23375,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=2338,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1630,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=133210,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1630,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=8,
+ ["grasp_gold_reward"]={
+ ["value"]=133500,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=15,
+ ["unit"]=0
+ }
+ },
+ [155]={
+ ["next_chapter"]=156,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23833,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=2383,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1640,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=134850,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1640,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=8,
+ ["grasp_gold_reward"]={
+ ["value"]=133500,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=15,
+ ["unit"]=0
+ }
+ },
+ [156]={
+ ["next_chapter"]=157,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24298,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=2430,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1650,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=136500,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1650,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=8,
+ ["grasp_gold_reward"]={
+ ["value"]=133500,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=15,
+ ["unit"]=0
+ }
+ },
+ [157]={
+ ["next_chapter"]=158,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24768,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=2477,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1660,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=138160,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1660,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=8,
+ ["grasp_gold_reward"]={
+ ["value"]=133500,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=15,
+ ["unit"]=0
+ }
+ },
+ [158]={
+ ["next_chapter"]=159,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25244,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=2524,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1670,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=139830,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1670,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=8,
+ ["grasp_gold_reward"]={
+ ["value"]=133500,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=15,
+ ["unit"]=0
+ }
+ },
+ [159]={
+ ["next_chapter"]=160,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25726,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=2573,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1680,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=141510,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1680,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=8,
+ ["grasp_gold_reward"]={
+ ["value"]=133500,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=15,
+ ["unit"]=0
+ }
+ },
+ [160]={
+ ["next_chapter"]=161,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=26215,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=2622,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1690,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=143200,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1690,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=8,
+ ["grasp_gold_reward"]={
+ ["value"]=150400,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=16,
+ ["unit"]=0
+ }
+ },
+ [161]={
+ ["next_chapter"]=162,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26709,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=2671,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1700,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=144900,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1700,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=9,
+ ["grasp_gold_reward"]={
+ ["value"]=150400,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=16,
+ ["unit"]=0
+ }
+ },
+ [162]={
+ ["next_chapter"]=163,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27210,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=2721,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1710,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=146610,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1710,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=9,
+ ["grasp_gold_reward"]={
+ ["value"]=150400,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=16,
+ ["unit"]=0
+ }
+ },
+ [163]={
+ ["next_chapter"]=164,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27717,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=2772,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1720,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=148330,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1720,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=9,
+ ["grasp_gold_reward"]={
+ ["value"]=150400,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=16,
+ ["unit"]=0
+ }
+ },
+ [164]={
+ ["next_chapter"]=165,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28231,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=2823,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1730,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=150060,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1730,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=9,
+ ["grasp_gold_reward"]={
+ ["value"]=150400,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=16,
+ ["unit"]=0
+ }
+ },
+ [165]={
+ ["next_chapter"]=166,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28750,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=2875,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1740,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=151800,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1740,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=9,
+ ["grasp_gold_reward"]={
+ ["value"]=150400,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=16,
+ ["unit"]=0
+ }
+ },
+ [166]={
+ ["next_chapter"]=167,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29276,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=2928,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1750,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=153550,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1750,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=9,
+ ["grasp_gold_reward"]={
+ ["value"]=150400,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=16,
+ ["unit"]=0
+ }
+ },
+ [167]={
+ ["next_chapter"]=168,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29808,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=2981,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1760,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=155310,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1760,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=9,
+ ["grasp_gold_reward"]={
+ ["value"]=150400,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=16,
+ ["unit"]=0
+ }
+ },
+ [168]={
+ ["next_chapter"]=169,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30347,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=3035,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1770,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=157080,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1770,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=9,
+ ["grasp_gold_reward"]={
+ ["value"]=150400,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=16,
+ ["unit"]=0
+ }
+ },
+ [169]={
+ ["next_chapter"]=170,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30892,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=3089,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1780,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=158860,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1780,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=9,
+ ["grasp_gold_reward"]={
+ ["value"]=150400,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=16,
+ ["unit"]=0
+ }
+ },
+ [170]={
+ ["next_chapter"]=171,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=31444,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=3144,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1790,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=160650,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1790,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=9,
+ ["grasp_gold_reward"]={
+ ["value"]=168300,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=17,
+ ["unit"]=0
+ }
+ },
+ [171]={
+ ["next_chapter"]=172,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=32002,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=3200,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1800,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=162450,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1800,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=9,
+ ["grasp_gold_reward"]={
+ ["value"]=168300,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=17,
+ ["unit"]=0
+ }
+ },
+ [172]={
+ ["next_chapter"]=173,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=32567,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=3257,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1810,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=164260,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1810,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=9,
+ ["grasp_gold_reward"]={
+ ["value"]=168300,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=17,
+ ["unit"]=0
+ }
+ },
+ [173]={
+ ["next_chapter"]=174,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=33138,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=3314,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1820,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=166080,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1820,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=9,
+ ["grasp_gold_reward"]={
+ ["value"]=168300,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=17,
+ ["unit"]=0
+ }
+ },
+ [174]={
+ ["next_chapter"]=175,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=33716,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=3372,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1830,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=167910,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1830,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=9,
+ ["grasp_gold_reward"]={
+ ["value"]=168300,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=17,
+ ["unit"]=0
+ }
+ },
+ [175]={
+ ["next_chapter"]=176,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=34300,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=3430,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1840,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=169750,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1840,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=9,
+ ["grasp_gold_reward"]={
+ ["value"]=168300,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=17,
+ ["unit"]=0
+ }
+ },
+ [176]={
+ ["next_chapter"]=177,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=34892,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=3489,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1850,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=171600,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1850,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=9,
+ ["grasp_gold_reward"]={
+ ["value"]=168300,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=17,
+ ["unit"]=0
+ }
+ },
+ [177]={
+ ["next_chapter"]=178,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=35490,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=3549,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1860,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=173460,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1860,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=9,
+ ["grasp_gold_reward"]={
+ ["value"]=168300,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=17,
+ ["unit"]=0
+ }
+ },
+ [178]={
+ ["next_chapter"]=179,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=36095,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=3610,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1870,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=175330,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1870,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=9,
+ ["grasp_gold_reward"]={
+ ["value"]=168300,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=17,
+ ["unit"]=0
+ }
+ },
+ [179]={
+ ["next_chapter"]=180,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=36707,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=3671,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1880,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=177210,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1880,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=9,
+ ["grasp_gold_reward"]={
+ ["value"]=168300,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=17,
+ ["unit"]=0
+ }
+ },
+ [180]={
+ ["next_chapter"]=181,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=37325,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=3733,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1890,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=179100,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1890,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=9,
+ ["grasp_gold_reward"]={
+ ["value"]=187200,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=18,
+ ["unit"]=0
+ }
+ },
+ [181]={
+ ["next_chapter"]=182,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=37951,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=3795,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1900,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=181000,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1900,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=10,
+ ["grasp_gold_reward"]={
+ ["value"]=187200,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=18,
+ ["unit"]=0
+ }
+ },
+ [182]={
+ ["next_chapter"]=183,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=38583,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=3858,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1910,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=182910,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1910,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=10,
+ ["grasp_gold_reward"]={
+ ["value"]=187200,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=18,
+ ["unit"]=0
+ }
+ },
+ [183]={
+ ["next_chapter"]=184,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=39223,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=3922,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1920,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=184830,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1920,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=10,
+ ["grasp_gold_reward"]={
+ ["value"]=187200,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=18,
+ ["unit"]=0
+ }
+ },
+ [184]={
+ ["next_chapter"]=185,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=39869,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=3987,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1930,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=186760,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1930,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=10,
+ ["grasp_gold_reward"]={
+ ["value"]=187200,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=18,
+ ["unit"]=0
+ }
+ },
+ [185]={
+ ["next_chapter"]=186,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=40523,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=4052,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1940,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=188700,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1940,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=10,
+ ["grasp_gold_reward"]={
+ ["value"]=187200,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=18,
+ ["unit"]=0
+ }
+ },
+ [186]={
+ ["next_chapter"]=187,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=41184,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=4118,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1950,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=190650,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1950,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=10,
+ ["grasp_gold_reward"]={
+ ["value"]=187200,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=18,
+ ["unit"]=0
+ }
+ },
+ [187]={
+ ["next_chapter"]=188,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=41851,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=4185,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1960,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=192610,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1960,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=10,
+ ["grasp_gold_reward"]={
+ ["value"]=187200,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=18,
+ ["unit"]=0
+ }
+ },
+ [188]={
+ ["next_chapter"]=189,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=42526,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=4253,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1970,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=194580,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1970,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=10,
+ ["grasp_gold_reward"]={
+ ["value"]=187200,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=18,
+ ["unit"]=0
+ }
+ },
+ [189]={
+ ["next_chapter"]=190,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=43209,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=4321,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1980,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=196560,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1980,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=10,
+ ["grasp_gold_reward"]={
+ ["value"]=187200,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=18,
+ ["unit"]=0
+ }
+ },
+ [190]={
+ ["next_chapter"]=191,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=43898,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=4390,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=1990,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=198550,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=1990,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=10,
+ ["grasp_gold_reward"]={
+ ["value"]=207100,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=19,
+ ["unit"]=0
+ }
+ },
+ [191]={
+ ["next_chapter"]=192,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=44595,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=4460,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=200550,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=10,
+ ["grasp_gold_reward"]={
+ ["value"]=207100,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=19,
+ ["unit"]=0
+ }
+ },
+ [192]={
+ ["next_chapter"]=193,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=45299,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=4530,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2010,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=202560,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2010,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=10,
+ ["grasp_gold_reward"]={
+ ["value"]=207100,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=19,
+ ["unit"]=0
+ }
+ },
+ [193]={
+ ["next_chapter"]=194,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=46010,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=4601,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2020,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=204580,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2020,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=10,
+ ["grasp_gold_reward"]={
+ ["value"]=207100,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=19,
+ ["unit"]=0
+ }
+ },
+ [194]={
+ ["next_chapter"]=195,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=46729,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=4673,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2030,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=206610,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2030,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=10,
+ ["grasp_gold_reward"]={
+ ["value"]=207100,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=19,
+ ["unit"]=0
+ }
+ },
+ [195]={
+ ["next_chapter"]=196,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=47456,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=4746,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2040,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=208650,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2040,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=10,
+ ["grasp_gold_reward"]={
+ ["value"]=207100,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=19,
+ ["unit"]=0
+ }
+ },
+ [196]={
+ ["next_chapter"]=197,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=48190,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=4819,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2050,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=210700,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2050,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=10,
+ ["grasp_gold_reward"]={
+ ["value"]=207100,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=19,
+ ["unit"]=0
+ }
+ },
+ [197]={
+ ["next_chapter"]=198,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=48931,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=4893,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2060,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=212760,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2060,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=10,
+ ["grasp_gold_reward"]={
+ ["value"]=207100,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=19,
+ ["unit"]=0
+ }
+ },
+ [198]={
+ ["next_chapter"]=199,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=49680,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=4968,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2070,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=214830,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2070,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=10,
+ ["grasp_gold_reward"]={
+ ["value"]=207100,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=19,
+ ["unit"]=0
+ }
+ },
+ [199]={
+ ["next_chapter"]=200,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=50436,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=5044,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2080,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=216910,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2080,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=10,
+ ["grasp_gold_reward"]={
+ ["value"]=207100,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=19,
+ ["unit"]=0
+ }
+ },
+ [200]={
+ ["next_chapter"]=201,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=51200,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=5120,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2090,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=219000,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2090,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=10,
+ ["grasp_gold_reward"]={
+ ["value"]=228000,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=20,
+ ["unit"]=0
+ }
+ },
+ [201]={
+ ["next_chapter"]=202,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=51972,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=5197,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2100,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=221100,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2100,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=11,
+ ["grasp_gold_reward"]={
+ ["value"]=228000,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=20,
+ ["unit"]=0
+ }
+ },
+ [202]={
+ ["next_chapter"]=203,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=52752,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=5275,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2110,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=223210,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2110,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=11,
+ ["grasp_gold_reward"]={
+ ["value"]=228000,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=20,
+ ["unit"]=0
+ }
+ },
+ [203]={
+ ["next_chapter"]=204,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=53539,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=5354,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2120,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=225330,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2120,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=11,
+ ["grasp_gold_reward"]={
+ ["value"]=228000,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=20,
+ ["unit"]=0
+ }
+ },
+ [204]={
+ ["next_chapter"]=205,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=54334,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=5433,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2130,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=227460,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2130,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=11,
+ ["grasp_gold_reward"]={
+ ["value"]=228000,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=20,
+ ["unit"]=0
+ }
+ },
+ [205]={
+ ["next_chapter"]=206,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=55137,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=5514,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2140,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=229600,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2140,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=11,
+ ["grasp_gold_reward"]={
+ ["value"]=228000,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=20,
+ ["unit"]=0
+ }
+ },
+ [206]={
+ ["next_chapter"]=207,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=55948,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=5595,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2150,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=231750,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2150,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=11,
+ ["grasp_gold_reward"]={
+ ["value"]=228000,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=20,
+ ["unit"]=0
+ }
+ },
+ [207]={
+ ["next_chapter"]=208,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=56767,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=5677,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2160,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=233910,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2160,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=11,
+ ["grasp_gold_reward"]={
+ ["value"]=228000,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=20,
+ ["unit"]=0
+ }
+ },
+ [208]={
+ ["next_chapter"]=209,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=57594,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=5759,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2170,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=236080,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2170,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=11,
+ ["grasp_gold_reward"]={
+ ["value"]=228000,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=20,
+ ["unit"]=0
+ }
+ },
+ [209]={
+ ["next_chapter"]=210,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=58428,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=5843,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2180,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=238260,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2180,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=11,
+ ["grasp_gold_reward"]={
+ ["value"]=228000,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=20,
+ ["unit"]=0
+ }
+ },
+ [210]={
+ ["next_chapter"]=211,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=59271,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=5927,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2190,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=240450,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2190,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=11,
+ ["grasp_gold_reward"]={
+ ["value"]=249900,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=21,
+ ["unit"]=0
+ }
+ },
+ [211]={
+ ["next_chapter"]=212,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60122,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=6012,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2200,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=242650,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2200,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=11,
+ ["grasp_gold_reward"]={
+ ["value"]=249900,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=21,
+ ["unit"]=0
+ }
+ },
+ [212]={
+ ["next_chapter"]=213,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60981,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=6098,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2210,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=244860,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2210,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=11,
+ ["grasp_gold_reward"]={
+ ["value"]=249900,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=21,
+ ["unit"]=0
+ }
+ },
+ [213]={
+ ["next_chapter"]=214,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=61848,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=6185,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2220,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=247080,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2220,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=11,
+ ["grasp_gold_reward"]={
+ ["value"]=249900,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=21,
+ ["unit"]=0
+ }
+ },
+ [214]={
+ ["next_chapter"]=215,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=62723,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=6272,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2230,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=249310,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2230,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=11,
+ ["grasp_gold_reward"]={
+ ["value"]=249900,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=21,
+ ["unit"]=0
+ }
+ },
+ [215]={
+ ["next_chapter"]=216,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=63606,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=6361,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2240,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=251550,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2240,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=11,
+ ["grasp_gold_reward"]={
+ ["value"]=249900,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=21,
+ ["unit"]=0
+ }
+ },
+ [216]={
+ ["next_chapter"]=217,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=64498,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=6450,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2250,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=253800,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2250,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=11,
+ ["grasp_gold_reward"]={
+ ["value"]=249900,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=21,
+ ["unit"]=0
+ }
+ },
+ [217]={
+ ["next_chapter"]=218,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=65398,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=6540,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2260,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=256060,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2260,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=11,
+ ["grasp_gold_reward"]={
+ ["value"]=249900,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=21,
+ ["unit"]=0
+ }
+ },
+ [218]={
+ ["next_chapter"]=219,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=66306,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=6631,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2270,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=258330,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2270,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=11,
+ ["grasp_gold_reward"]={
+ ["value"]=249900,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=21,
+ ["unit"]=0
+ }
+ },
+ [219]={
+ ["next_chapter"]=220,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=67223,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=6722,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2280,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=260610,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2280,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=11,
+ ["grasp_gold_reward"]={
+ ["value"]=249900,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=21,
+ ["unit"]=0
+ }
+ },
+ [220]={
+ ["next_chapter"]=221,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=68148,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=6815,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2290,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=262900,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2290,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=11,
+ ["grasp_gold_reward"]={
+ ["value"]=272800,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=22,
+ ["unit"]=0
+ }
+ },
+ [221]={
+ ["next_chapter"]=222,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=69081,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=6908,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2300,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=265200,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2300,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=12,
+ ["grasp_gold_reward"]={
+ ["value"]=272800,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=22,
+ ["unit"]=0
+ }
+ },
+ [222]={
+ ["next_chapter"]=223,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=70023,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=7002,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2310,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=267510,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2310,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=12,
+ ["grasp_gold_reward"]={
+ ["value"]=272800,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=22,
+ ["unit"]=0
+ }
+ },
+ [223]={
+ ["next_chapter"]=224,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=70974,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=7097,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2320,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=269830,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2320,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=12,
+ ["grasp_gold_reward"]={
+ ["value"]=272800,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=22,
+ ["unit"]=0
+ }
+ },
+ [224]={
+ ["next_chapter"]=225,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=71933,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=7193,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2330,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=272160,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2330,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=12,
+ ["grasp_gold_reward"]={
+ ["value"]=272800,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=22,
+ ["unit"]=0
+ }
+ },
+ [225]={
+ ["next_chapter"]=226,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=72900,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=7290,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2340,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=274500,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2340,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=12,
+ ["grasp_gold_reward"]={
+ ["value"]=272800,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=22,
+ ["unit"]=0
+ }
+ },
+ [226]={
+ ["next_chapter"]=227,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=73877,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=7388,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2350,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=276850,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2350,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=12,
+ ["grasp_gold_reward"]={
+ ["value"]=272800,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=22,
+ ["unit"]=0
+ }
+ },
+ [227]={
+ ["next_chapter"]=228,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=74862,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=7486,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2360,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=279210,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2360,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=12,
+ ["grasp_gold_reward"]={
+ ["value"]=272800,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=22,
+ ["unit"]=0
+ }
+ },
+ [228]={
+ ["next_chapter"]=229,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=75856,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=7586,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2370,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=281580,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2370,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=12,
+ ["grasp_gold_reward"]={
+ ["value"]=272800,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=22,
+ ["unit"]=0
+ }
+ },
+ [229]={
+ ["next_chapter"]=230,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=76858,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=7686,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2380,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=283960,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2380,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=12,
+ ["grasp_gold_reward"]={
+ ["value"]=272800,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=22,
+ ["unit"]=0
+ }
+ },
+ [230]={
+ ["next_chapter"]=231,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=77869,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=7787,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2390,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=286350,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2390,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=12,
+ ["grasp_gold_reward"]={
+ ["value"]=296700,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=23,
+ ["unit"]=0
+ }
+ },
+ [231]={
+ ["next_chapter"]=232,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=78889,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=7889,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2400,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=288750,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2400,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=12,
+ ["grasp_gold_reward"]={
+ ["value"]=296700,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=23,
+ ["unit"]=0
+ }
+ },
+ [232]={
+ ["next_chapter"]=233,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=79918,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=7992,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2410,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=291160,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2410,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=12,
+ ["grasp_gold_reward"]={
+ ["value"]=296700,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=23,
+ ["unit"]=0
+ }
+ },
+ [233]={
+ ["next_chapter"]=234,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=80956,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=8096,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2420,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=293580,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2420,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=12,
+ ["grasp_gold_reward"]={
+ ["value"]=296700,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=23,
+ ["unit"]=0
+ }
+ },
+ [234]={
+ ["next_chapter"]=235,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=82003,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=8200,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2430,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=296010,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2430,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=12,
+ ["grasp_gold_reward"]={
+ ["value"]=296700,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=23,
+ ["unit"]=0
+ }
+ },
+ [235]={
+ ["next_chapter"]=236,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=83059,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=8306,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2440,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=298450,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2440,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=12,
+ ["grasp_gold_reward"]={
+ ["value"]=296700,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=23,
+ ["unit"]=0
+ }
+ },
+ [236]={
+ ["next_chapter"]=237,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=84124,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=8412,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2450,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=300900,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2450,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=12,
+ ["grasp_gold_reward"]={
+ ["value"]=296700,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=23,
+ ["unit"]=0
+ }
+ },
+ [237]={
+ ["next_chapter"]=238,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=85198,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=8520,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2460,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=303360,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2460,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=12,
+ ["grasp_gold_reward"]={
+ ["value"]=296700,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=23,
+ ["unit"]=0
+ }
+ },
+ [238]={
+ ["next_chapter"]=239,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=86281,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=8628,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2470,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=305830,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2470,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=12,
+ ["grasp_gold_reward"]={
+ ["value"]=296700,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=23,
+ ["unit"]=0
+ }
+ },
+ [239]={
+ ["next_chapter"]=240,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=87373,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=8737,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2480,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=308310,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2480,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=12,
+ ["grasp_gold_reward"]={
+ ["value"]=296700,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=23,
+ ["unit"]=0
+ }
+ },
+ [240]={
+ ["next_chapter"]=241,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=88474,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=8847,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2490,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=310800,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2490,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=12,
+ ["grasp_gold_reward"]={
+ ["value"]=321600,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=24,
+ ["unit"]=0
+ }
+ },
+ [241]={
+ ["next_chapter"]=242,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=89585,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=8959,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2500,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=313300,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2500,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=13,
+ ["grasp_gold_reward"]={
+ ["value"]=321600,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=24,
+ ["unit"]=0
+ }
+ },
+ [242]={
+ ["next_chapter"]=243,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=90704,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=9070,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2510,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=315810,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2510,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=13,
+ ["grasp_gold_reward"]={
+ ["value"]=321600,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=24,
+ ["unit"]=0
+ }
+ },
+ [243]={
+ ["next_chapter"]=244,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=91834,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=9183,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2520,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=318330,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2520,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=13,
+ ["grasp_gold_reward"]={
+ ["value"]=321600,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=24,
+ ["unit"]=0
+ }
+ },
+ [244]={
+ ["next_chapter"]=245,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=92972,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=9297,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2530,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=320860,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2530,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=13,
+ ["grasp_gold_reward"]={
+ ["value"]=321600,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=24,
+ ["unit"]=0
+ }
+ },
+ [245]={
+ ["next_chapter"]=246,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=94120,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=9412,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2540,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=323400,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2540,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=13,
+ ["grasp_gold_reward"]={
+ ["value"]=321600,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=24,
+ ["unit"]=0
+ }
+ },
+ [246]={
+ ["next_chapter"]=247,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=95277,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=9528,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2550,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=325950,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2550,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=13,
+ ["grasp_gold_reward"]={
+ ["value"]=321600,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=24,
+ ["unit"]=0
+ }
+ },
+ [247]={
+ ["next_chapter"]=248,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=96444,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=9644,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2560,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=328510,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2560,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=13,
+ ["grasp_gold_reward"]={
+ ["value"]=321600,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=24,
+ ["unit"]=0
+ }
+ },
+ [248]={
+ ["next_chapter"]=249,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=97620,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=9762,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2570,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=331080,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2570,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=13,
+ ["grasp_gold_reward"]={
+ ["value"]=321600,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=24,
+ ["unit"]=0
+ }
+ },
+ [249]={
+ ["next_chapter"]=250,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=98805,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=9881,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2580,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=333660,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2580,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=13,
+ ["grasp_gold_reward"]={
+ ["value"]=321600,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=24,
+ ["unit"]=0
+ }
+ },
+ [250]={
+ ["next_chapter"]=251,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=11000,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2590,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=336250,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2590,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=13,
+ ["grasp_gold_reward"]={
+ ["value"]=347500,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=25,
+ ["unit"]=0
+ }
+ },
+ [251]={
+ ["next_chapter"]=252,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=100007,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=11001,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2600,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=338850,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2600,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=13,
+ ["grasp_gold_reward"]={
+ ["value"]=347500,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=25,
+ ["unit"]=0
+ }
+ },
+ [252]={
+ ["next_chapter"]=253,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=100052,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=11006,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2610,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=341460,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2610,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=13,
+ ["grasp_gold_reward"]={
+ ["value"]=347500,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=25,
+ ["unit"]=0
+ }
+ },
+ [253]={
+ ["next_chapter"]=254,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=100176,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=11019,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2620,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=344080,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2620,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=13,
+ ["grasp_gold_reward"]={
+ ["value"]=347500,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=25,
+ ["unit"]=0
+ }
+ },
+ [254]={
+ ["next_chapter"]=255,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=100416,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=11046,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2630,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=346710,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2630,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=13,
+ ["grasp_gold_reward"]={
+ ["value"]=347500,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=25,
+ ["unit"]=0
+ }
+ },
+ [255]={
+ ["next_chapter"]=256,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=100812,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=11089,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2640,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=349350,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2640,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=13,
+ ["grasp_gold_reward"]={
+ ["value"]=347500,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=25,
+ ["unit"]=0
+ }
+ },
+ [256]={
+ ["next_chapter"]=257,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=101402,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=11154,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2650,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=352000,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2650,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=13,
+ ["grasp_gold_reward"]={
+ ["value"]=347500,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=25,
+ ["unit"]=0
+ }
+ },
+ [257]={
+ ["next_chapter"]=258,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=102226,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=11245,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2660,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=354660,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2660,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=13,
+ ["grasp_gold_reward"]={
+ ["value"]=347500,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=25,
+ ["unit"]=0
+ }
+ },
+ [258]={
+ ["next_chapter"]=259,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=103323,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=11366,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2670,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=357330,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2670,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=13,
+ ["grasp_gold_reward"]={
+ ["value"]=347500,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=25,
+ ["unit"]=0
+ }
+ },
+ [259]={
+ ["next_chapter"]=260,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=104731,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=11520,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2680,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=360010,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2680,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=13,
+ ["grasp_gold_reward"]={
+ ["value"]=347500,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=25,
+ ["unit"]=0
+ }
+ },
+ [260]={
+ ["next_chapter"]=261,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=106489,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=11714,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2690,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=362700,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2690,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=13,
+ ["grasp_gold_reward"]={
+ ["value"]=374400,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=26,
+ ["unit"]=0
+ }
+ },
+ [261]={
+ ["next_chapter"]=262,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=108637,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=11950,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2700,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=365400,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2700,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=14,
+ ["grasp_gold_reward"]={
+ ["value"]=374400,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=26,
+ ["unit"]=0
+ }
+ },
+ [262]={
+ ["next_chapter"]=263,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=111213,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=12233,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2710,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=368110,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2710,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=14,
+ ["grasp_gold_reward"]={
+ ["value"]=374400,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=26,
+ ["unit"]=0
+ }
+ },
+ [263]={
+ ["next_chapter"]=264,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=114257,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=12568,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2720,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=370830,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2720,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=14,
+ ["grasp_gold_reward"]={
+ ["value"]=374400,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=26,
+ ["unit"]=0
+ }
+ },
+ [264]={
+ ["next_chapter"]=265,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=117806,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=12959,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2730,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=373560,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2730,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=14,
+ ["grasp_gold_reward"]={
+ ["value"]=374400,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=26,
+ ["unit"]=0
+ }
+ },
+ [265]={
+ ["next_chapter"]=266,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=121900,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=13409,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2740,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=376300,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2740,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=14,
+ ["grasp_gold_reward"]={
+ ["value"]=374400,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=26,
+ ["unit"]=0
+ }
+ },
+ [266]={
+ ["next_chapter"]=267,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=126579,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=13924,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2750,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=379050,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2750,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=14,
+ ["grasp_gold_reward"]={
+ ["value"]=374400,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=26,
+ ["unit"]=0
+ }
+ },
+ [267]={
+ ["next_chapter"]=268,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=131880,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=14507,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2760,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=381810,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2760,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=14,
+ ["grasp_gold_reward"]={
+ ["value"]=374400,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=26,
+ ["unit"]=0
+ }
+ },
+ [268]={
+ ["next_chapter"]=269,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=137844,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=15163,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2770,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=384580,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2770,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=14,
+ ["grasp_gold_reward"]={
+ ["value"]=374400,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=26,
+ ["unit"]=0
+ }
+ },
+ [269]={
+ ["next_chapter"]=270,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=144508,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=15896,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2780,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=387360,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2780,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=14,
+ ["grasp_gold_reward"]={
+ ["value"]=374400,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=26,
+ ["unit"]=0
+ }
+ },
+ [270]={
+ ["next_chapter"]=271,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=151912,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=16710,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2790,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=390150,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2790,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=14,
+ ["grasp_gold_reward"]={
+ ["value"]=402300,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=27,
+ ["unit"]=0
+ }
+ },
+ [271]={
+ ["next_chapter"]=272,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=160094,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=17610,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2800,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=392950,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2800,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=14,
+ ["grasp_gold_reward"]={
+ ["value"]=402300,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=27,
+ ["unit"]=0
+ }
+ },
+ [272]={
+ ["next_chapter"]=273,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=169094,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=18600,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2810,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=395760,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2810,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=14,
+ ["grasp_gold_reward"]={
+ ["value"]=402300,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=27,
+ ["unit"]=0
+ }
+ },
+ [273]={
+ ["next_chapter"]=274,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=178951,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=19685,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2820,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=398580,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2820,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=14,
+ ["grasp_gold_reward"]={
+ ["value"]=402300,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=27,
+ ["unit"]=0
+ }
+ },
+ [274]={
+ ["next_chapter"]=275,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=189703,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=20867,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2830,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=401410,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2830,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=14,
+ ["grasp_gold_reward"]={
+ ["value"]=402300,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=27,
+ ["unit"]=0
+ }
+ },
+ [275]={
+ ["next_chapter"]=276,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=201389,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=22153,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2840,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=404250,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2840,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=14,
+ ["grasp_gold_reward"]={
+ ["value"]=402300,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=27,
+ ["unit"]=0
+ }
+ },
+ [276]={
+ ["next_chapter"]=277,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=214049,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=23545,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2850,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=407100,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2850,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=14,
+ ["grasp_gold_reward"]={
+ ["value"]=402300,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=27,
+ ["unit"]=0
+ }
+ },
+ [277]={
+ ["next_chapter"]=278,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=227721,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=25049,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2860,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=409960,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2860,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=14,
+ ["grasp_gold_reward"]={
+ ["value"]=402300,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=27,
+ ["unit"]=0
+ }
+ },
+ [278]={
+ ["next_chapter"]=279,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=242445,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=26669,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2870,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=412830,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2870,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=14,
+ ["grasp_gold_reward"]={
+ ["value"]=402300,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=27,
+ ["unit"]=0
+ }
+ },
+ [279]={
+ ["next_chapter"]=280,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=258258,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=28408,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2880,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=415710,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2880,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=14,
+ ["grasp_gold_reward"]={
+ ["value"]=402300,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=27,
+ ["unit"]=0
+ }
+ },
+ [280]={
+ ["next_chapter"]=281,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=275200,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=30272,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2890,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=418600,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2890,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=14,
+ ["grasp_gold_reward"]={
+ ["value"]=431200,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=28,
+ ["unit"]=0
+ }
+ },
+ [281]={
+ ["next_chapter"]=282,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=293311,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=32264,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2900,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=421500,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2900,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=15,
+ ["grasp_gold_reward"]={
+ ["value"]=431200,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=28,
+ ["unit"]=0
+ }
+ },
+ [282]={
+ ["next_chapter"]=283,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=312628,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=34389,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2910,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=424410,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2910,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=15,
+ ["grasp_gold_reward"]={
+ ["value"]=431200,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=28,
+ ["unit"]=0
+ }
+ },
+ [283]={
+ ["next_chapter"]=284,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=333192,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=36651,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2920,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=427330,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2920,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=15,
+ ["grasp_gold_reward"]={
+ ["value"]=431200,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=28,
+ ["unit"]=0
+ }
+ },
+ [284]={
+ ["next_chapter"]=285,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=355040,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=39054,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2930,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=430260,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2930,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=15,
+ ["grasp_gold_reward"]={
+ ["value"]=431200,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=28,
+ ["unit"]=0
+ }
+ },
+ [285]={
+ ["next_chapter"]=286,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=378212,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=41603,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2940,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=433200,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2940,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=15,
+ ["grasp_gold_reward"]={
+ ["value"]=431200,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=28,
+ ["unit"]=0
+ }
+ },
+ [286]={
+ ["next_chapter"]=287,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=402746,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=44302,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2950,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=436150,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2950,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=15,
+ ["grasp_gold_reward"]={
+ ["value"]=431200,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=28,
+ ["unit"]=0
+ }
+ },
+ [287]={
+ ["next_chapter"]=288,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=428682,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=47155,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2960,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=439110,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2960,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=15,
+ ["grasp_gold_reward"]={
+ ["value"]=431200,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=28,
+ ["unit"]=0
+ }
+ },
+ [288]={
+ ["next_chapter"]=289,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=456059,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=50166,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2970,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=442080,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2970,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=15,
+ ["grasp_gold_reward"]={
+ ["value"]=431200,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=28,
+ ["unit"]=0
+ }
+ },
+ [289]={
+ ["next_chapter"]=290,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=484915,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=53341,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2980,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=445060,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2980,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=15,
+ ["grasp_gold_reward"]={
+ ["value"]=431200,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=28,
+ ["unit"]=0
+ }
+ },
+ [290]={
+ ["next_chapter"]=291,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=515289,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=56682,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=2990,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=448050,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=2990,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=15,
+ ["grasp_gold_reward"]={
+ ["value"]=461100,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=29,
+ ["unit"]=0
+ }
+ },
+ [291]={
+ ["next_chapter"]=292,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=547221,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=60194,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=451050,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=15,
+ ["grasp_gold_reward"]={
+ ["value"]=461100,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=29,
+ ["unit"]=0
+ }
+ },
+ [292]={
+ ["next_chapter"]=293,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=580749,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=63882,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3010,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=454060,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3010,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=15,
+ ["grasp_gold_reward"]={
+ ["value"]=461100,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=29,
+ ["unit"]=0
+ }
+ },
+ [293]={
+ ["next_chapter"]=294,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=615913,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=67750,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3020,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=457080,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3020,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=15,
+ ["grasp_gold_reward"]={
+ ["value"]=461100,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=29,
+ ["unit"]=0
+ }
+ },
+ [294]={
+ ["next_chapter"]=295,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=652750,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=71803,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3030,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=460110,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3030,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=15,
+ ["grasp_gold_reward"]={
+ ["value"]=461100,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=29,
+ ["unit"]=0
+ }
+ },
+ [295]={
+ ["next_chapter"]=296,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=691300,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=76043,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3040,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=463150,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3040,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=15,
+ ["grasp_gold_reward"]={
+ ["value"]=461100,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=29,
+ ["unit"]=0
+ }
+ },
+ [296]={
+ ["next_chapter"]=297,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=731603,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=80476,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3050,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=466200,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3050,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=15,
+ ["grasp_gold_reward"]={
+ ["value"]=461100,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=29,
+ ["unit"]=0
+ }
+ },
+ [297]={
+ ["next_chapter"]=298,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=773696,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=85107,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3060,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=469260,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3060,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=15,
+ ["grasp_gold_reward"]={
+ ["value"]=461100,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=29,
+ ["unit"]=0
+ }
+ },
+ [298]={
+ ["next_chapter"]=299,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=817620,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=89938,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3070,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=472330,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3070,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=15,
+ ["grasp_gold_reward"]={
+ ["value"]=461100,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=29,
+ ["unit"]=0
+ }
+ },
+ [299]={
+ ["next_chapter"]=300,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=863412,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=94975,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3080,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=475410,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3080,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=15,
+ ["grasp_gold_reward"]={
+ ["value"]=461100,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=29,
+ ["unit"]=0
+ }
+ },
+ [300]={
+ ["next_chapter"]=301,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=911112,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=100222,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3090,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=478500,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3090,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=15,
+ ["grasp_gold_reward"]={
+ ["value"]=492000,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=30,
+ ["unit"]=0
+ }
+ },
+ [301]={
+ ["next_chapter"]=302,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=960758,
+ ["unit"]=0
+ },
+ ["hp_coefficient"]={
+ ["value"]=105683,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3100,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=481600,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3100,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=16,
+ ["grasp_gold_reward"]={
+ ["value"]=492000,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=30,
+ ["unit"]=0
+ }
+ },
+ [302]={
+ ["next_chapter"]=303,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1012,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=111363,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3110,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=484710,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3110,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=16,
+ ["grasp_gold_reward"]={
+ ["value"]=492000,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=30,
+ ["unit"]=0
+ }
+ },
+ [303]={
+ ["next_chapter"]=304,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1066,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=117265,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3120,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=487830,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3120,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=16,
+ ["grasp_gold_reward"]={
+ ["value"]=492000,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=30,
+ ["unit"]=0
+ }
+ },
+ [304]={
+ ["next_chapter"]=305,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1122,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=123394,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3130,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=490960,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3130,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=16,
+ ["grasp_gold_reward"]={
+ ["value"]=492000,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=30,
+ ["unit"]=0
+ }
+ },
+ [305]={
+ ["next_chapter"]=306,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1180,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=129755,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3140,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=494100,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3140,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=16,
+ ["grasp_gold_reward"]={
+ ["value"]=492000,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=30,
+ ["unit"]=0
+ }
+ },
+ [306]={
+ ["next_chapter"]=307,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1240,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=136351,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3150,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=497250,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3150,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=16,
+ ["grasp_gold_reward"]={
+ ["value"]=492000,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=30,
+ ["unit"]=0
+ }
+ },
+ [307]={
+ ["next_chapter"]=308,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1302,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=143187,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3160,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=500410,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3160,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=16,
+ ["grasp_gold_reward"]={
+ ["value"]=492000,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=30,
+ ["unit"]=0
+ }
+ },
+ [308]={
+ ["next_chapter"]=309,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1366,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=150267,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3170,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=503580,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3170,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=16,
+ ["grasp_gold_reward"]={
+ ["value"]=492000,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=30,
+ ["unit"]=0
+ }
+ },
+ [309]={
+ ["next_chapter"]=310,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1433,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=157595,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3180,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=506760,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3180,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=16,
+ ["grasp_gold_reward"]={
+ ["value"]=492000,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=30,
+ ["unit"]=0
+ }
+ },
+ [310]={
+ ["next_chapter"]=311,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=1502,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=165176,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3190,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=509950,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3190,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=16,
+ ["grasp_gold_reward"]={
+ ["value"]=523900,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=31,
+ ["unit"]=0
+ }
+ },
+ [311]={
+ ["next_chapter"]=312,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1573,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=173014,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3200,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=513150,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3200,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=16,
+ ["grasp_gold_reward"]={
+ ["value"]=523900,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=31,
+ ["unit"]=0
+ }
+ },
+ [312]={
+ ["next_chapter"]=313,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1646,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=181113,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3210,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=516360,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3210,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=16,
+ ["grasp_gold_reward"]={
+ ["value"]=523900,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=31,
+ ["unit"]=0
+ }
+ },
+ [313]={
+ ["next_chapter"]=314,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1723,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=189478,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3220,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=519580,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3220,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=16,
+ ["grasp_gold_reward"]={
+ ["value"]=523900,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=31,
+ ["unit"]=0
+ }
+ },
+ [314]={
+ ["next_chapter"]=315,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1801,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=198113,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3230,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=522810,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3230,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=16,
+ ["grasp_gold_reward"]={
+ ["value"]=523900,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=31,
+ ["unit"]=0
+ }
+ },
+ [315]={
+ ["next_chapter"]=316,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1882,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=207021,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3240,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=526050,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3240,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=16,
+ ["grasp_gold_reward"]={
+ ["value"]=523900,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=31,
+ ["unit"]=0
+ }
+ },
+ [316]={
+ ["next_chapter"]=317,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1966,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=216208,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3250,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=529300,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3250,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=16,
+ ["grasp_gold_reward"]={
+ ["value"]=523900,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=31,
+ ["unit"]=0
+ }
+ },
+ [317]={
+ ["next_chapter"]=318,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2052,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=225678,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3260,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=532560,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3260,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=16,
+ ["grasp_gold_reward"]={
+ ["value"]=523900,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=31,
+ ["unit"]=0
+ }
+ },
+ [318]={
+ ["next_chapter"]=319,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2140,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=235435,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3270,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=535830,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3270,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=16,
+ ["grasp_gold_reward"]={
+ ["value"]=523900,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=31,
+ ["unit"]=0
+ }
+ },
+ [319]={
+ ["next_chapter"]=320,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2232,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=245482,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3280,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=539110,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3280,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=16,
+ ["grasp_gold_reward"]={
+ ["value"]=523900,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=31,
+ ["unit"]=0
+ }
+ },
+ [320]={
+ ["next_chapter"]=321,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=2326,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=255826,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3290,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=542400,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3290,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=16,
+ ["grasp_gold_reward"]={
+ ["value"]=556800,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=32,
+ ["unit"]=0
+ }
+ },
+ [321]={
+ ["next_chapter"]=322,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2422,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=266469,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3300,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=545700,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3300,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=17,
+ ["grasp_gold_reward"]={
+ ["value"]=556800,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=32,
+ ["unit"]=0
+ }
+ },
+ [322]={
+ ["next_chapter"]=323,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2522,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=277416,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3310,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=549010,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3310,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=17,
+ ["grasp_gold_reward"]={
+ ["value"]=556800,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=32,
+ ["unit"]=0
+ }
+ },
+ [323]={
+ ["next_chapter"]=324,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2624,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=288672,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3320,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=552330,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3320,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=17,
+ ["grasp_gold_reward"]={
+ ["value"]=556800,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=32,
+ ["unit"]=0
+ }
+ },
+ [324]={
+ ["next_chapter"]=325,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2729,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=300240,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3330,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=555660,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3330,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=17,
+ ["grasp_gold_reward"]={
+ ["value"]=556800,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=32,
+ ["unit"]=0
+ }
+ },
+ [325]={
+ ["next_chapter"]=326,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2838,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=312125,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3340,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=559000,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3340,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=17,
+ ["grasp_gold_reward"]={
+ ["value"]=556800,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=32,
+ ["unit"]=0
+ }
+ },
+ [326]={
+ ["next_chapter"]=327,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2948,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=324331,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3350,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=562350,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3350,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=17,
+ ["grasp_gold_reward"]={
+ ["value"]=556800,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=32,
+ ["unit"]=0
+ }
+ },
+ [327]={
+ ["next_chapter"]=328,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3062,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=336863,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3360,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=565710,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3360,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=17,
+ ["grasp_gold_reward"]={
+ ["value"]=556800,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=32,
+ ["unit"]=0
+ }
+ },
+ [328]={
+ ["next_chapter"]=329,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3179,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=349725,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3370,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=569080,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3370,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=17,
+ ["grasp_gold_reward"]={
+ ["value"]=556800,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=32,
+ ["unit"]=0
+ }
+ },
+ [329]={
+ ["next_chapter"]=330,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3299,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=362920,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3380,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=572460,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3380,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=17,
+ ["grasp_gold_reward"]={
+ ["value"]=556800,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=32,
+ ["unit"]=0
+ }
+ },
+ [330]={
+ ["next_chapter"]=331,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=3422,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=376454,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3390,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=575850,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3390,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=17,
+ ["grasp_gold_reward"]={
+ ["value"]=590700,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=33,
+ ["unit"]=0
+ }
+ },
+ [331]={
+ ["next_chapter"]=332,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3548,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=390331,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3400,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=579250,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3400,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=17,
+ ["grasp_gold_reward"]={
+ ["value"]=590700,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=33,
+ ["unit"]=0
+ }
+ },
+ [332]={
+ ["next_chapter"]=333,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3678,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=404554,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3410,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=582660,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3410,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=17,
+ ["grasp_gold_reward"]={
+ ["value"]=590700,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=33,
+ ["unit"]=0
+ }
+ },
+ [333]={
+ ["next_chapter"]=334,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3810,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=419129,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3420,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=586080,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3420,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=17,
+ ["grasp_gold_reward"]={
+ ["value"]=590700,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=33,
+ ["unit"]=0
+ }
+ },
+ [334]={
+ ["next_chapter"]=335,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3946,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=434059,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3430,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=589510,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3430,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=17,
+ ["grasp_gold_reward"]={
+ ["value"]=590700,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=33,
+ ["unit"]=0
+ }
+ },
+ [335]={
+ ["next_chapter"]=336,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4085,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=449349,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3440,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=592950,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3440,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=17,
+ ["grasp_gold_reward"]={
+ ["value"]=590700,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=33,
+ ["unit"]=0
+ }
+ },
+ [336]={
+ ["next_chapter"]=337,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4227,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=465003,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3450,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=596400,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3450,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=17,
+ ["grasp_gold_reward"]={
+ ["value"]=590700,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=33,
+ ["unit"]=0
+ }
+ },
+ [337]={
+ ["next_chapter"]=338,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4373,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=481025,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3460,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=599860,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3460,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=17,
+ ["grasp_gold_reward"]={
+ ["value"]=590700,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=33,
+ ["unit"]=0
+ }
+ },
+ [338]={
+ ["next_chapter"]=339,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4522,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=497420,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3470,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=603330,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3470,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=17,
+ ["grasp_gold_reward"]={
+ ["value"]=590700,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=33,
+ ["unit"]=0
+ }
+ },
+ [339]={
+ ["next_chapter"]=340,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4674,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=514191,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3480,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=606810,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3480,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=17,
+ ["grasp_gold_reward"]={
+ ["value"]=590700,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=33,
+ ["unit"]=0
+ }
+ },
+ [340]={
+ ["next_chapter"]=341,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=4830,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=531344,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3490,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=610300,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3490,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=17,
+ ["grasp_gold_reward"]={
+ ["value"]=625600,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=34,
+ ["unit"]=0
+ }
+ },
+ [341]={
+ ["next_chapter"]=342,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4990,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=548882,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3500,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=613800,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3500,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=17,
+ ["grasp_gold_reward"]={
+ ["value"]=625600,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=34,
+ ["unit"]=0
+ }
+ },
+ [342]={
+ ["next_chapter"]=343,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5153,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=566810,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3510,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=617310,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3510,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=17,
+ ["grasp_gold_reward"]={
+ ["value"]=625600,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=34,
+ ["unit"]=0
+ }
+ },
+ [343]={
+ ["next_chapter"]=344,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5319,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=585132,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3520,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=620830,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3520,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=17,
+ ["grasp_gold_reward"]={
+ ["value"]=625600,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=34,
+ ["unit"]=0
+ }
+ },
+ [344]={
+ ["next_chapter"]=345,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5490,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=603852,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3530,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=624360,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3530,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=17,
+ ["grasp_gold_reward"]={
+ ["value"]=625600,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=34,
+ ["unit"]=0
+ }
+ },
+ [345]={
+ ["next_chapter"]=346,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5663,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=622975,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3540,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=627900,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3540,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=17,
+ ["grasp_gold_reward"]={
+ ["value"]=625600,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=34,
+ ["unit"]=0
+ }
+ },
+ [346]={
+ ["next_chapter"]=347,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5841,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=642505,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3550,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=631450,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3550,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=17,
+ ["grasp_gold_reward"]={
+ ["value"]=625600,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=34,
+ ["unit"]=0
+ }
+ },
+ [347]={
+ ["next_chapter"]=348,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6022,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=662446,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3560,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=635010,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3560,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=17,
+ ["grasp_gold_reward"]={
+ ["value"]=625600,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=34,
+ ["unit"]=0
+ }
+ },
+ [348]={
+ ["next_chapter"]=349,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6207,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=682802,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3570,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=638580,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3570,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=17,
+ ["grasp_gold_reward"]={
+ ["value"]=625600,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=34,
+ ["unit"]=0
+ }
+ },
+ [349]={
+ ["next_chapter"]=350,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6396,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=703578,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3580,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=642160,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3580,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=17,
+ ["grasp_gold_reward"]={
+ ["value"]=625600,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=34,
+ ["unit"]=0
+ }
+ },
+ [350]={
+ ["next_chapter"]=351,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=6589,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=724778,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3590,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=645750,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3590,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=17,
+ ["grasp_gold_reward"]={
+ ["value"]=661500,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=35,
+ ["unit"]=0
+ }
+ },
+ [351]={
+ ["next_chapter"]=352,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6786,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=746406,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3600,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=649350,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3600,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=17,
+ ["grasp_gold_reward"]={
+ ["value"]=661500,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=35,
+ ["unit"]=0
+ }
+ },
+ [352]={
+ ["next_chapter"]=353,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6986,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=768467,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3610,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=652960,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3610,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=17,
+ ["grasp_gold_reward"]={
+ ["value"]=661500,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=35,
+ ["unit"]=0
+ }
+ },
+ [353]={
+ ["next_chapter"]=354,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7191,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=790964,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3620,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=656580,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3620,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=17,
+ ["grasp_gold_reward"]={
+ ["value"]=661500,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=35,
+ ["unit"]=0
+ }
+ },
+ [354]={
+ ["next_chapter"]=355,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7399,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=813903,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3630,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=660210,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3630,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=17,
+ ["grasp_gold_reward"]={
+ ["value"]=661500,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=35,
+ ["unit"]=0
+ }
+ },
+ [355]={
+ ["next_chapter"]=356,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7612,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=837287,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3640,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=663850,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3640,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=17,
+ ["grasp_gold_reward"]={
+ ["value"]=661500,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=35,
+ ["unit"]=0
+ }
+ },
+ [356]={
+ ["next_chapter"]=357,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7828,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=861121,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3650,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=667500,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3650,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=17,
+ ["grasp_gold_reward"]={
+ ["value"]=661500,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=35,
+ ["unit"]=0
+ }
+ },
+ [357]={
+ ["next_chapter"]=358,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8049,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=885408,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3660,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=671160,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3660,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=17,
+ ["grasp_gold_reward"]={
+ ["value"]=661500,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=35,
+ ["unit"]=0
+ }
+ },
+ [358]={
+ ["next_chapter"]=359,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8274,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=910155,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3670,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=674830,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3670,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=17,
+ ["grasp_gold_reward"]={
+ ["value"]=661500,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=35,
+ ["unit"]=0
+ }
+ },
+ [359]={
+ ["next_chapter"]=360,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8503,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=935363,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3680,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=678510,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3680,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=17,
+ ["grasp_gold_reward"]={
+ ["value"]=661500,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=35,
+ ["unit"]=0
+ }
+ },
+ [360]={
+ ["next_chapter"]=361,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=8737,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=961038,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3690,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=682200,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3690,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=17,
+ ["grasp_gold_reward"]={
+ ["value"]=698400,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=36,
+ ["unit"]=0
+ }
+ },
+ [361]={
+ ["next_chapter"]=362,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8974,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=987185,
+ ["unit"]=1
+ },
+ ["gold_reward"]={
+ ["value"]=3700,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=685900,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3700,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=18,
+ ["grasp_gold_reward"]={
+ ["value"]=698400,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=36,
+ ["unit"]=0
+ }
+ },
+ [362]={
+ ["next_chapter"]=363,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9216,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=1014,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=3710,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=689610,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3710,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=18,
+ ["grasp_gold_reward"]={
+ ["value"]=698400,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=36,
+ ["unit"]=0
+ }
+ },
+ [363]={
+ ["next_chapter"]=364,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9463,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=1041,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=3720,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=693330,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3720,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=18,
+ ["grasp_gold_reward"]={
+ ["value"]=698400,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=36,
+ ["unit"]=0
+ }
+ },
+ [364]={
+ ["next_chapter"]=365,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9714,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=1068,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=3730,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=697060,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3730,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=18,
+ ["grasp_gold_reward"]={
+ ["value"]=698400,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=36,
+ ["unit"]=0
+ }
+ },
+ [365]={
+ ["next_chapter"]=366,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9969,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=1097,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=3740,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=700800,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3740,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=18,
+ ["grasp_gold_reward"]={
+ ["value"]=698400,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=36,
+ ["unit"]=0
+ }
+ },
+ [366]={
+ ["next_chapter"]=367,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10228,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=1125,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=3750,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=704550,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3750,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=18,
+ ["grasp_gold_reward"]={
+ ["value"]=698400,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=36,
+ ["unit"]=0
+ }
+ },
+ [367]={
+ ["next_chapter"]=368,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10493,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=1154,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=3760,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=708310,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3760,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=18,
+ ["grasp_gold_reward"]={
+ ["value"]=698400,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=36,
+ ["unit"]=0
+ }
+ },
+ [368]={
+ ["next_chapter"]=369,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10761,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=1184,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=3770,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=712080,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3770,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=18,
+ ["grasp_gold_reward"]={
+ ["value"]=698400,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=36,
+ ["unit"]=0
+ }
+ },
+ [369]={
+ ["next_chapter"]=370,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11035,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=1214,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=3780,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=715860,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3780,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=18,
+ ["grasp_gold_reward"]={
+ ["value"]=698400,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=36,
+ ["unit"]=0
+ }
+ },
+ [370]={
+ ["next_chapter"]=371,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=11313,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=1244,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=3790,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=719650,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3790,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=18,
+ ["grasp_gold_reward"]={
+ ["value"]=736300,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=37,
+ ["unit"]=0
+ }
+ },
+ [371]={
+ ["next_chapter"]=372,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11595,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=1276,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=3800,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=723450,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3800,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=18,
+ ["grasp_gold_reward"]={
+ ["value"]=736300,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=37,
+ ["unit"]=0
+ }
+ },
+ [372]={
+ ["next_chapter"]=373,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11883,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=1307,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=3810,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=727260,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3810,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=18,
+ ["grasp_gold_reward"]={
+ ["value"]=736300,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=37,
+ ["unit"]=0
+ }
+ },
+ [373]={
+ ["next_chapter"]=374,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12175,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=1339,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=3820,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=731080,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3820,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=18,
+ ["grasp_gold_reward"]={
+ ["value"]=736300,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=37,
+ ["unit"]=0
+ }
+ },
+ [374]={
+ ["next_chapter"]=375,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12472,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=1372,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=3830,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=734910,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3830,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=18,
+ ["grasp_gold_reward"]={
+ ["value"]=736300,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=37,
+ ["unit"]=0
+ }
+ },
+ [375]={
+ ["next_chapter"]=376,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12774,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=1405,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=3840,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=738750,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3840,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=18,
+ ["grasp_gold_reward"]={
+ ["value"]=736300,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=37,
+ ["unit"]=0
+ }
+ },
+ [376]={
+ ["next_chapter"]=377,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13080,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=1439,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=3850,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=742600,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3850,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=18,
+ ["grasp_gold_reward"]={
+ ["value"]=736300,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=37,
+ ["unit"]=0
+ }
+ },
+ [377]={
+ ["next_chapter"]=378,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13392,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=1473,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=3860,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=746460,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3860,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=18,
+ ["grasp_gold_reward"]={
+ ["value"]=736300,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=37,
+ ["unit"]=0
+ }
+ },
+ [378]={
+ ["next_chapter"]=379,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13708,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=1508,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=3870,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=750330,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3870,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=18,
+ ["grasp_gold_reward"]={
+ ["value"]=736300,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=37,
+ ["unit"]=0
+ }
+ },
+ [379]={
+ ["next_chapter"]=380,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14030,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=1543,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=3880,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=754210,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3880,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=18,
+ ["grasp_gold_reward"]={
+ ["value"]=736300,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=37,
+ ["unit"]=0
+ }
+ },
+ [380]={
+ ["next_chapter"]=381,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=14356,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=1579,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=3890,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=758100,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3890,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=18,
+ ["grasp_gold_reward"]={
+ ["value"]=775200,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=38,
+ ["unit"]=0
+ }
+ },
+ [381]={
+ ["next_chapter"]=382,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14688,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=1616,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=3900,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=762000,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3900,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=18,
+ ["grasp_gold_reward"]={
+ ["value"]=775200,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=38,
+ ["unit"]=0
+ }
+ },
+ [382]={
+ ["next_chapter"]=383,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15024,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=1653,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=3910,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=765910,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3910,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=18,
+ ["grasp_gold_reward"]={
+ ["value"]=775200,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=38,
+ ["unit"]=0
+ }
+ },
+ [383]={
+ ["next_chapter"]=384,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15366,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=1690,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=3920,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=769830,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3920,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=18,
+ ["grasp_gold_reward"]={
+ ["value"]=775200,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=38,
+ ["unit"]=0
+ }
+ },
+ [384]={
+ ["next_chapter"]=385,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15713,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=1728,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=3930,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=773760,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3930,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=18,
+ ["grasp_gold_reward"]={
+ ["value"]=775200,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=38,
+ ["unit"]=0
+ }
+ },
+ [385]={
+ ["next_chapter"]=386,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16065,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=1767,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=3940,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=777700,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3940,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=18,
+ ["grasp_gold_reward"]={
+ ["value"]=775200,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=38,
+ ["unit"]=0
+ }
+ },
+ [386]={
+ ["next_chapter"]=387,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16423,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=1806,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=3950,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=781650,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3950,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=18,
+ ["grasp_gold_reward"]={
+ ["value"]=775200,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=38,
+ ["unit"]=0
+ }
+ },
+ [387]={
+ ["next_chapter"]=388,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16785,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=1846,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=3960,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=785610,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3960,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=18,
+ ["grasp_gold_reward"]={
+ ["value"]=775200,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=38,
+ ["unit"]=0
+ }
+ },
+ [388]={
+ ["next_chapter"]=389,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17153,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=1887,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=3970,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=789580,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3970,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=18,
+ ["grasp_gold_reward"]={
+ ["value"]=775200,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=38,
+ ["unit"]=0
+ }
+ },
+ [389]={
+ ["next_chapter"]=390,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17527,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=1928,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=3980,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=793560,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3980,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=18,
+ ["grasp_gold_reward"]={
+ ["value"]=775200,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=38,
+ ["unit"]=0
+ }
+ },
+ [390]={
+ ["next_chapter"]=391,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=17906,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=1970,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=3990,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=797550,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=3990,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=18,
+ ["grasp_gold_reward"]={
+ ["value"]=815100,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=39,
+ ["unit"]=0
+ }
+ },
+ [391]={
+ ["next_chapter"]=392,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18290,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=2012,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=801550,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=4000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=18,
+ ["grasp_gold_reward"]={
+ ["value"]=815100,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=39,
+ ["unit"]=0
+ }
+ },
+ [392]={
+ ["next_chapter"]=393,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18680,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=2055,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4010,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=805560,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=4010,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=18,
+ ["grasp_gold_reward"]={
+ ["value"]=815100,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=39,
+ ["unit"]=0
+ }
+ },
+ [393]={
+ ["next_chapter"]=394,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19075,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=2098,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4020,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=809580,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=4020,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=18,
+ ["grasp_gold_reward"]={
+ ["value"]=815100,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=39,
+ ["unit"]=0
+ }
+ },
+ [394]={
+ ["next_chapter"]=395,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19476,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=2142,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4030,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=813610,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=4030,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=18,
+ ["grasp_gold_reward"]={
+ ["value"]=815100,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=39,
+ ["unit"]=0
+ }
+ },
+ [395]={
+ ["next_chapter"]=396,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19882,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=2187,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4040,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=817650,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=4040,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=18,
+ ["grasp_gold_reward"]={
+ ["value"]=815100,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=39,
+ ["unit"]=0
+ }
+ },
+ [396]={
+ ["next_chapter"]=397,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20294,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=2232,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4050,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=821700,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=4050,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=18,
+ ["grasp_gold_reward"]={
+ ["value"]=815100,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=39,
+ ["unit"]=0
+ }
+ },
+ [397]={
+ ["next_chapter"]=398,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20712,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=2278,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4060,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=825760,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=4060,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=18,
+ ["grasp_gold_reward"]={
+ ["value"]=815100,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=39,
+ ["unit"]=0
+ }
+ },
+ [398]={
+ ["next_chapter"]=399,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21136,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=2325,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4070,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=829830,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=4070,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=18,
+ ["grasp_gold_reward"]={
+ ["value"]=815100,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=39,
+ ["unit"]=0
+ }
+ },
+ [399]={
+ ["next_chapter"]=400,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21565,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=2372,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4080,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=833910,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=4080,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=18,
+ ["grasp_gold_reward"]={
+ ["value"]=815100,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=39,
+ ["unit"]=0
+ }
+ },
+ [400]={
+ ["next_chapter"]=401,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=22000,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=2640,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4090,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=838000,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=4090,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=18,
+ ["grasp_gold_reward"]={
+ ["value"]=856000,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=40,
+ ["unit"]=0
+ }
+ },
+ [401]={
+ ["next_chapter"]=402,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22001,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=2640,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4100,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=842100,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=4100,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=19,
+ ["grasp_gold_reward"]={
+ ["value"]=856000,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=40,
+ ["unit"]=0
+ }
+ },
+ [402]={
+ ["next_chapter"]=403,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22007,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=2641,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4110,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=846210,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=4110,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=19,
+ ["grasp_gold_reward"]={
+ ["value"]=856000,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=40,
+ ["unit"]=0
+ }
+ },
+ [403]={
+ ["next_chapter"]=404,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22024,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=2643,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4120,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=850330,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=4120,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=19,
+ ["grasp_gold_reward"]={
+ ["value"]=856000,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=40,
+ ["unit"]=0
+ }
+ },
+ [404]={
+ ["next_chapter"]=405,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22056,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=2647,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4130,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=854460,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=4130,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=19,
+ ["grasp_gold_reward"]={
+ ["value"]=856000,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=40,
+ ["unit"]=0
+ }
+ },
+ [405]={
+ ["next_chapter"]=406,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22110,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=2653,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4140,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=858600,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=4140,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=19,
+ ["grasp_gold_reward"]={
+ ["value"]=856000,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=40,
+ ["unit"]=0
+ }
+ },
+ [406]={
+ ["next_chapter"]=407,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22190,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=2663,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4150,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=862750,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=4150,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=19,
+ ["grasp_gold_reward"]={
+ ["value"]=856000,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=40,
+ ["unit"]=0
+ }
+ },
+ [407]={
+ ["next_chapter"]=408,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22301,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=2676,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4160,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=866910,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=4160,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=19,
+ ["grasp_gold_reward"]={
+ ["value"]=856000,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=40,
+ ["unit"]=0
+ }
+ },
+ [408]={
+ ["next_chapter"]=409,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22450,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=2694,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4170,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=871080,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=4170,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=19,
+ ["grasp_gold_reward"]={
+ ["value"]=856000,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=40,
+ ["unit"]=0
+ }
+ },
+ [409]={
+ ["next_chapter"]=410,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22640,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=2717,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4180,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=875260,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=4180,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=19,
+ ["grasp_gold_reward"]={
+ ["value"]=856000,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=40,
+ ["unit"]=0
+ }
+ },
+ [410]={
+ ["next_chapter"]=411,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=22878,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=2745,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4190,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=879450,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=4190,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=19,
+ ["grasp_gold_reward"]={
+ ["value"]=897900,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=41,
+ ["unit"]=0
+ }
+ },
+ [411]={
+ ["next_chapter"]=412,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23169,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=2780,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4200,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=883650,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=4200,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=19,
+ ["grasp_gold_reward"]={
+ ["value"]=897900,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=41,
+ ["unit"]=0
+ }
+ },
+ [412]={
+ ["next_chapter"]=413,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23517,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=2822,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4210,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=887860,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=4210,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=19,
+ ["grasp_gold_reward"]={
+ ["value"]=897900,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=41,
+ ["unit"]=0
+ }
+ },
+ [413]={
+ ["next_chapter"]=414,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23929,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=2871,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4220,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=892080,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=4220,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=19,
+ ["grasp_gold_reward"]={
+ ["value"]=897900,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=41,
+ ["unit"]=0
+ }
+ },
+ [414]={
+ ["next_chapter"]=415,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24409,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=2929,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4230,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=896310,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=4230,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=19,
+ ["grasp_gold_reward"]={
+ ["value"]=897900,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=41,
+ ["unit"]=0
+ }
+ },
+ [415]={
+ ["next_chapter"]=416,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24963,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=2996,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4240,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=900550,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=4240,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=19,
+ ["grasp_gold_reward"]={
+ ["value"]=897900,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=41,
+ ["unit"]=0
+ }
+ },
+ [416]={
+ ["next_chapter"]=417,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25596,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=3072,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4250,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=904800,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=4250,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=19,
+ ["grasp_gold_reward"]={
+ ["value"]=897900,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=41,
+ ["unit"]=0
+ }
+ },
+ [417]={
+ ["next_chapter"]=418,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26314,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=3158,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4260,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=909060,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=4260,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=19,
+ ["grasp_gold_reward"]={
+ ["value"]=897900,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=41,
+ ["unit"]=0
+ }
+ },
+ [418]={
+ ["next_chapter"]=419,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27120,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=3254,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4270,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=913330,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=4270,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=19,
+ ["grasp_gold_reward"]={
+ ["value"]=897900,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=41,
+ ["unit"]=0
+ }
+ },
+ [419]={
+ ["next_chapter"]=420,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28022,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=3363,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4280,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=917610,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=4280,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=19,
+ ["grasp_gold_reward"]={
+ ["value"]=897900,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=41,
+ ["unit"]=0
+ }
+ },
+ [420]={
+ ["next_chapter"]=421,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=29024,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=3483,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4290,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=921900,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=4290,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=19,
+ ["grasp_gold_reward"]={
+ ["value"]=940800,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=42,
+ ["unit"]=0
+ }
+ },
+ [421]={
+ ["next_chapter"]=422,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30131,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=3616,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4300,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=926200,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=4300,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=19,
+ ["grasp_gold_reward"]={
+ ["value"]=940800,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=42,
+ ["unit"]=0
+ }
+ },
+ [422]={
+ ["next_chapter"]=423,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=31349,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=3762,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4310,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=930510,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=4310,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=19,
+ ["grasp_gold_reward"]={
+ ["value"]=940800,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=42,
+ ["unit"]=0
+ }
+ },
+ [423]={
+ ["next_chapter"]=424,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=32683,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=3922,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4320,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=934830,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=4320,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=19,
+ ["grasp_gold_reward"]={
+ ["value"]=940800,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=42,
+ ["unit"]=0
+ }
+ },
+ [424]={
+ ["next_chapter"]=425,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=34137,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=4096,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4330,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=939160,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=4330,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=19,
+ ["grasp_gold_reward"]={
+ ["value"]=940800,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=42,
+ ["unit"]=0
+ }
+ },
+ [425]={
+ ["next_chapter"]=426,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=35719,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=4286,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4340,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=943500,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=4340,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=19,
+ ["grasp_gold_reward"]={
+ ["value"]=940800,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=42,
+ ["unit"]=0
+ }
+ },
+ [426]={
+ ["next_chapter"]=427,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=37432,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=4492,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4350,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=947850,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=4350,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=19,
+ ["grasp_gold_reward"]={
+ ["value"]=940800,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=42,
+ ["unit"]=0
+ }
+ },
+ [427]={
+ ["next_chapter"]=428,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=39282,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=4714,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4360,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=952210,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=4360,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=19,
+ ["grasp_gold_reward"]={
+ ["value"]=940800,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=42,
+ ["unit"]=0
+ }
+ },
+ [428]={
+ ["next_chapter"]=429,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=41274,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=4953,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4370,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=956580,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=4370,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=19,
+ ["grasp_gold_reward"]={
+ ["value"]=940800,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=42,
+ ["unit"]=0
+ }
+ },
+ [429]={
+ ["next_chapter"]=430,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=43414,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=5210,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4380,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=960960,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=4380,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=19,
+ ["grasp_gold_reward"]={
+ ["value"]=940800,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=42,
+ ["unit"]=0
+ }
+ },
+ [430]={
+ ["next_chapter"]=431,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=45706,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=5485,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4390,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=965350,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=4390,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=19,
+ ["grasp_gold_reward"]={
+ ["value"]=984700,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=43,
+ ["unit"]=0
+ }
+ },
+ [431]={
+ ["next_chapter"]=432,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=48156,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=5779,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4400,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=969750,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=4400,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=19,
+ ["grasp_gold_reward"]={
+ ["value"]=984700,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=43,
+ ["unit"]=0
+ }
+ },
+ [432]={
+ ["next_chapter"]=433,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=50770,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=6092,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4410,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=974160,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=4410,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=19,
+ ["grasp_gold_reward"]={
+ ["value"]=984700,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=43,
+ ["unit"]=0
+ }
+ },
+ [433]={
+ ["next_chapter"]=434,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=53553,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=6426,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4420,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=978580,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=4420,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=19,
+ ["grasp_gold_reward"]={
+ ["value"]=984700,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=43,
+ ["unit"]=0
+ }
+ },
+ [434]={
+ ["next_chapter"]=435,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=56509,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=6781,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4430,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=983010,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=4430,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=19,
+ ["grasp_gold_reward"]={
+ ["value"]=984700,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=43,
+ ["unit"]=0
+ }
+ },
+ [435]={
+ ["next_chapter"]=436,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=59644,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=7157,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4440,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=987450,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=4440,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=19,
+ ["grasp_gold_reward"]={
+ ["value"]=984700,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=43,
+ ["unit"]=0
+ }
+ },
+ [436]={
+ ["next_chapter"]=437,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=62964,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=7556,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4450,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=991900,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=4450,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=19,
+ ["grasp_gold_reward"]={
+ ["value"]=984700,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=43,
+ ["unit"]=0
+ }
+ },
+ [437]={
+ ["next_chapter"]=438,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=66473,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=7977,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4460,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=996360,
+ ["unit"]=0
+ },
+ ["idle_gold"]={
+ ["value"]=4460,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=19,
+ ["grasp_gold_reward"]={
+ ["value"]=984700,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=43,
+ ["unit"]=0
+ }
+ },
+ [438]={
+ ["next_chapter"]=439,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=70178,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=8421,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4470,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1001,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4470,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=19,
+ ["grasp_gold_reward"]={
+ ["value"]=984700,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=43,
+ ["unit"]=0
+ }
+ },
+ [439]={
+ ["next_chapter"]=440,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=74082,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=8890,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4480,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1005,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4480,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=19,
+ ["grasp_gold_reward"]={
+ ["value"]=984700,
+ ["unit"]=0
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=43,
+ ["unit"]=0
+ }
+ },
+ [440]={
+ ["next_chapter"]=441,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=78192,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=9383,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4490,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1010,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4490,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=19,
+ ["grasp_gold_reward"]={
+ ["value"]=1030,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=44,
+ ["unit"]=0
+ }
+ },
+ [441]={
+ ["next_chapter"]=442,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=82513,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=9902,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4500,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1014,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4500,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=20,
+ ["grasp_gold_reward"]={
+ ["value"]=1030,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=44,
+ ["unit"]=0
+ }
+ },
+ [442]={
+ ["next_chapter"]=443,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=87049,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=10446,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4510,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1019,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4510,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=20,
+ ["grasp_gold_reward"]={
+ ["value"]=1030,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=44,
+ ["unit"]=0
+ }
+ },
+ [443]={
+ ["next_chapter"]=444,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=91807,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=11017,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4520,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1023,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4520,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=20,
+ ["grasp_gold_reward"]={
+ ["value"]=1030,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=44,
+ ["unit"]=0
+ }
+ },
+ [444]={
+ ["next_chapter"]=445,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=96792,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=11615,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4530,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1028,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4530,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=20,
+ ["grasp_gold_reward"]={
+ ["value"]=1030,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=44,
+ ["unit"]=0
+ }
+ },
+ [445]={
+ ["next_chapter"]=446,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=102008,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=12241,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4540,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1032,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4540,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=20,
+ ["grasp_gold_reward"]={
+ ["value"]=1030,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=44,
+ ["unit"]=0
+ }
+ },
+ [446]={
+ ["next_chapter"]=447,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=107461,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=12895,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4550,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1037,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4550,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=20,
+ ["grasp_gold_reward"]={
+ ["value"]=1030,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=44,
+ ["unit"]=0
+ }
+ },
+ [447]={
+ ["next_chapter"]=448,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=113157,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=13579,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4560,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1042,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4560,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=20,
+ ["grasp_gold_reward"]={
+ ["value"]=1030,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=44,
+ ["unit"]=0
+ }
+ },
+ [448]={
+ ["next_chapter"]=449,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=119100,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=14292,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4570,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1046,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4570,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=20,
+ ["grasp_gold_reward"]={
+ ["value"]=1030,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=44,
+ ["unit"]=0
+ }
+ },
+ [449]={
+ ["next_chapter"]=450,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=125296,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=15035,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4580,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1051,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4580,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=20,
+ ["grasp_gold_reward"]={
+ ["value"]=1030,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=44,
+ ["unit"]=0
+ }
+ },
+ [450]={
+ ["next_chapter"]=451,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=131750,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=15810,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4590,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1055,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4590,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=20,
+ ["grasp_gold_reward"]={
+ ["value"]=1076,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=45,
+ ["unit"]=0
+ }
+ },
+ [451]={
+ ["next_chapter"]=452,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=138468,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=16616,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4600,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1060,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4600,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=20,
+ ["grasp_gold_reward"]={
+ ["value"]=1076,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=45,
+ ["unit"]=0
+ }
+ },
+ [452]={
+ ["next_chapter"]=453,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=145454,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=17454,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4610,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1064,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4610,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=20,
+ ["grasp_gold_reward"]={
+ ["value"]=1076,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=45,
+ ["unit"]=0
+ }
+ },
+ [453]={
+ ["next_chapter"]=454,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=152714,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=18326,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4620,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1069,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4620,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=20,
+ ["grasp_gold_reward"]={
+ ["value"]=1076,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=45,
+ ["unit"]=0
+ }
+ },
+ [454]={
+ ["next_chapter"]=455,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=160253,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=19230,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4630,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1074,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4630,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=20,
+ ["grasp_gold_reward"]={
+ ["value"]=1076,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=45,
+ ["unit"]=0
+ }
+ },
+ [455]={
+ ["next_chapter"]=456,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=168077,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=20169,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4640,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1078,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4640,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=20,
+ ["grasp_gold_reward"]={
+ ["value"]=1076,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=45,
+ ["unit"]=0
+ }
+ },
+ [456]={
+ ["next_chapter"]=457,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=176191,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=21143,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4650,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1083,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4650,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=20,
+ ["grasp_gold_reward"]={
+ ["value"]=1076,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=45,
+ ["unit"]=0
+ }
+ },
+ [457]={
+ ["next_chapter"]=458,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=184599,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=22152,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4660,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1088,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4660,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=20,
+ ["grasp_gold_reward"]={
+ ["value"]=1076,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=45,
+ ["unit"]=0
+ }
+ },
+ [458]={
+ ["next_chapter"]=459,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=193308,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=23197,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4670,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1092,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4670,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=20,
+ ["grasp_gold_reward"]={
+ ["value"]=1076,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=45,
+ ["unit"]=0
+ }
+ },
+ [459]={
+ ["next_chapter"]=460,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=202323,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=24279,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4680,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1097,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4680,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=20,
+ ["grasp_gold_reward"]={
+ ["value"]=1076,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=45,
+ ["unit"]=0
+ }
+ },
+ [460]={
+ ["next_chapter"]=461,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=211648,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=25398,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4690,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1102,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4690,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=20,
+ ["grasp_gold_reward"]={
+ ["value"]=1122,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=46,
+ ["unit"]=0
+ }
+ },
+ [461]={
+ ["next_chapter"]=462,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=221289,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=26555,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4700,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1106,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4700,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=20,
+ ["grasp_gold_reward"]={
+ ["value"]=1122,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=46,
+ ["unit"]=0
+ }
+ },
+ [462]={
+ ["next_chapter"]=463,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=231252,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=27750,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4710,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1111,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4710,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=20,
+ ["grasp_gold_reward"]={
+ ["value"]=1122,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=46,
+ ["unit"]=0
+ }
+ },
+ [463]={
+ ["next_chapter"]=464,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=241541,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=28985,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4720,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1116,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4720,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=20,
+ ["grasp_gold_reward"]={
+ ["value"]=1122,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=46,
+ ["unit"]=0
+ }
+ },
+ [464]={
+ ["next_chapter"]=465,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=252162,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=30259,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4730,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1121,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4730,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=20,
+ ["grasp_gold_reward"]={
+ ["value"]=1122,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=46,
+ ["unit"]=0
+ }
+ },
+ [465]={
+ ["next_chapter"]=466,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=263121,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=31574,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4740,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1125,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4740,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=20,
+ ["grasp_gold_reward"]={
+ ["value"]=1122,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=46,
+ ["unit"]=0
+ }
+ },
+ [466]={
+ ["next_chapter"]=467,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=274421,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=32931,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4750,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1130,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4750,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=20,
+ ["grasp_gold_reward"]={
+ ["value"]=1122,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=46,
+ ["unit"]=0
+ }
+ },
+ [467]={
+ ["next_chapter"]=468,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=286070,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=34328,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4760,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1135,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4760,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=20,
+ ["grasp_gold_reward"]={
+ ["value"]=1122,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=46,
+ ["unit"]=0
+ }
+ },
+ [468]={
+ ["next_chapter"]=469,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=298071,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=35769,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4770,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1140,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4770,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=20,
+ ["grasp_gold_reward"]={
+ ["value"]=1122,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=46,
+ ["unit"]=0
+ }
+ },
+ [469]={
+ ["next_chapter"]=470,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=310431,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=37252,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4780,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1144,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4780,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=20,
+ ["grasp_gold_reward"]={
+ ["value"]=1122,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=46,
+ ["unit"]=0
+ }
+ },
+ [470]={
+ ["next_chapter"]=471,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=323154,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=38778,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4790,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1149,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4790,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=20,
+ ["grasp_gold_reward"]={
+ ["value"]=1170,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=47,
+ ["unit"]=0
+ }
+ },
+ [471]={
+ ["next_chapter"]=472,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=336246,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=40350,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4800,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1154,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4800,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=20,
+ ["grasp_gold_reward"]={
+ ["value"]=1170,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=47,
+ ["unit"]=0
+ }
+ },
+ [472]={
+ ["next_chapter"]=473,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=349712,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=41965,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4810,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1159,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4810,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=20,
+ ["grasp_gold_reward"]={
+ ["value"]=1170,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=47,
+ ["unit"]=0
+ }
+ },
+ [473]={
+ ["next_chapter"]=474,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=363557,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=43627,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4820,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1164,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4820,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=20,
+ ["grasp_gold_reward"]={
+ ["value"]=1170,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=47,
+ ["unit"]=0
+ }
+ },
+ [474]={
+ ["next_chapter"]=475,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=377787,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=45334,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4830,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1168,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4830,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=20,
+ ["grasp_gold_reward"]={
+ ["value"]=1170,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=47,
+ ["unit"]=0
+ }
+ },
+ [475]={
+ ["next_chapter"]=476,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=392406,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=47089,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4840,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1173,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4840,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=20,
+ ["grasp_gold_reward"]={
+ ["value"]=1170,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=47,
+ ["unit"]=0
+ }
+ },
+ [476]={
+ ["next_chapter"]=477,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=407421,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=48891,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4850,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1178,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4850,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=20,
+ ["grasp_gold_reward"]={
+ ["value"]=1170,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=47,
+ ["unit"]=0
+ }
+ },
+ [477]={
+ ["next_chapter"]=478,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=422836,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=50740,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4860,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1183,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4860,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=20,
+ ["grasp_gold_reward"]={
+ ["value"]=1170,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=47,
+ ["unit"]=0
+ }
+ },
+ [478]={
+ ["next_chapter"]=479,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=438657,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=52639,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4870,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1188,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4870,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=20,
+ ["grasp_gold_reward"]={
+ ["value"]=1170,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=47,
+ ["unit"]=0
+ }
+ },
+ [479]={
+ ["next_chapter"]=480,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=454888,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=54587,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4880,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1193,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4880,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=20,
+ ["grasp_gold_reward"]={
+ ["value"]=1170,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=47,
+ ["unit"]=0
+ }
+ },
+ [480]={
+ ["next_chapter"]=481,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=471536,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=56584,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4890,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1198,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4890,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=20,
+ ["grasp_gold_reward"]={
+ ["value"]=1219,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=48,
+ ["unit"]=0
+ }
+ },
+ [481]={
+ ["next_chapter"]=482,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=488605,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=58633,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4900,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1203,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4900,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=21,
+ ["grasp_gold_reward"]={
+ ["value"]=1219,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=48,
+ ["unit"]=0
+ }
+ },
+ [482]={
+ ["next_chapter"]=483,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=506101,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=60732,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4910,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1207,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4910,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=21,
+ ["grasp_gold_reward"]={
+ ["value"]=1219,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=48,
+ ["unit"]=0
+ }
+ },
+ [483]={
+ ["next_chapter"]=484,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=524029,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=62883,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4920,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1212,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4920,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=21,
+ ["grasp_gold_reward"]={
+ ["value"]=1219,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=48,
+ ["unit"]=0
+ }
+ },
+ [484]={
+ ["next_chapter"]=485,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=542394,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=65087,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4930,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1217,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4930,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=21,
+ ["grasp_gold_reward"]={
+ ["value"]=1219,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=48,
+ ["unit"]=0
+ }
+ },
+ [485]={
+ ["next_chapter"]=486,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=561202,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=67344,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4940,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1222,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4940,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=21,
+ ["grasp_gold_reward"]={
+ ["value"]=1219,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=48,
+ ["unit"]=0
+ }
+ },
+ [486]={
+ ["next_chapter"]=487,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=580457,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=69655,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4950,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1227,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4950,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=21,
+ ["grasp_gold_reward"]={
+ ["value"]=1219,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=48,
+ ["unit"]=0
+ }
+ },
+ [487]={
+ ["next_chapter"]=488,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=600166,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=72020,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4960,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1232,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4960,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=21,
+ ["grasp_gold_reward"]={
+ ["value"]=1219,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=48,
+ ["unit"]=0
+ }
+ },
+ [488]={
+ ["next_chapter"]=489,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=620332,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=74440,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4970,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1237,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4970,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=21,
+ ["grasp_gold_reward"]={
+ ["value"]=1219,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=48,
+ ["unit"]=0
+ }
+ },
+ [489]={
+ ["next_chapter"]=490,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=640963,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=76916,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4980,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1242,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4980,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=21,
+ ["grasp_gold_reward"]={
+ ["value"]=1219,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=48,
+ ["unit"]=0
+ }
+ },
+ [490]={
+ ["next_chapter"]=491,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=662062,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=79447,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=4990,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1247,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4990,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=21,
+ ["grasp_gold_reward"]={
+ ["value"]=1269,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=49,
+ ["unit"]=0
+ }
+ },
+ [491]={
+ ["next_chapter"]=492,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=683635,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=82036,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1252,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=5000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=21,
+ ["grasp_gold_reward"]={
+ ["value"]=1269,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=49,
+ ["unit"]=0
+ }
+ },
+ [492]={
+ ["next_chapter"]=493,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=705688,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=84683,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1257,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=5000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=21,
+ ["grasp_gold_reward"]={
+ ["value"]=1269,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=49,
+ ["unit"]=0
+ }
+ },
+ [493]={
+ ["next_chapter"]=494,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=728225,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=87387,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1262,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=5000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=21,
+ ["grasp_gold_reward"]={
+ ["value"]=1269,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=49,
+ ["unit"]=0
+ }
+ },
+ [494]={
+ ["next_chapter"]=495,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=751253,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=90150,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1267,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=5000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=21,
+ ["grasp_gold_reward"]={
+ ["value"]=1269,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=49,
+ ["unit"]=0
+ }
+ },
+ [495]={
+ ["next_chapter"]=496,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=774775,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=92973,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1272,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=5000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=21,
+ ["grasp_gold_reward"]={
+ ["value"]=1269,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=49,
+ ["unit"]=0
+ }
+ },
+ [496]={
+ ["next_chapter"]=497,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=798798,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=95856,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1277,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=5000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=21,
+ ["grasp_gold_reward"]={
+ ["value"]=1269,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=49,
+ ["unit"]=0
+ }
+ },
+ [497]={
+ ["next_chapter"]=498,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=823327,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=98799,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1282,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=5000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=21,
+ ["grasp_gold_reward"]={
+ ["value"]=1269,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=49,
+ ["unit"]=0
+ }
+ },
+ [498]={
+ ["next_chapter"]=499,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=848367,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=101804,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1287,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=5020,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=21,
+ ["grasp_gold_reward"]={
+ ["value"]=1269,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=49,
+ ["unit"]=0
+ }
+ },
+ [499]={
+ ["next_chapter"]=500,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=873923,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=104871,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1292,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=5070,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=21,
+ ["grasp_gold_reward"]={
+ ["value"]=1269,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=49,
+ ["unit"]=0
+ }
+ },
+ [500]={
+ ["next_chapter"]=501,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=900000,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=117000,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1297,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=5120,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=21,
+ ["grasp_gold_reward"]={
+ ["value"]=1321,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=50,
+ ["unit"]=0
+ }
+ },
+ [501]={
+ ["next_chapter"]=502,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=900032,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=117004,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1302,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=5170,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=22,
+ ["grasp_gold_reward"]={
+ ["value"]=1321,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=50,
+ ["unit"]=0
+ }
+ },
+ [502]={
+ ["next_chapter"]=503,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=900257,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=117033,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1307,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=5220,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=22,
+ ["grasp_gold_reward"]={
+ ["value"]=1321,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=50,
+ ["unit"]=0
+ }
+ },
+ [503]={
+ ["next_chapter"]=504,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=900867,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=117113,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1312,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=5270,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=22,
+ ["grasp_gold_reward"]={
+ ["value"]=1321,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=50,
+ ["unit"]=0
+ }
+ },
+ [504]={
+ ["next_chapter"]=505,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=902054,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=117267,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1317,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=5320,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=22,
+ ["grasp_gold_reward"]={
+ ["value"]=1321,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=50,
+ ["unit"]=0
+ }
+ },
+ [505]={
+ ["next_chapter"]=506,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=904013,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=117522,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1322,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=5370,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=22,
+ ["grasp_gold_reward"]={
+ ["value"]=1321,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=50,
+ ["unit"]=0
+ }
+ },
+ [506]={
+ ["next_chapter"]=507,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=906934,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=117901,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1327,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=5420,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=22,
+ ["grasp_gold_reward"]={
+ ["value"]=1321,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=50,
+ ["unit"]=0
+ }
+ },
+ [507]={
+ ["next_chapter"]=508,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=911010,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=118431,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1332,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=5470,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=22,
+ ["grasp_gold_reward"]={
+ ["value"]=1321,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=50,
+ ["unit"]=0
+ }
+ },
+ [508]={
+ ["next_chapter"]=509,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=916435,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=119137,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1337,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=5520,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=22,
+ ["grasp_gold_reward"]={
+ ["value"]=1321,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=50,
+ ["unit"]=0
+ }
+ },
+ [509]={
+ ["next_chapter"]=510,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=923401,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=120042,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1342,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=5580,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=22,
+ ["grasp_gold_reward"]={
+ ["value"]=1321,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=50,
+ ["unit"]=0
+ }
+ },
+ [510]={
+ ["next_chapter"]=511,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=932100,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=121173,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1347,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=5640,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=22,
+ ["grasp_gold_reward"]={
+ ["value"]=1377,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=51,
+ ["unit"]=0
+ }
+ },
+ [511]={
+ ["next_chapter"]=512,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=942725,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=122554,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1352,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=5700,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=22,
+ ["grasp_gold_reward"]={
+ ["value"]=1377,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=51,
+ ["unit"]=0
+ }
+ },
+ [512]={
+ ["next_chapter"]=513,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=955469,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=124211,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1357,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=5760,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=22,
+ ["grasp_gold_reward"]={
+ ["value"]=1377,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=51,
+ ["unit"]=0
+ }
+ },
+ [513]={
+ ["next_chapter"]=514,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=970524,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=126168,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1362,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=5820,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=22,
+ ["grasp_gold_reward"]={
+ ["value"]=1377,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=51,
+ ["unit"]=0
+ }
+ },
+ [514]={
+ ["next_chapter"]=515,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=988082,
+ ["unit"]=1
+ },
+ ["hp_coefficient"]={
+ ["value"]=128451,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1367,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=5880,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=22,
+ ["grasp_gold_reward"]={
+ ["value"]=1377,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=51,
+ ["unit"]=0
+ }
+ },
+ [515]={
+ ["next_chapter"]=516,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1008,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=131084,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1372,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=5940,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=22,
+ ["grasp_gold_reward"]={
+ ["value"]=1377,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=51,
+ ["unit"]=0
+ }
+ },
+ [516]={
+ ["next_chapter"]=517,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1031,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=134093,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1378,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=6000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=22,
+ ["grasp_gold_reward"]={
+ ["value"]=1377,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=51,
+ ["unit"]=0
+ }
+ },
+ [517]={
+ ["next_chapter"]=518,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1058,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=137502,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1384,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=6060,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=22,
+ ["grasp_gold_reward"]={
+ ["value"]=1377,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=51,
+ ["unit"]=0
+ }
+ },
+ [518]={
+ ["next_chapter"]=519,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1087,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=141337,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1390,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=6120,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=22,
+ ["grasp_gold_reward"]={
+ ["value"]=1377,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=51,
+ ["unit"]=0
+ }
+ },
+ [519]={
+ ["next_chapter"]=520,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1120,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=145623,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1396,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=6180,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=22,
+ ["grasp_gold_reward"]={
+ ["value"]=1377,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=51,
+ ["unit"]=0
+ }
+ },
+ [520]={
+ ["next_chapter"]=521,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=1157,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=150384,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1402,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=6240,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=22,
+ ["grasp_gold_reward"]={
+ ["value"]=1440,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=52,
+ ["unit"]=0
+ }
+ },
+ [521]={
+ ["next_chapter"]=522,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1197,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=155646,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1408,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=6300,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=23,
+ ["grasp_gold_reward"]={
+ ["value"]=1440,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=52,
+ ["unit"]=0
+ }
+ },
+ [522]={
+ ["next_chapter"]=523,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1242,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=161434,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1414,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=6360,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=23,
+ ["grasp_gold_reward"]={
+ ["value"]=1440,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=52,
+ ["unit"]=0
+ }
+ },
+ [523]={
+ ["next_chapter"]=524,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1291,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=167773,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1420,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=6420,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=23,
+ ["grasp_gold_reward"]={
+ ["value"]=1440,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=52,
+ ["unit"]=0
+ }
+ },
+ [524]={
+ ["next_chapter"]=525,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1344,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=174688,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1426,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=6480,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=23,
+ ["grasp_gold_reward"]={
+ ["value"]=1440,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=52,
+ ["unit"]=0
+ }
+ },
+ [525]={
+ ["next_chapter"]=526,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1402,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=182203,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1432,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=6540,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=23,
+ ["grasp_gold_reward"]={
+ ["value"]=1440,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=52,
+ ["unit"]=0
+ }
+ },
+ [526]={
+ ["next_chapter"]=527,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1464,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=190345,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1438,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=6610,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=23,
+ ["grasp_gold_reward"]={
+ ["value"]=1440,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=52,
+ ["unit"]=0
+ }
+ },
+ [527]={
+ ["next_chapter"]=528,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1532,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=199137,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1444,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=6680,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=23,
+ ["grasp_gold_reward"]={
+ ["value"]=1440,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=52,
+ ["unit"]=0
+ }
+ },
+ [528]={
+ ["next_chapter"]=529,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1605,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=208606,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1450,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=6750,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=23,
+ ["grasp_gold_reward"]={
+ ["value"]=1440,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=52,
+ ["unit"]=0
+ }
+ },
+ [529]={
+ ["next_chapter"]=530,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1683,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=218775,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1456,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=6820,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=23,
+ ["grasp_gold_reward"]={
+ ["value"]=1440,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=52,
+ ["unit"]=0
+ }
+ },
+ [530]={
+ ["next_chapter"]=531,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=1767,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=229671,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1462,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=6890,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=23,
+ ["grasp_gold_reward"]={
+ ["value"]=1510,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=53,
+ ["unit"]=0
+ }
+ },
+ [531]={
+ ["next_chapter"]=532,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1856,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=241318,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1468,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=6960,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=23,
+ ["grasp_gold_reward"]={
+ ["value"]=1510,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=53,
+ ["unit"]=0
+ }
+ },
+ [532]={
+ ["next_chapter"]=533,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1952,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=253741,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1475,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=7030,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=23,
+ ["grasp_gold_reward"]={
+ ["value"]=1510,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=53,
+ ["unit"]=0
+ }
+ },
+ [533]={
+ ["next_chapter"]=534,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2054,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=266965,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1482,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=7100,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=23,
+ ["grasp_gold_reward"]={
+ ["value"]=1510,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=53,
+ ["unit"]=0
+ }
+ },
+ [534]={
+ ["next_chapter"]=535,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2162,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=281016,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1489,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=7170,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=23,
+ ["grasp_gold_reward"]={
+ ["value"]=1510,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=53,
+ ["unit"]=0
+ }
+ },
+ [535]={
+ ["next_chapter"]=536,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2276,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=295917,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1496,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=7240,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=23,
+ ["grasp_gold_reward"]={
+ ["value"]=1510,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=53,
+ ["unit"]=0
+ }
+ },
+ [536]={
+ ["next_chapter"]=537,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2398,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=311695,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1503,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=7310,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=23,
+ ["grasp_gold_reward"]={
+ ["value"]=1510,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=53,
+ ["unit"]=0
+ }
+ },
+ [537]={
+ ["next_chapter"]=538,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2526,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=328375,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1510,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=7380,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=23,
+ ["grasp_gold_reward"]={
+ ["value"]=1510,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=53,
+ ["unit"]=0
+ }
+ },
+ [538]={
+ ["next_chapter"]=539,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2661,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=345981,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1517,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=7450,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=23,
+ ["grasp_gold_reward"]={
+ ["value"]=1510,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=53,
+ ["unit"]=0
+ }
+ },
+ [539]={
+ ["next_chapter"]=540,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2804,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=364538,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1524,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=7520,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=23,
+ ["grasp_gold_reward"]={
+ ["value"]=1510,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=53,
+ ["unit"]=0
+ }
+ },
+ [540]={
+ ["next_chapter"]=541,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=2954,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=384072,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1531,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=7600,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=23,
+ ["grasp_gold_reward"]={
+ ["value"]=1586,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=54,
+ ["unit"]=0
+ }
+ },
+ [541]={
+ ["next_chapter"]=542,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3112,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=404607,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1538,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=7680,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=23,
+ ["grasp_gold_reward"]={
+ ["value"]=1586,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=54,
+ ["unit"]=0
+ }
+ },
+ [542]={
+ ["next_chapter"]=543,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3278,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=426169,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1545,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=7760,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=23,
+ ["grasp_gold_reward"]={
+ ["value"]=1586,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=54,
+ ["unit"]=0
+ }
+ },
+ [543]={
+ ["next_chapter"]=544,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3452,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=448783,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1552,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=7840,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=23,
+ ["grasp_gold_reward"]={
+ ["value"]=1586,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=54,
+ ["unit"]=0
+ }
+ },
+ [544]={
+ ["next_chapter"]=545,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3634,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=472473,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1559,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=7920,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=23,
+ ["grasp_gold_reward"]={
+ ["value"]=1586,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=54,
+ ["unit"]=0
+ }
+ },
+ [545]={
+ ["next_chapter"]=546,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3825,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=497265,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1567,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=8000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=23,
+ ["grasp_gold_reward"]={
+ ["value"]=1586,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=54,
+ ["unit"]=0
+ }
+ },
+ [546]={
+ ["next_chapter"]=547,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4024,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=523183,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1575,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=8080,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=23,
+ ["grasp_gold_reward"]={
+ ["value"]=1586,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=54,
+ ["unit"]=0
+ }
+ },
+ [547]={
+ ["next_chapter"]=548,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4233,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=550253,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1583,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=8160,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=23,
+ ["grasp_gold_reward"]={
+ ["value"]=1586,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=54,
+ ["unit"]=0
+ }
+ },
+ [548]={
+ ["next_chapter"]=549,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4450,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=578500,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1591,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=8240,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=23,
+ ["grasp_gold_reward"]={
+ ["value"]=1586,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=54,
+ ["unit"]=0
+ }
+ },
+ [549]={
+ ["next_chapter"]=550,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4677,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=607949,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1599,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=8320,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=23,
+ ["grasp_gold_reward"]={
+ ["value"]=1586,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=54,
+ ["unit"]=0
+ }
+ },
+ [550]={
+ ["next_chapter"]=551,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=4913,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=638625,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1607,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=8400,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=23,
+ ["grasp_gold_reward"]={
+ ["value"]=1671,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=55,
+ ["unit"]=0
+ }
+ },
+ [551]={
+ ["next_chapter"]=552,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5158,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=670553,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1615,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=8480,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=23,
+ ["grasp_gold_reward"]={
+ ["value"]=1671,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=55,
+ ["unit"]=0
+ }
+ },
+ [552]={
+ ["next_chapter"]=553,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5414,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=703757,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1623,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=8560,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=23,
+ ["grasp_gold_reward"]={
+ ["value"]=1671,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=55,
+ ["unit"]=0
+ }
+ },
+ [553]={
+ ["next_chapter"]=554,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5679,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=738264,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1631,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=8650,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=23,
+ ["grasp_gold_reward"]={
+ ["value"]=1671,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=55,
+ ["unit"]=0
+ }
+ },
+ [554]={
+ ["next_chapter"]=555,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5955,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=774097,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1639,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=8740,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=23,
+ ["grasp_gold_reward"]={
+ ["value"]=1671,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=55,
+ ["unit"]=0
+ }
+ },
+ [555]={
+ ["next_chapter"]=556,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6241,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=811283,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1647,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=8830,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=23,
+ ["grasp_gold_reward"]={
+ ["value"]=1671,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=55,
+ ["unit"]=0
+ }
+ },
+ [556]={
+ ["next_chapter"]=557,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6537,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=849846,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1655,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=8920,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=23,
+ ["grasp_gold_reward"]={
+ ["value"]=1671,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=55,
+ ["unit"]=0
+ }
+ },
+ [557]={
+ ["next_chapter"]=558,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6845,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=889810,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1664,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=9010,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=23,
+ ["grasp_gold_reward"]={
+ ["value"]=1671,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=55,
+ ["unit"]=0
+ }
+ },
+ [558]={
+ ["next_chapter"]=559,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7163,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=931202,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1673,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=9100,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=23,
+ ["grasp_gold_reward"]={
+ ["value"]=1671,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=55,
+ ["unit"]=0
+ }
+ },
+ [559]={
+ ["next_chapter"]=560,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7493,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=974047,
+ ["unit"]=2
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1682,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=9190,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=23,
+ ["grasp_gold_reward"]={
+ ["value"]=1671,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=55,
+ ["unit"]=0
+ }
+ },
+ [560]={
+ ["next_chapter"]=561,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=7834,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=1018,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1691,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=9280,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=23,
+ ["grasp_gold_reward"]={
+ ["value"]=1764,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=56,
+ ["unit"]=0
+ }
+ },
+ [561]={
+ ["next_chapter"]=562,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8186,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=1064,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1700,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=9370,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=24,
+ ["grasp_gold_reward"]={
+ ["value"]=1764,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=56,
+ ["unit"]=0
+ }
+ },
+ [562]={
+ ["next_chapter"]=563,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8550,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=1112,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1709,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=9460,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=24,
+ ["grasp_gold_reward"]={
+ ["value"]=1764,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=56,
+ ["unit"]=0
+ }
+ },
+ [563]={
+ ["next_chapter"]=564,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8927,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=1160,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1718,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=9550,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=24,
+ ["grasp_gold_reward"]={
+ ["value"]=1764,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=56,
+ ["unit"]=0
+ }
+ },
+ [564]={
+ ["next_chapter"]=565,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9315,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=1211,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1727,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=9650,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=24,
+ ["grasp_gold_reward"]={
+ ["value"]=1764,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=56,
+ ["unit"]=0
+ }
+ },
+ [565]={
+ ["next_chapter"]=566,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9715,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=1263,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1736,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=9750,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=24,
+ ["grasp_gold_reward"]={
+ ["value"]=1764,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=56,
+ ["unit"]=0
+ }
+ },
+ [566]={
+ ["next_chapter"]=567,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10129,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=1317,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1745,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=9850,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=24,
+ ["grasp_gold_reward"]={
+ ["value"]=1764,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=56,
+ ["unit"]=0
+ }
+ },
+ [567]={
+ ["next_chapter"]=568,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10554,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=1372,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1754,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=9950,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=24,
+ ["grasp_gold_reward"]={
+ ["value"]=1764,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=56,
+ ["unit"]=0
+ }
+ },
+ [568]={
+ ["next_chapter"]=569,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10993,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=1429,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1764,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=10050,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=24,
+ ["grasp_gold_reward"]={
+ ["value"]=1764,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=56,
+ ["unit"]=0
+ }
+ },
+ [569]={
+ ["next_chapter"]=570,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11445,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=1488,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1774,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=10200,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=24,
+ ["grasp_gold_reward"]={
+ ["value"]=1764,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=56,
+ ["unit"]=0
+ }
+ },
+ [570]={
+ ["next_chapter"]=571,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=11910,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=1548,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1784,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=10300,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=24,
+ ["grasp_gold_reward"]={
+ ["value"]=1867,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=57,
+ ["unit"]=0
+ }
+ },
+ [571]={
+ ["next_chapter"]=572,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12389,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=1611,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1794,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=10400,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=24,
+ ["grasp_gold_reward"]={
+ ["value"]=1867,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=57,
+ ["unit"]=0
+ }
+ },
+ [572]={
+ ["next_chapter"]=573,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12881,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=1675,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1804,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=10500,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=24,
+ ["grasp_gold_reward"]={
+ ["value"]=1867,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=57,
+ ["unit"]=0
+ }
+ },
+ [573]={
+ ["next_chapter"]=574,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13387,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=1740,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1814,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=10600,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=24,
+ ["grasp_gold_reward"]={
+ ["value"]=1867,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=57,
+ ["unit"]=0
+ }
+ },
+ [574]={
+ ["next_chapter"]=575,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13908,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=1808,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1824,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=10700,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=24,
+ ["grasp_gold_reward"]={
+ ["value"]=1867,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=57,
+ ["unit"]=0
+ }
+ },
+ [575]={
+ ["next_chapter"]=576,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14442,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=1877,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1834,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=10800,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=24,
+ ["grasp_gold_reward"]={
+ ["value"]=1867,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=57,
+ ["unit"]=0
+ }
+ },
+ [576]={
+ ["next_chapter"]=577,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14991,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=1949,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1844,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=10900,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=24,
+ ["grasp_gold_reward"]={
+ ["value"]=1867,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=57,
+ ["unit"]=0
+ }
+ },
+ [577]={
+ ["next_chapter"]=578,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15555,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=2022,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1854,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=11000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=24,
+ ["grasp_gold_reward"]={
+ ["value"]=1867,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=57,
+ ["unit"]=0
+ }
+ },
+ [578]={
+ ["next_chapter"]=579,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16133,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=2097,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1864,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=11100,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=24,
+ ["grasp_gold_reward"]={
+ ["value"]=1867,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=57,
+ ["unit"]=0
+ }
+ },
+ [579]={
+ ["next_chapter"]=580,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16727,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=2174,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1874,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=11200,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=24,
+ ["grasp_gold_reward"]={
+ ["value"]=1867,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=57,
+ ["unit"]=0
+ }
+ },
+ [580]={
+ ["next_chapter"]=581,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=17335,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=2254,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1884,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=11300,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=24,
+ ["grasp_gold_reward"]={
+ ["value"]=1980,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=58,
+ ["unit"]=0
+ }
+ },
+ [581]={
+ ["next_chapter"]=582,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17959,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=2335,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1894,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=11400,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=25,
+ ["grasp_gold_reward"]={
+ ["value"]=1980,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=58,
+ ["unit"]=0
+ }
+ },
+ [582]={
+ ["next_chapter"]=583,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18599,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=2418,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1904,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=11500,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=25,
+ ["grasp_gold_reward"]={
+ ["value"]=1980,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=58,
+ ["unit"]=0
+ }
+ },
+ [583]={
+ ["next_chapter"]=584,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19254,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=2503,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1914,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=11600,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=25,
+ ["grasp_gold_reward"]={
+ ["value"]=1980,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=58,
+ ["unit"]=0
+ }
+ },
+ [584]={
+ ["next_chapter"]=585,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19926,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=2590,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1924,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=11700,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=25,
+ ["grasp_gold_reward"]={
+ ["value"]=1980,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=58,
+ ["unit"]=0
+ }
+ },
+ [585]={
+ ["next_chapter"]=586,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20613,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=2680,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1934,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=11800,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=25,
+ ["grasp_gold_reward"]={
+ ["value"]=1980,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=58,
+ ["unit"]=0
+ }
+ },
+ [586]={
+ ["next_chapter"]=587,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21317,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=2771,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1944,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=11900,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=25,
+ ["grasp_gold_reward"]={
+ ["value"]=1980,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=58,
+ ["unit"]=0
+ }
+ },
+ [587]={
+ ["next_chapter"]=588,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22038,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=2865,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1954,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=12000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=25,
+ ["grasp_gold_reward"]={
+ ["value"]=1980,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=58,
+ ["unit"]=0
+ }
+ },
+ [588]={
+ ["next_chapter"]=589,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22775,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=2961,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1964,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=12100,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=25,
+ ["grasp_gold_reward"]={
+ ["value"]=1980,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=58,
+ ["unit"]=0
+ }
+ },
+ [589]={
+ ["next_chapter"]=590,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23530,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=3059,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1974,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=12200,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=25,
+ ["grasp_gold_reward"]={
+ ["value"]=1980,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=58,
+ ["unit"]=0
+ }
+ },
+ [590]={
+ ["next_chapter"]=591,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=24301,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=3159,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1984,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=12300,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=25,
+ ["grasp_gold_reward"]={
+ ["value"]=2103,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=59,
+ ["unit"]=0
+ }
+ },
+ [591]={
+ ["next_chapter"]=592,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25090,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=3262,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1994,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=12400,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=25,
+ ["grasp_gold_reward"]={
+ ["value"]=2103,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=59,
+ ["unit"]=0
+ }
+ },
+ [592]={
+ ["next_chapter"]=593,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25896,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=3366,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2004,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=12500,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=25,
+ ["grasp_gold_reward"]={
+ ["value"]=2103,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=59,
+ ["unit"]=0
+ }
+ },
+ [593]={
+ ["next_chapter"]=594,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26720,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=3474,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2014,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=12600,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=25,
+ ["grasp_gold_reward"]={
+ ["value"]=2103,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=59,
+ ["unit"]=0
+ }
+ },
+ [594]={
+ ["next_chapter"]=595,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27562,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=3583,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2024,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=12700,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=25,
+ ["grasp_gold_reward"]={
+ ["value"]=2103,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=59,
+ ["unit"]=0
+ }
+ },
+ [595]={
+ ["next_chapter"]=596,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28422,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=3695,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2034,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=12800,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=25,
+ ["grasp_gold_reward"]={
+ ["value"]=2103,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=59,
+ ["unit"]=0
+ }
+ },
+ [596]={
+ ["next_chapter"]=597,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29300,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=3809,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2044,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=12900,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=25,
+ ["grasp_gold_reward"]={
+ ["value"]=2103,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=59,
+ ["unit"]=0
+ }
+ },
+ [597]={
+ ["next_chapter"]=598,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30197,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=3926,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2054,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=13000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=25,
+ ["grasp_gold_reward"]={
+ ["value"]=2103,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=59,
+ ["unit"]=0
+ }
+ },
+ [598]={
+ ["next_chapter"]=599,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=31112,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=4045,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2064,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=13100,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=25,
+ ["grasp_gold_reward"]={
+ ["value"]=2103,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=59,
+ ["unit"]=0
+ }
+ },
+ [599]={
+ ["next_chapter"]=600,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=32047,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=4166,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2074,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=13200,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=25,
+ ["grasp_gold_reward"]={
+ ["value"]=2103,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=59,
+ ["unit"]=0
+ }
+ },
+ [600]={
+ ["next_chapter"]=601,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=33000,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=4620,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2084,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=13300,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=25,
+ ["grasp_gold_reward"]={
+ ["value"]=2236,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=60,
+ ["unit"]=0
+ }
+ },
+ [601]={
+ ["next_chapter"]=602,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=33001,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=4620,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2094,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=13400,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=26,
+ ["grasp_gold_reward"]={
+ ["value"]=2236,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=60,
+ ["unit"]=0
+ }
+ },
+ [602]={
+ ["next_chapter"]=603,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=33005,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=4621,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2104,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=13500,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=26,
+ ["grasp_gold_reward"]={
+ ["value"]=2236,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=60,
+ ["unit"]=0
+ }
+ },
+ [603]={
+ ["next_chapter"]=604,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=33015,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=4622,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2114,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=13600,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=26,
+ ["grasp_gold_reward"]={
+ ["value"]=2236,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=60,
+ ["unit"]=0
+ }
+ },
+ [604]={
+ ["next_chapter"]=605,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=33036,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=4625,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2124,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=13700,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=26,
+ ["grasp_gold_reward"]={
+ ["value"]=2236,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=60,
+ ["unit"]=0
+ }
+ },
+ [605]={
+ ["next_chapter"]=606,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=33071,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=4630,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2134,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=13800,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=26,
+ ["grasp_gold_reward"]={
+ ["value"]=2236,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=60,
+ ["unit"]=0
+ }
+ },
+ [606]={
+ ["next_chapter"]=607,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=33122,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=4637,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2144,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=13900,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=26,
+ ["grasp_gold_reward"]={
+ ["value"]=2236,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=60,
+ ["unit"]=0
+ }
+ },
+ [607]={
+ ["next_chapter"]=608,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=33194,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=4647,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2154,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=14000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=26,
+ ["grasp_gold_reward"]={
+ ["value"]=2236,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=60,
+ ["unit"]=0
+ }
+ },
+ [608]={
+ ["next_chapter"]=609,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=33290,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=4661,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2164,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=14100,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=26,
+ ["grasp_gold_reward"]={
+ ["value"]=2236,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=60,
+ ["unit"]=0
+ }
+ },
+ [609]={
+ ["next_chapter"]=610,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=33413,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=4678,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2174,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=14200,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=26,
+ ["grasp_gold_reward"]={
+ ["value"]=2236,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=60,
+ ["unit"]=0
+ }
+ },
+ [610]={
+ ["next_chapter"]=611,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=33567,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=4699,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2184,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=14300,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=26,
+ ["grasp_gold_reward"]={
+ ["value"]=2379,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=61,
+ ["unit"]=0
+ }
+ },
+ [611]={
+ ["next_chapter"]=612,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=33755,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=4726,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2194,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=14400,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=26,
+ ["grasp_gold_reward"]={
+ ["value"]=2379,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=61,
+ ["unit"]=0
+ }
+ },
+ [612]={
+ ["next_chapter"]=613,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=33980,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=4757,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2204,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=14500,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=26,
+ ["grasp_gold_reward"]={
+ ["value"]=2379,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=61,
+ ["unit"]=0
+ }
+ },
+ [613]={
+ ["next_chapter"]=614,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=34246,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=4794,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2214,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=14600,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=26,
+ ["grasp_gold_reward"]={
+ ["value"]=2379,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=61,
+ ["unit"]=0
+ }
+ },
+ [614]={
+ ["next_chapter"]=615,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=34556,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=4838,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2224,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=14700,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=26,
+ ["grasp_gold_reward"]={
+ ["value"]=2379,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=61,
+ ["unit"]=0
+ }
+ },
+ [615]={
+ ["next_chapter"]=616,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=34914,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=4888,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2234,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=14800,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=26,
+ ["grasp_gold_reward"]={
+ ["value"]=2379,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=61,
+ ["unit"]=0
+ }
+ },
+ [616]={
+ ["next_chapter"]=617,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=35322,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=4945,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2244,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=14900,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=26,
+ ["grasp_gold_reward"]={
+ ["value"]=2379,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=61,
+ ["unit"]=0
+ }
+ },
+ [617]={
+ ["next_chapter"]=618,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=35786,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=5010,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2254,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=15000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=26,
+ ["grasp_gold_reward"]={
+ ["value"]=2379,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=61,
+ ["unit"]=0
+ }
+ },
+ [618]={
+ ["next_chapter"]=619,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=36307,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=5083,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2264,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=15200,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=26,
+ ["grasp_gold_reward"]={
+ ["value"]=2379,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=61,
+ ["unit"]=0
+ }
+ },
+ [619]={
+ ["next_chapter"]=620,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=36889,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=5164,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2274,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=15400,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=26,
+ ["grasp_gold_reward"]={
+ ["value"]=2379,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=61,
+ ["unit"]=0
+ }
+ },
+ [620]={
+ ["next_chapter"]=621,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=37536,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=5255,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2284,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=15600,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=26,
+ ["grasp_gold_reward"]={
+ ["value"]=2535,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=62,
+ ["unit"]=0
+ }
+ },
+ [621]={
+ ["next_chapter"]=622,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=38251,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=5355,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2294,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=15800,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=26,
+ ["grasp_gold_reward"]={
+ ["value"]=2535,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=62,
+ ["unit"]=0
+ }
+ },
+ [622]={
+ ["next_chapter"]=623,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=39037,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=5465,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2304,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=16000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=26,
+ ["grasp_gold_reward"]={
+ ["value"]=2535,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=62,
+ ["unit"]=0
+ }
+ },
+ [623]={
+ ["next_chapter"]=624,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=39899,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=5586,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2314,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=16200,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=26,
+ ["grasp_gold_reward"]={
+ ["value"]=2535,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=62,
+ ["unit"]=0
+ }
+ },
+ [624]={
+ ["next_chapter"]=625,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=40838,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=5717,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2324,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=16400,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=26,
+ ["grasp_gold_reward"]={
+ ["value"]=2535,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=62,
+ ["unit"]=0
+ }
+ },
+ [625]={
+ ["next_chapter"]=626,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=41859,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=5860,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2334,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=16600,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=26,
+ ["grasp_gold_reward"]={
+ ["value"]=2535,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=62,
+ ["unit"]=0
+ }
+ },
+ [626]={
+ ["next_chapter"]=627,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=42966,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=6015,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2344,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=16800,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=26,
+ ["grasp_gold_reward"]={
+ ["value"]=2535,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=62,
+ ["unit"]=0
+ }
+ },
+ [627]={
+ ["next_chapter"]=628,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=44160,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=6182,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2354,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=17000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=26,
+ ["grasp_gold_reward"]={
+ ["value"]=2535,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=62,
+ ["unit"]=0
+ }
+ },
+ [628]={
+ ["next_chapter"]=629,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=45447,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=6363,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2364,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=17200,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=26,
+ ["grasp_gold_reward"]={
+ ["value"]=2535,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=62,
+ ["unit"]=0
+ }
+ },
+ [629]={
+ ["next_chapter"]=630,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=46829,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=6556,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2374,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=17400,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=26,
+ ["grasp_gold_reward"]={
+ ["value"]=2535,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=62,
+ ["unit"]=0
+ }
+ },
+ [630]={
+ ["next_chapter"]=631,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=48309,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=6763,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2384,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=17600,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=26,
+ ["grasp_gold_reward"]={
+ ["value"]=2711,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=63,
+ ["unit"]=0
+ }
+ },
+ [631]={
+ ["next_chapter"]=632,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=49891,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=6985,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2394,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=17800,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=26,
+ ["grasp_gold_reward"]={
+ ["value"]=2711,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=63,
+ ["unit"]=0
+ }
+ },
+ [632]={
+ ["next_chapter"]=633,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=51579,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=7221,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2404,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=18000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=26,
+ ["grasp_gold_reward"]={
+ ["value"]=2711,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=63,
+ ["unit"]=0
+ }
+ },
+ [633]={
+ ["next_chapter"]=634,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=53376,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=7473,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2414,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=18200,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=26,
+ ["grasp_gold_reward"]={
+ ["value"]=2711,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=63,
+ ["unit"]=0
+ }
+ },
+ [634]={
+ ["next_chapter"]=635,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=55285,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=7740,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2424,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=18400,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=26,
+ ["grasp_gold_reward"]={
+ ["value"]=2711,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=63,
+ ["unit"]=0
+ }
+ },
+ [635]={
+ ["next_chapter"]=636,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=57310,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=8023,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2434,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=18600,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=26,
+ ["grasp_gold_reward"]={
+ ["value"]=2711,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=63,
+ ["unit"]=0
+ }
+ },
+ [636]={
+ ["next_chapter"]=637,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=59454,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=8324,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2444,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=18800,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=26,
+ ["grasp_gold_reward"]={
+ ["value"]=2711,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=63,
+ ["unit"]=0
+ }
+ },
+ [637]={
+ ["next_chapter"]=638,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=61720,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=8641,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2454,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=19000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=26,
+ ["grasp_gold_reward"]={
+ ["value"]=2711,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=63,
+ ["unit"]=0
+ }
+ },
+ [638]={
+ ["next_chapter"]=639,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=64112,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=8976,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2464,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=19200,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=26,
+ ["grasp_gold_reward"]={
+ ["value"]=2711,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=63,
+ ["unit"]=0
+ }
+ },
+ [639]={
+ ["next_chapter"]=640,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=66634,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=9329,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2474,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=19400,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=26,
+ ["grasp_gold_reward"]={
+ ["value"]=2711,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=63,
+ ["unit"]=0
+ }
+ },
+ [640]={
+ ["next_chapter"]=641,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=69288,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=9700,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2484,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=19600,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=26,
+ ["grasp_gold_reward"]={
+ ["value"]=2907,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=64,
+ ["unit"]=0
+ }
+ },
+ [641]={
+ ["next_chapter"]=642,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=72078,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=10091,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2494,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=19800,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=27,
+ ["grasp_gold_reward"]={
+ ["value"]=2907,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=64,
+ ["unit"]=0
+ }
+ },
+ [642]={
+ ["next_chapter"]=643,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=75008,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=10501,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2514,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=20000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=27,
+ ["grasp_gold_reward"]={
+ ["value"]=2907,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=64,
+ ["unit"]=0
+ }
+ },
+ [643]={
+ ["next_chapter"]=644,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=78080,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=10931,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2534,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=20200,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=27,
+ ["grasp_gold_reward"]={
+ ["value"]=2907,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=64,
+ ["unit"]=0
+ }
+ },
+ [644]={
+ ["next_chapter"]=645,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=81299,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=11382,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2554,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=20400,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=27,
+ ["grasp_gold_reward"]={
+ ["value"]=2907,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=64,
+ ["unit"]=0
+ }
+ },
+ [645]={
+ ["next_chapter"]=646,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=84668,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=11854,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2574,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=20600,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=27,
+ ["grasp_gold_reward"]={
+ ["value"]=2907,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=64,
+ ["unit"]=0
+ }
+ },
+ [646]={
+ ["next_chapter"]=647,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=88190,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=12347,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2594,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=20800,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=27,
+ ["grasp_gold_reward"]={
+ ["value"]=2907,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=64,
+ ["unit"]=0
+ }
+ },
+ [647]={
+ ["next_chapter"]=648,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=91868,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=12861,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2614,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=21000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=27,
+ ["grasp_gold_reward"]={
+ ["value"]=2907,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=64,
+ ["unit"]=0
+ }
+ },
+ [648]={
+ ["next_chapter"]=649,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=95706,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=13399,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2634,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=21200,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=27,
+ ["grasp_gold_reward"]={
+ ["value"]=2907,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=64,
+ ["unit"]=0
+ }
+ },
+ [649]={
+ ["next_chapter"]=650,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=99707,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=13959,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2654,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=21400,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=27,
+ ["grasp_gold_reward"]={
+ ["value"]=2907,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=64,
+ ["unit"]=0
+ }
+ },
+ [650]={
+ ["next_chapter"]=651,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=103875,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=14543,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2674,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=21600,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=27,
+ ["grasp_gold_reward"]={
+ ["value"]=3123,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=65,
+ ["unit"]=0
+ }
+ },
+ [651]={
+ ["next_chapter"]=652,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=108213,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=15150,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2694,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=21800,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=27,
+ ["grasp_gold_reward"]={
+ ["value"]=3123,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=65,
+ ["unit"]=0
+ }
+ },
+ [652]={
+ ["next_chapter"]=653,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=112725,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=15781,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2714,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=22000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=27,
+ ["grasp_gold_reward"]={
+ ["value"]=3123,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=65,
+ ["unit"]=0
+ }
+ },
+ [653]={
+ ["next_chapter"]=654,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=117413,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=16438,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2734,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=22200,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=27,
+ ["grasp_gold_reward"]={
+ ["value"]=3123,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=65,
+ ["unit"]=0
+ }
+ },
+ [654]={
+ ["next_chapter"]=655,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=122282,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=17119,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2754,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=22400,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=27,
+ ["grasp_gold_reward"]={
+ ["value"]=3123,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=65,
+ ["unit"]=0
+ }
+ },
+ [655]={
+ ["next_chapter"]=656,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=127335,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=17827,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2774,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=22600,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=27,
+ ["grasp_gold_reward"]={
+ ["value"]=3123,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=65,
+ ["unit"]=0
+ }
+ },
+ [656]={
+ ["next_chapter"]=657,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=132574,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=18560,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2794,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=22800,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=27,
+ ["grasp_gold_reward"]={
+ ["value"]=3123,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=65,
+ ["unit"]=0
+ }
+ },
+ [657]={
+ ["next_chapter"]=658,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=138004,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=19321,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2814,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=23000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=27,
+ ["grasp_gold_reward"]={
+ ["value"]=3123,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=65,
+ ["unit"]=0
+ }
+ },
+ [658]={
+ ["next_chapter"]=659,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=143629,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=20108,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2834,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=23200,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=27,
+ ["grasp_gold_reward"]={
+ ["value"]=3123,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=65,
+ ["unit"]=0
+ }
+ },
+ [659]={
+ ["next_chapter"]=660,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=149450,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=20923,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2854,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=23400,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=27,
+ ["grasp_gold_reward"]={
+ ["value"]=3123,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=65,
+ ["unit"]=0
+ }
+ },
+ [660]={
+ ["next_chapter"]=661,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=155472,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=21766,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2874,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=23600,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=27,
+ ["grasp_gold_reward"]={
+ ["value"]=3359,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=66,
+ ["unit"]=0
+ }
+ },
+ [661]={
+ ["next_chapter"]=662,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=161698,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=22638,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2894,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=23800,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=28,
+ ["grasp_gold_reward"]={
+ ["value"]=3359,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=66,
+ ["unit"]=0
+ }
+ },
+ [662]={
+ ["next_chapter"]=663,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=168132,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=23538,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2914,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=24000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=28,
+ ["grasp_gold_reward"]={
+ ["value"]=3359,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=66,
+ ["unit"]=0
+ }
+ },
+ [663]={
+ ["next_chapter"]=664,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=174777,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=24469,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2934,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=24200,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=28,
+ ["grasp_gold_reward"]={
+ ["value"]=3359,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=66,
+ ["unit"]=0
+ }
+ },
+ [664]={
+ ["next_chapter"]=665,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=181636,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=25429,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2954,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=24400,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=28,
+ ["grasp_gold_reward"]={
+ ["value"]=3359,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=66,
+ ["unit"]=0
+ }
+ },
+ [665]={
+ ["next_chapter"]=666,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=188712,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=26420,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2974,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=24600,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=28,
+ ["grasp_gold_reward"]={
+ ["value"]=3359,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=66,
+ ["unit"]=0
+ }
+ },
+ [666]={
+ ["next_chapter"]=667,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=196010,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=27441,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2994,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=24800,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=28,
+ ["grasp_gold_reward"]={
+ ["value"]=3359,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=66,
+ ["unit"]=0
+ }
+ },
+ [667]={
+ ["next_chapter"]=668,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=203533,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=28495,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3014,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=25000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=28,
+ ["grasp_gold_reward"]={
+ ["value"]=3359,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=66,
+ ["unit"]=0
+ }
+ },
+ [668]={
+ ["next_chapter"]=669,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=211283,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=29580,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3034,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=25300,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=28,
+ ["grasp_gold_reward"]={
+ ["value"]=3359,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=66,
+ ["unit"]=0
+ }
+ },
+ [669]={
+ ["next_chapter"]=670,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=219265,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=30697,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3054,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=25600,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=28,
+ ["grasp_gold_reward"]={
+ ["value"]=3359,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=66,
+ ["unit"]=0
+ }
+ },
+ [670]={
+ ["next_chapter"]=671,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=227481,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=31847,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3074,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=25900,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=28,
+ ["grasp_gold_reward"]={
+ ["value"]=3618,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=67,
+ ["unit"]=0
+ }
+ },
+ [671]={
+ ["next_chapter"]=672,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=235936,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=33031,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3094,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=26200,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=28,
+ ["grasp_gold_reward"]={
+ ["value"]=3618,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=67,
+ ["unit"]=0
+ }
+ },
+ [672]={
+ ["next_chapter"]=673,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=244632,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=34248,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3114,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=26500,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=28,
+ ["grasp_gold_reward"]={
+ ["value"]=3618,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=67,
+ ["unit"]=0
+ }
+ },
+ [673]={
+ ["next_chapter"]=674,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=253573,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=35500,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3134,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=26800,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=28,
+ ["grasp_gold_reward"]={
+ ["value"]=3618,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=67,
+ ["unit"]=0
+ }
+ },
+ [674]={
+ ["next_chapter"]=675,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=262762,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=36787,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3154,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=27100,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=28,
+ ["grasp_gold_reward"]={
+ ["value"]=3618,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=67,
+ ["unit"]=0
+ }
+ },
+ [675]={
+ ["next_chapter"]=676,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=272203,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=38108,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3174,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=27400,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=28,
+ ["grasp_gold_reward"]={
+ ["value"]=3618,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=67,
+ ["unit"]=0
+ }
+ },
+ [676]={
+ ["next_chapter"]=677,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=281899,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=39466,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3194,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=27700,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=28,
+ ["grasp_gold_reward"]={
+ ["value"]=3618,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=67,
+ ["unit"]=0
+ }
+ },
+ [677]={
+ ["next_chapter"]=678,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=291854,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=40860,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3214,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=28000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=28,
+ ["grasp_gold_reward"]={
+ ["value"]=3618,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=67,
+ ["unit"]=0
+ }
+ },
+ [678]={
+ ["next_chapter"]=679,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=302071,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=42290,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3234,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=28300,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=28,
+ ["grasp_gold_reward"]={
+ ["value"]=3618,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=67,
+ ["unit"]=0
+ }
+ },
+ [679]={
+ ["next_chapter"]=680,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=312553,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=43757,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3254,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=28600,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=28,
+ ["grasp_gold_reward"]={
+ ["value"]=3618,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=67,
+ ["unit"]=0
+ }
+ },
+ [680]={
+ ["next_chapter"]=681,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=323304,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=45263,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3274,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=28900,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=28,
+ ["grasp_gold_reward"]={
+ ["value"]=3907,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=68,
+ ["unit"]=0
+ }
+ },
+ [681]={
+ ["next_chapter"]=682,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=334327,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=46806,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3294,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=29200,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=29,
+ ["grasp_gold_reward"]={
+ ["value"]=3907,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=68,
+ ["unit"]=0
+ }
+ },
+ [682]={
+ ["next_chapter"]=683,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=345626,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=48388,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3314,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=29500,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=29,
+ ["grasp_gold_reward"]={
+ ["value"]=3907,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=68,
+ ["unit"]=0
+ }
+ },
+ [683]={
+ ["next_chapter"]=684,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=357203,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=50008,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3334,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=29800,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=29,
+ ["grasp_gold_reward"]={
+ ["value"]=3907,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=68,
+ ["unit"]=0
+ }
+ },
+ [684]={
+ ["next_chapter"]=685,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=369063,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=51669,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3364,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=30100,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=29,
+ ["grasp_gold_reward"]={
+ ["value"]=3907,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=68,
+ ["unit"]=0
+ }
+ },
+ [685]={
+ ["next_chapter"]=686,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=381209,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=53369,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3394,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=30400,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=29,
+ ["grasp_gold_reward"]={
+ ["value"]=3907,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=68,
+ ["unit"]=0
+ }
+ },
+ [686]={
+ ["next_chapter"]=687,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=393644,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=55110,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3424,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=30700,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=29,
+ ["grasp_gold_reward"]={
+ ["value"]=3907,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=68,
+ ["unit"]=0
+ }
+ },
+ [687]={
+ ["next_chapter"]=688,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=406371,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=56892,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3454,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=31000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=29,
+ ["grasp_gold_reward"]={
+ ["value"]=3907,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=68,
+ ["unit"]=0
+ }
+ },
+ [688]={
+ ["next_chapter"]=689,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=419395,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=58715,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3484,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=31300,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=29,
+ ["grasp_gold_reward"]={
+ ["value"]=3907,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=68,
+ ["unit"]=0
+ }
+ },
+ [689]={
+ ["next_chapter"]=690,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=432717,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=60580,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3514,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=31600,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=29,
+ ["grasp_gold_reward"]={
+ ["value"]=3907,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=68,
+ ["unit"]=0
+ }
+ },
+ [690]={
+ ["next_chapter"]=691,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=446343,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=62488,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3544,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=31900,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=29,
+ ["grasp_gold_reward"]={
+ ["value"]=4226,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=69,
+ ["unit"]=0
+ }
+ },
+ [691]={
+ ["next_chapter"]=692,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=460275,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=64438,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3574,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=32200,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=29,
+ ["grasp_gold_reward"]={
+ ["value"]=4226,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=69,
+ ["unit"]=0
+ }
+ },
+ [692]={
+ ["next_chapter"]=693,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=474516,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=66432,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3604,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=32500,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=29,
+ ["grasp_gold_reward"]={
+ ["value"]=4226,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=69,
+ ["unit"]=0
+ }
+ },
+ [693]={
+ ["next_chapter"]=694,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=489070,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=68470,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3634,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=32800,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=29,
+ ["grasp_gold_reward"]={
+ ["value"]=4226,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=69,
+ ["unit"]=0
+ }
+ },
+ [694]={
+ ["next_chapter"]=695,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=503941,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=70552,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3664,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=33100,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=29,
+ ["grasp_gold_reward"]={
+ ["value"]=4226,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=69,
+ ["unit"]=0
+ }
+ },
+ [695]={
+ ["next_chapter"]=696,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=519132,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=72678,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3694,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=33400,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=29,
+ ["grasp_gold_reward"]={
+ ["value"]=4226,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=69,
+ ["unit"]=0
+ }
+ },
+ [696]={
+ ["next_chapter"]=697,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=534645,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=74850,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3724,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=33700,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=29,
+ ["grasp_gold_reward"]={
+ ["value"]=4226,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=69,
+ ["unit"]=0
+ }
+ },
+ [697]={
+ ["next_chapter"]=698,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=550486,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=77068,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3754,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=34000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=29,
+ ["grasp_gold_reward"]={
+ ["value"]=4226,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=69,
+ ["unit"]=0
+ }
+ },
+ [698]={
+ ["next_chapter"]=699,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=566656,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=79332,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3784,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=34300,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=29,
+ ["grasp_gold_reward"]={
+ ["value"]=4226,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=69,
+ ["unit"]=0
+ }
+ },
+ [699]={
+ ["next_chapter"]=700,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=583160,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=81642,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3814,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=34600,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=29,
+ ["grasp_gold_reward"]={
+ ["value"]=4226,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=69,
+ ["unit"]=0
+ }
+ },
+ [700]={
+ ["next_chapter"]=701,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=600000,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=90000,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3844,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=34900,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=29,
+ ["grasp_gold_reward"]={
+ ["value"]=4575,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=70,
+ ["unit"]=0
+ }
+ },
+ [701]={
+ ["next_chapter"]=702,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=600004,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=90001,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3874,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=35200,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=29,
+ ["grasp_gold_reward"]={
+ ["value"]=4575,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=70,
+ ["unit"]=0
+ }
+ },
+ [702]={
+ ["next_chapter"]=703,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=600035,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=90005,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3904,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=35600,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=29,
+ ["grasp_gold_reward"]={
+ ["value"]=4575,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=70,
+ ["unit"]=0
+ }
+ },
+ [703]={
+ ["next_chapter"]=704,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=600119,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=90018,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3934,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=36000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=29,
+ ["grasp_gold_reward"]={
+ ["value"]=4575,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=70,
+ ["unit"]=0
+ }
+ },
+ [704]={
+ ["next_chapter"]=705,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=600283,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=90042,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3964,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=36400,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=29,
+ ["grasp_gold_reward"]={
+ ["value"]=4575,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=70,
+ ["unit"]=0
+ }
+ },
+ [705]={
+ ["next_chapter"]=706,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=600553,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=90083,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3994,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=36800,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=29,
+ ["grasp_gold_reward"]={
+ ["value"]=4575,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=70,
+ ["unit"]=0
+ }
+ },
+ [706]={
+ ["next_chapter"]=707,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=600955,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=90143,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4024,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=37200,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=29,
+ ["grasp_gold_reward"]={
+ ["value"]=4575,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=70,
+ ["unit"]=0
+ }
+ },
+ [707]={
+ ["next_chapter"]=708,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=601517,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=90228,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4054,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=37600,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=29,
+ ["grasp_gold_reward"]={
+ ["value"]=4575,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=70,
+ ["unit"]=0
+ }
+ },
+ [708]={
+ ["next_chapter"]=709,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=602264,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=90340,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4084,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=38000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=29,
+ ["grasp_gold_reward"]={
+ ["value"]=4575,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=70,
+ ["unit"]=0
+ }
+ },
+ [709]={
+ ["next_chapter"]=710,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=603224,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=90484,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4114,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=38400,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=29,
+ ["grasp_gold_reward"]={
+ ["value"]=4575,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=70,
+ ["unit"]=0
+ }
+ },
+ [710]={
+ ["next_chapter"]=711,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=604422,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=90663,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4144,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=38800,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=29,
+ ["grasp_gold_reward"]={
+ ["value"]=4963,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=71,
+ ["unit"]=0
+ }
+ },
+ [711]={
+ ["next_chapter"]=712,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=605886,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=90883,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4174,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=39200,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=29,
+ ["grasp_gold_reward"]={
+ ["value"]=4963,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=71,
+ ["unit"]=0
+ }
+ },
+ [712]={
+ ["next_chapter"]=713,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=607642,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=91146,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4204,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=39600,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=29,
+ ["grasp_gold_reward"]={
+ ["value"]=4963,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=71,
+ ["unit"]=0
+ }
+ },
+ [713]={
+ ["next_chapter"]=714,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=609716,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=91457,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4244,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=40000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=29,
+ ["grasp_gold_reward"]={
+ ["value"]=4963,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=71,
+ ["unit"]=0
+ }
+ },
+ [714]={
+ ["next_chapter"]=715,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=612135,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=91820,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4284,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=40400,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=29,
+ ["grasp_gold_reward"]={
+ ["value"]=4963,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=71,
+ ["unit"]=0
+ }
+ },
+ [715]={
+ ["next_chapter"]=716,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=614925,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=92239,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4324,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=40800,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=29,
+ ["grasp_gold_reward"]={
+ ["value"]=4963,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=71,
+ ["unit"]=0
+ }
+ },
+ [716]={
+ ["next_chapter"]=717,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=618113,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=92717,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4364,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=41200,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=29,
+ ["grasp_gold_reward"]={
+ ["value"]=4963,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=71,
+ ["unit"]=0
+ }
+ },
+ [717]={
+ ["next_chapter"]=718,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=621726,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=93259,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4404,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=41600,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=29,
+ ["grasp_gold_reward"]={
+ ["value"]=4963,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=71,
+ ["unit"]=0
+ }
+ },
+ [718]={
+ ["next_chapter"]=719,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=625790,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=93869,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4444,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=42000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=29,
+ ["grasp_gold_reward"]={
+ ["value"]=4963,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=71,
+ ["unit"]=0
+ }
+ },
+ [719]={
+ ["next_chapter"]=720,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=630332,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=94550,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4484,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=42400,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=29,
+ ["grasp_gold_reward"]={
+ ["value"]=4963,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=71,
+ ["unit"]=0
+ }
+ },
+ [720]={
+ ["next_chapter"]=721,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=635378,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=95307,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4524,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=42800,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=29,
+ ["grasp_gold_reward"]={
+ ["value"]=5391,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=72,
+ ["unit"]=0
+ }
+ },
+ [721]={
+ ["next_chapter"]=722,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=640954,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=96143,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4564,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=43200,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=30,
+ ["grasp_gold_reward"]={
+ ["value"]=5391,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=72,
+ ["unit"]=0
+ }
+ },
+ [722]={
+ ["next_chapter"]=723,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=647088,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=97063,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4604,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=43600,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=30,
+ ["grasp_gold_reward"]={
+ ["value"]=5391,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=72,
+ ["unit"]=0
+ }
+ },
+ [723]={
+ ["next_chapter"]=724,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=653805,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=98071,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4644,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=44000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=30,
+ ["grasp_gold_reward"]={
+ ["value"]=5391,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=72,
+ ["unit"]=0
+ }
+ },
+ [724]={
+ ["next_chapter"]=725,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=661133,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=99170,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4684,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=44400,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=30,
+ ["grasp_gold_reward"]={
+ ["value"]=5391,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=72,
+ ["unit"]=0
+ }
+ },
+ [725]={
+ ["next_chapter"]=726,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=669097,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=100365,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4724,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=44800,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=30,
+ ["grasp_gold_reward"]={
+ ["value"]=5391,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=72,
+ ["unit"]=0
+ }
+ },
+ [726]={
+ ["next_chapter"]=727,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=677725,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=101659,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4764,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=45200,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=30,
+ ["grasp_gold_reward"]={
+ ["value"]=5391,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=72,
+ ["unit"]=0
+ }
+ },
+ [727]={
+ ["next_chapter"]=728,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=687043,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=103056,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4804,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=45700,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=30,
+ ["grasp_gold_reward"]={
+ ["value"]=5391,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=72,
+ ["unit"]=0
+ }
+ },
+ [728]={
+ ["next_chapter"]=729,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=697077,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=104561,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4844,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=46200,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=30,
+ ["grasp_gold_reward"]={
+ ["value"]=5391,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=72,
+ ["unit"]=0
+ }
+ },
+ [729]={
+ ["next_chapter"]=730,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=707854,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=106178,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4884,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=46700,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=30,
+ ["grasp_gold_reward"]={
+ ["value"]=5391,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=72,
+ ["unit"]=0
+ }
+ },
+ [730]={
+ ["next_chapter"]=731,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=719400,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=107910,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4924,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=47200,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=30,
+ ["grasp_gold_reward"]={
+ ["value"]=5863,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=73,
+ ["unit"]=0
+ }
+ },
+ [731]={
+ ["next_chapter"]=732,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=731742,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=109761,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4964,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=47700,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=30,
+ ["grasp_gold_reward"]={
+ ["value"]=5863,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=73,
+ ["unit"]=0
+ }
+ },
+ [732]={
+ ["next_chapter"]=733,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=744907,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=111736,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5004,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=48200,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=30,
+ ["grasp_gold_reward"]={
+ ["value"]=5863,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=73,
+ ["unit"]=0
+ }
+ },
+ [733]={
+ ["next_chapter"]=734,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=758921,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=113838,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5044,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=48700,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=30,
+ ["grasp_gold_reward"]={
+ ["value"]=5863,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=73,
+ ["unit"]=0
+ }
+ },
+ [734]={
+ ["next_chapter"]=735,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=773811,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=116072,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5084,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=49200,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=30,
+ ["grasp_gold_reward"]={
+ ["value"]=5863,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=73,
+ ["unit"]=0
+ }
+ },
+ [735]={
+ ["next_chapter"]=736,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=789603,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=118440,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5124,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=49700,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=30,
+ ["grasp_gold_reward"]={
+ ["value"]=5863,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=73,
+ ["unit"]=0
+ }
+ },
+ [736]={
+ ["next_chapter"]=737,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=806323,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=120948,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5174,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=50200,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=30,
+ ["grasp_gold_reward"]={
+ ["value"]=5863,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=73,
+ ["unit"]=0
+ }
+ },
+ [737]={
+ ["next_chapter"]=738,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=823999,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=123600,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5224,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=50700,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=30,
+ ["grasp_gold_reward"]={
+ ["value"]=5863,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=73,
+ ["unit"]=0
+ }
+ },
+ [738]={
+ ["next_chapter"]=739,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=842656,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=126398,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5274,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=51200,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=30,
+ ["grasp_gold_reward"]={
+ ["value"]=5863,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=73,
+ ["unit"]=0
+ }
+ },
+ [739]={
+ ["next_chapter"]=740,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=862322,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=129348,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5324,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=51700,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=30,
+ ["grasp_gold_reward"]={
+ ["value"]=5863,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=73,
+ ["unit"]=0
+ }
+ },
+ [740]={
+ ["next_chapter"]=741,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=883022,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=132453,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5374,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=52200,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=30,
+ ["grasp_gold_reward"]={
+ ["value"]=6385,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=74,
+ ["unit"]=0
+ }
+ },
+ [741]={
+ ["next_chapter"]=742,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=904784,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=135718,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5424,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=52700,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=31,
+ ["grasp_gold_reward"]={
+ ["value"]=6385,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=74,
+ ["unit"]=0
+ }
+ },
+ [742]={
+ ["next_chapter"]=743,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=927634,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=139145,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5474,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=53200,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=31,
+ ["grasp_gold_reward"]={
+ ["value"]=6385,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=74,
+ ["unit"]=0
+ }
+ },
+ [743]={
+ ["next_chapter"]=744,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=951598,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=142740,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5524,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=53700,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=31,
+ ["grasp_gold_reward"]={
+ ["value"]=6385,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=74,
+ ["unit"]=0
+ }
+ },
+ [744]={
+ ["next_chapter"]=745,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=976703,
+ ["unit"]=2
+ },
+ ["hp_coefficient"]={
+ ["value"]=146505,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5574,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=54200,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=31,
+ ["grasp_gold_reward"]={
+ ["value"]=6385,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=74,
+ ["unit"]=0
+ }
+ },
+ [745]={
+ ["next_chapter"]=746,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1003,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=150446,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5624,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=54700,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=31,
+ ["grasp_gold_reward"]={
+ ["value"]=6385,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=74,
+ ["unit"]=0
+ }
+ },
+ [746]={
+ ["next_chapter"]=747,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1030,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=154566,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5674,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=55200,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=31,
+ ["grasp_gold_reward"]={
+ ["value"]=6385,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=74,
+ ["unit"]=0
+ }
+ },
+ [747]={
+ ["next_chapter"]=748,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1059,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=158869,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5724,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=55800,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=31,
+ ["grasp_gold_reward"]={
+ ["value"]=6385,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=74,
+ ["unit"]=0
+ }
+ },
+ [748]={
+ ["next_chapter"]=749,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1089,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=163359,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5774,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=56400,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=31,
+ ["grasp_gold_reward"]={
+ ["value"]=6385,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=74,
+ ["unit"]=0
+ }
+ },
+ [749]={
+ ["next_chapter"]=750,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1120,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=168041,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5824,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=57000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=31,
+ ["grasp_gold_reward"]={
+ ["value"]=6385,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=74,
+ ["unit"]=0
+ }
+ },
+ [750]={
+ ["next_chapter"]=751,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=1153,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=172917,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5874,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=57600,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=31,
+ ["grasp_gold_reward"]={
+ ["value"]=6961,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=75,
+ ["unit"]=0
+ }
+ },
+ [751]={
+ ["next_chapter"]=752,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1187,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=177992,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5924,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=58200,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=31,
+ ["grasp_gold_reward"]={
+ ["value"]=6961,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=75,
+ ["unit"]=0
+ }
+ },
+ [752]={
+ ["next_chapter"]=753,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1222,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=183270,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5974,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=58800,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=31,
+ ["grasp_gold_reward"]={
+ ["value"]=6961,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=75,
+ ["unit"]=0
+ }
+ },
+ [753]={
+ ["next_chapter"]=754,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1258,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=188755,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6024,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=59400,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=31,
+ ["grasp_gold_reward"]={
+ ["value"]=6961,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=75,
+ ["unit"]=0
+ }
+ },
+ [754]={
+ ["next_chapter"]=755,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1296,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=194451,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6084,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=60000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=31,
+ ["grasp_gold_reward"]={
+ ["value"]=6961,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=75,
+ ["unit"]=0
+ }
+ },
+ [755]={
+ ["next_chapter"]=756,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1336,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=200362,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6144,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=60600,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=31,
+ ["grasp_gold_reward"]={
+ ["value"]=6961,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=75,
+ ["unit"]=0
+ }
+ },
+ [756]={
+ ["next_chapter"]=757,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1377,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=206492,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6204,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=61200,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=31,
+ ["grasp_gold_reward"]={
+ ["value"]=6961,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=75,
+ ["unit"]=0
+ }
+ },
+ [757]={
+ ["next_chapter"]=758,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1419,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=212845,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6264,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=61800,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=31,
+ ["grasp_gold_reward"]={
+ ["value"]=6961,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=75,
+ ["unit"]=0
+ }
+ },
+ [758]={
+ ["next_chapter"]=759,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1463,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=219424,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6324,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=62400,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=31,
+ ["grasp_gold_reward"]={
+ ["value"]=6961,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=75,
+ ["unit"]=0
+ }
+ },
+ [759]={
+ ["next_chapter"]=760,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1508,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=226235,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6384,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=63000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=31,
+ ["grasp_gold_reward"]={
+ ["value"]=6961,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=75,
+ ["unit"]=0
+ }
+ },
+ [760]={
+ ["next_chapter"]=761,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=1555,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=233280,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6444,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=63600,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=31,
+ ["grasp_gold_reward"]={
+ ["value"]=7597,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=76,
+ ["unit"]=0
+ }
+ },
+ [761]={
+ ["next_chapter"]=762,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1604,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=240564,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6504,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=64200,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=32,
+ ["grasp_gold_reward"]={
+ ["value"]=7597,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=76,
+ ["unit"]=0
+ }
+ },
+ [762]={
+ ["next_chapter"]=763,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1654,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=248091,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6564,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=64800,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=32,
+ ["grasp_gold_reward"]={
+ ["value"]=7597,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=76,
+ ["unit"]=0
+ }
+ },
+ [763]={
+ ["next_chapter"]=764,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1706,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=255865,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6624,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=65400,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=32,
+ ["grasp_gold_reward"]={
+ ["value"]=7597,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=76,
+ ["unit"]=0
+ }
+ },
+ [764]={
+ ["next_chapter"]=765,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1759,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=263889,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6684,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=66100,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=32,
+ ["grasp_gold_reward"]={
+ ["value"]=7597,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=76,
+ ["unit"]=0
+ }
+ },
+ [765]={
+ ["next_chapter"]=766,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1814,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=272168,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=66800,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=32,
+ ["grasp_gold_reward"]={
+ ["value"]=7597,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=76,
+ ["unit"]=0
+ }
+ },
+ [766]={
+ ["next_chapter"]=767,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1871,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=280706,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6804,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=67500,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=32,
+ ["grasp_gold_reward"]={
+ ["value"]=7597,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=76,
+ ["unit"]=0
+ }
+ },
+ [767]={
+ ["next_chapter"]=768,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1930,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=289506,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6864,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=68200,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=32,
+ ["grasp_gold_reward"]={
+ ["value"]=7597,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=76,
+ ["unit"]=0
+ }
+ },
+ [768]={
+ ["next_chapter"]=769,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1990,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=298573,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6924,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=68900,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=32,
+ ["grasp_gold_reward"]={
+ ["value"]=7597,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=76,
+ ["unit"]=0
+ }
+ },
+ [769]={
+ ["next_chapter"]=770,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2053,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=307911,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6984,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=69600,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=32,
+ ["grasp_gold_reward"]={
+ ["value"]=7597,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=76,
+ ["unit"]=0
+ }
+ },
+ [770]={
+ ["next_chapter"]=771,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=2117,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=317523,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7054,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=70300,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=32,
+ ["grasp_gold_reward"]={
+ ["value"]=8300,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=77,
+ ["unit"]=0
+ }
+ },
+ [771]={
+ ["next_chapter"]=772,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2183,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=327414,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7124,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=71000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=32,
+ ["grasp_gold_reward"]={
+ ["value"]=8300,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=77,
+ ["unit"]=0
+ }
+ },
+ [772]={
+ ["next_chapter"]=773,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2251,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=337588,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7194,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=71700,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=32,
+ ["grasp_gold_reward"]={
+ ["value"]=8300,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=77,
+ ["unit"]=0
+ }
+ },
+ [773]={
+ ["next_chapter"]=774,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2320,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=348048,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7264,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=72400,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=32,
+ ["grasp_gold_reward"]={
+ ["value"]=8300,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=77,
+ ["unit"]=0
+ }
+ },
+ [774]={
+ ["next_chapter"]=775,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2392,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=358799,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7334,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=73100,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=32,
+ ["grasp_gold_reward"]={
+ ["value"]=8300,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=77,
+ ["unit"]=0
+ }
+ },
+ [775]={
+ ["next_chapter"]=776,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2466,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=369844,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7404,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=73800,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=32,
+ ["grasp_gold_reward"]={
+ ["value"]=8300,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=77,
+ ["unit"]=0
+ }
+ },
+ [776]={
+ ["next_chapter"]=777,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2541,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=381187,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7474,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=74500,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=32,
+ ["grasp_gold_reward"]={
+ ["value"]=8300,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=77,
+ ["unit"]=0
+ }
+ },
+ [777]={
+ ["next_chapter"]=778,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2619,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=392834,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7544,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=75200,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=32,
+ ["grasp_gold_reward"]={
+ ["value"]=8300,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=77,
+ ["unit"]=0
+ }
+ },
+ [778]={
+ ["next_chapter"]=779,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2699,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=404786,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7614,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=76000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=32,
+ ["grasp_gold_reward"]={
+ ["value"]=8300,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=77,
+ ["unit"]=0
+ }
+ },
+ [779]={
+ ["next_chapter"]=780,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2780,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=417049,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7684,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=76800,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=32,
+ ["grasp_gold_reward"]={
+ ["value"]=8300,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=77,
+ ["unit"]=0
+ }
+ },
+ [780]={
+ ["next_chapter"]=781,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=2864,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=429627,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7754,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=77600,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=32,
+ ["grasp_gold_reward"]={
+ ["value"]=9076,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=78,
+ ["unit"]=0
+ }
+ },
+ [781]={
+ ["next_chapter"]=782,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2950,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=442523,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7824,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=78400,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=32,
+ ["grasp_gold_reward"]={
+ ["value"]=9076,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=78,
+ ["unit"]=0
+ }
+ },
+ [782]={
+ ["next_chapter"]=783,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3038,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=455741,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7894,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=79200,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=32,
+ ["grasp_gold_reward"]={
+ ["value"]=9076,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=78,
+ ["unit"]=0
+ }
+ },
+ [783]={
+ ["next_chapter"]=784,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3129,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=469285,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7974,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=80000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=32,
+ ["grasp_gold_reward"]={
+ ["value"]=9076,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=78,
+ ["unit"]=0
+ }
+ },
+ [784]={
+ ["next_chapter"]=785,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3221,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=483160,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8054,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=80800,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=32,
+ ["grasp_gold_reward"]={
+ ["value"]=9076,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=78,
+ ["unit"]=0
+ }
+ },
+ [785]={
+ ["next_chapter"]=786,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3316,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=497370,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8134,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=81600,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=32,
+ ["grasp_gold_reward"]={
+ ["value"]=9076,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=78,
+ ["unit"]=0
+ }
+ },
+ [786]={
+ ["next_chapter"]=787,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3413,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=511917,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8214,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=82400,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=32,
+ ["grasp_gold_reward"]={
+ ["value"]=9076,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=78,
+ ["unit"]=0
+ }
+ },
+ [787]={
+ ["next_chapter"]=788,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3512,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=526807,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8294,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=83200,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=32,
+ ["grasp_gold_reward"]={
+ ["value"]=9076,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=78,
+ ["unit"]=0
+ }
+ },
+ [788]={
+ ["next_chapter"]=789,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3614,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=542043,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8374,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=84000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=32,
+ ["grasp_gold_reward"]={
+ ["value"]=9076,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=78,
+ ["unit"]=0
+ }
+ },
+ [789]={
+ ["next_chapter"]=790,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3718,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=557629,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8454,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=84800,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=32,
+ ["grasp_gold_reward"]={
+ ["value"]=9076,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=78,
+ ["unit"]=0
+ }
+ },
+ [790]={
+ ["next_chapter"]=791,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=3824,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=573570,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8534,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=85600,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=32,
+ ["grasp_gold_reward"]={
+ ["value"]=9932,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=79,
+ ["unit"]=0
+ }
+ },
+ [791]={
+ ["next_chapter"]=792,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3932,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=589869,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8614,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=86500,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=32,
+ ["grasp_gold_reward"]={
+ ["value"]=9932,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=79,
+ ["unit"]=0
+ }
+ },
+ [792]={
+ ["next_chapter"]=793,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4044,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=606530,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8694,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=87400,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=32,
+ ["grasp_gold_reward"]={
+ ["value"]=9932,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=79,
+ ["unit"]=0
+ }
+ },
+ [793]={
+ ["next_chapter"]=794,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4157,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=623557,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8774,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=88300,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=32,
+ ["grasp_gold_reward"]={
+ ["value"]=9932,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=79,
+ ["unit"]=0
+ }
+ },
+ [794]={
+ ["next_chapter"]=795,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4273,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=640954,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8854,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=89200,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=32,
+ ["grasp_gold_reward"]={
+ ["value"]=9932,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=79,
+ ["unit"]=0
+ }
+ },
+ [795]={
+ ["next_chapter"]=796,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4392,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=658725,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8944,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=90100,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=32,
+ ["grasp_gold_reward"]={
+ ["value"]=9932,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=79,
+ ["unit"]=0
+ }
+ },
+ [796]={
+ ["next_chapter"]=797,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4512,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=676875,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9034,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=91000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=32,
+ ["grasp_gold_reward"]={
+ ["value"]=9932,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=79,
+ ["unit"]=0
+ }
+ },
+ [797]={
+ ["next_chapter"]=798,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4636,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=695406,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9124,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=91900,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=32,
+ ["grasp_gold_reward"]={
+ ["value"]=9932,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=79,
+ ["unit"]=0
+ }
+ },
+ [798]={
+ ["next_chapter"]=799,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4762,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=714324,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9214,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=92800,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=32,
+ ["grasp_gold_reward"]={
+ ["value"]=9932,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=79,
+ ["unit"]=0
+ }
+ },
+ [799]={
+ ["next_chapter"]=800,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4891,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=733632,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9304,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=93700,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=32,
+ ["grasp_gold_reward"]={
+ ["value"]=9932,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=79,
+ ["unit"]=0
+ }
+ },
+ [800]={
+ ["next_chapter"]=801,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=5022,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=753333,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9394,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=94600,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=32,
+ ["grasp_gold_reward"]={
+ ["value"]=10878,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=80,
+ ["unit"]=0
+ }
+ },
+ [801]={
+ ["next_chapter"]=802,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5156,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=773433,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9484,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=95500,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=33,
+ ["grasp_gold_reward"]={
+ ["value"]=10878,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=80,
+ ["unit"]=0
+ }
+ },
+ [802]={
+ ["next_chapter"]=803,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5293,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=793935,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9574,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=96500,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=33,
+ ["grasp_gold_reward"]={
+ ["value"]=10878,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=80,
+ ["unit"]=0
+ }
+ },
+ [803]={
+ ["next_chapter"]=804,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5432,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=814842,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9664,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=97500,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=33,
+ ["grasp_gold_reward"]={
+ ["value"]=10878,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=80,
+ ["unit"]=0
+ }
+ },
+ [804]={
+ ["next_chapter"]=805,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5574,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=836160,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9754,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=98500,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=33,
+ ["grasp_gold_reward"]={
+ ["value"]=10878,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=80,
+ ["unit"]=0
+ }
+ },
+ [805]={
+ ["next_chapter"]=806,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5719,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=857891,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9844,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=99500,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=33,
+ ["grasp_gold_reward"]={
+ ["value"]=10878,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=80,
+ ["unit"]=0
+ }
+ },
+ [806]={
+ ["next_chapter"]=807,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5867,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=880041,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9944,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=100500,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=33,
+ ["grasp_gold_reward"]={
+ ["value"]=10878,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=80,
+ ["unit"]=0
+ }
+ },
+ [807]={
+ ["next_chapter"]=808,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6017,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=902612,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10044,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=102000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=33,
+ ["grasp_gold_reward"]={
+ ["value"]=10878,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=80,
+ ["unit"]=0
+ }
+ },
+ [808]={
+ ["next_chapter"]=809,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6171,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=925609,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10144,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=103000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=33,
+ ["grasp_gold_reward"]={
+ ["value"]=10878,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=80,
+ ["unit"]=0
+ }
+ },
+ [809]={
+ ["next_chapter"]=810,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6327,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=949036,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10244,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=104000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=33,
+ ["grasp_gold_reward"]={
+ ["value"]=10878,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=80,
+ ["unit"]=0
+ }
+ },
+ [810]={
+ ["next_chapter"]=811,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=6486,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=972897,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10344,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=105000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=33,
+ ["grasp_gold_reward"]={
+ ["value"]=11928,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=81,
+ ["unit"]=0
+ }
+ },
+ [811]={
+ ["next_chapter"]=812,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6648,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=997195,
+ ["unit"]=3
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10444,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=106000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=33,
+ ["grasp_gold_reward"]={
+ ["value"]=11928,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=81,
+ ["unit"]=0
+ }
+ },
+ [812]={
+ ["next_chapter"]=813,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6813,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=1022,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10544,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=107000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=33,
+ ["grasp_gold_reward"]={
+ ["value"]=11928,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=81,
+ ["unit"]=0
+ }
+ },
+ [813]={
+ ["next_chapter"]=814,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6981,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=1047,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10644,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=108000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=33,
+ ["grasp_gold_reward"]={
+ ["value"]=11928,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=81,
+ ["unit"]=0
+ }
+ },
+ [814]={
+ ["next_chapter"]=815,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7152,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=1073,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=109000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=33,
+ ["grasp_gold_reward"]={
+ ["value"]=11928,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=81,
+ ["unit"]=0
+ }
+ },
+ [815]={
+ ["next_chapter"]=816,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7326,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=1099,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10844,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=110000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=33,
+ ["grasp_gold_reward"]={
+ ["value"]=11928,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=81,
+ ["unit"]=0
+ }
+ },
+ [816]={
+ ["next_chapter"]=817,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7503,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=1125,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10944,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=111000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=33,
+ ["grasp_gold_reward"]={
+ ["value"]=11928,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=81,
+ ["unit"]=0
+ }
+ },
+ [817]={
+ ["next_chapter"]=818,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7683,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=1152,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11044,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=112000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=33,
+ ["grasp_gold_reward"]={
+ ["value"]=11928,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=81,
+ ["unit"]=0
+ }
+ },
+ [818]={
+ ["next_chapter"]=819,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7866,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=1180,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11144,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=113000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=33,
+ ["grasp_gold_reward"]={
+ ["value"]=11928,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=81,
+ ["unit"]=0
+ }
+ },
+ [819]={
+ ["next_chapter"]=820,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8052,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=1208,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11244,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=114000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=33,
+ ["grasp_gold_reward"]={
+ ["value"]=11928,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=81,
+ ["unit"]=0
+ }
+ },
+ [820]={
+ ["next_chapter"]=821,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=8242,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=1236,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11344,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=115000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=33,
+ ["grasp_gold_reward"]={
+ ["value"]=13078,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=82,
+ ["unit"]=0
+ }
+ },
+ [821]={
+ ["next_chapter"]=822,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8434,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=1265,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11444,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=116000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=13078,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=82,
+ ["unit"]=0
+ }
+ },
+ [822]={
+ ["next_chapter"]=823,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8630,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=1295,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11544,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=117000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=13078,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=82,
+ ["unit"]=0
+ }
+ },
+ [823]={
+ ["next_chapter"]=824,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8829,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=1324,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11644,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=118000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=13078,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=82,
+ ["unit"]=0
+ }
+ },
+ [824]={
+ ["next_chapter"]=825,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9032,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=1355,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=119000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=13078,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=82,
+ ["unit"]=0
+ }
+ },
+ [825]={
+ ["next_chapter"]=826,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9237,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=1386,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11844,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=120000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=13078,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=82,
+ ["unit"]=0
+ }
+ },
+ [826]={
+ ["next_chapter"]=827,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9446,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=1417,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11944,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=121000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=13078,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=82,
+ ["unit"]=0
+ }
+ },
+ [827]={
+ ["next_chapter"]=828,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9658,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=1449,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12044,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=122000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=13078,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=82,
+ ["unit"]=0
+ }
+ },
+ [828]={
+ ["next_chapter"]=829,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9874,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=1481,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12144,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=123000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=13078,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=82,
+ ["unit"]=0
+ }
+ },
+ [829]={
+ ["next_chapter"]=830,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10093,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=1514,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12244,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=124000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=13078,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=82,
+ ["unit"]=0
+ }
+ },
+ [830]={
+ ["next_chapter"]=831,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=10316,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=1547,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12344,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=125000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=14328,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=83,
+ ["unit"]=0
+ }
+ },
+ [831]={
+ ["next_chapter"]=832,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10542,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=1581,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12444,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=126000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=14328,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=83,
+ ["unit"]=0
+ }
+ },
+ [832]={
+ ["next_chapter"]=833,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10771,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=1616,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12544,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=127000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=14328,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=83,
+ ["unit"]=0
+ }
+ },
+ [833]={
+ ["next_chapter"]=834,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11004,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=1651,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12644,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=128000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=14328,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=83,
+ ["unit"]=0
+ }
+ },
+ [834]={
+ ["next_chapter"]=835,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11240,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=1686,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=129000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=14328,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=83,
+ ["unit"]=0
+ }
+ },
+ [835]={
+ ["next_chapter"]=836,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11480,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=1722,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12844,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=130000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=14328,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=83,
+ ["unit"]=0
+ }
+ },
+ [836]={
+ ["next_chapter"]=837,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11724,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=1759,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12944,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=131000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=14328,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=83,
+ ["unit"]=0
+ }
+ },
+ [837]={
+ ["next_chapter"]=838,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11971,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=1796,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13044,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=132000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=14328,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=83,
+ ["unit"]=0
+ }
+ },
+ [838]={
+ ["next_chapter"]=839,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12222,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=1833,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13144,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=133000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=14328,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=83,
+ ["unit"]=0
+ }
+ },
+ [839]={
+ ["next_chapter"]=840,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12476,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=1871,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13244,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=134000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=14328,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=83,
+ ["unit"]=0
+ }
+ },
+ [840]={
+ ["next_chapter"]=841,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=12735,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=1910,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13344,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=135000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=15678,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=84,
+ ["unit"]=0
+ }
+ },
+ [841]={
+ ["next_chapter"]=842,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12996,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=1949,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13444,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=136000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=15678,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=84,
+ ["unit"]=0
+ }
+ },
+ [842]={
+ ["next_chapter"]=843,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13262,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=1989,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13544,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=137000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=15678,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=84,
+ ["unit"]=0
+ }
+ },
+ [843]={
+ ["next_chapter"]=844,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13531,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=2030,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13644,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=138000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=15678,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=84,
+ ["unit"]=0
+ }
+ },
+ [844]={
+ ["next_chapter"]=845,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13805,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=2071,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=139000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=15678,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=84,
+ ["unit"]=0
+ }
+ },
+ [845]={
+ ["next_chapter"]=846,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14082,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=2112,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13844,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=140000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=15678,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=84,
+ ["unit"]=0
+ }
+ },
+ [846]={
+ ["next_chapter"]=847,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14363,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=2154,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13944,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=141000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=15678,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=84,
+ ["unit"]=0
+ }
+ },
+ [847]={
+ ["next_chapter"]=848,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14647,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=2197,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14044,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=142000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=15678,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=84,
+ ["unit"]=0
+ }
+ },
+ [848]={
+ ["next_chapter"]=849,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14936,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=2240,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14144,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=143000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=15678,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=84,
+ ["unit"]=0
+ }
+ },
+ [849]={
+ ["next_chapter"]=850,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15228,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=2284,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14244,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=144000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=15678,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=84,
+ ["unit"]=0
+ }
+ },
+ [850]={
+ ["next_chapter"]=851,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=15525,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=2329,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14344,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=145000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=17128,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=85,
+ ["unit"]=0
+ }
+ },
+ [851]={
+ ["next_chapter"]=852,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15825,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=2374,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14444,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=146000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=17128,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=85,
+ ["unit"]=0
+ }
+ },
+ [852]={
+ ["next_chapter"]=853,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16130,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=2419,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14544,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=147000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=17128,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=85,
+ ["unit"]=0
+ }
+ },
+ [853]={
+ ["next_chapter"]=854,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16439,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=2466,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14644,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=148000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=17128,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=85,
+ ["unit"]=0
+ }
+ },
+ [854]={
+ ["next_chapter"]=855,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16751,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=2513,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=149000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=17128,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=85,
+ ["unit"]=0
+ }
+ },
+ [855]={
+ ["next_chapter"]=856,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17068,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=2560,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14844,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=150000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=17128,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=85,
+ ["unit"]=0
+ }
+ },
+ [856]={
+ ["next_chapter"]=857,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17389,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=2608,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14944,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=152000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=17128,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=85,
+ ["unit"]=0
+ }
+ },
+ [857]={
+ ["next_chapter"]=858,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17714,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=2657,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15044,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=154000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=17128,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=85,
+ ["unit"]=0
+ }
+ },
+ [858]={
+ ["next_chapter"]=859,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18043,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=2706,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15144,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=156000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=17128,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=85,
+ ["unit"]=0
+ }
+ },
+ [859]={
+ ["next_chapter"]=860,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18376,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=2756,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15244,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=158000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=17128,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=85,
+ ["unit"]=0
+ }
+ },
+ [860]={
+ ["next_chapter"]=861,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=18713,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=2807,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15344,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=160000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=18728,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=86,
+ ["unit"]=0
+ }
+ },
+ [861]={
+ ["next_chapter"]=862,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19055,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=2858,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15444,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=162000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=18728,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=86,
+ ["unit"]=0
+ }
+ },
+ [862]={
+ ["next_chapter"]=863,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19401,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=2910,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15544,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=164000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=18728,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=86,
+ ["unit"]=0
+ }
+ },
+ [863]={
+ ["next_chapter"]=864,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19752,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=2963,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15644,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=166000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=18728,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=86,
+ ["unit"]=0
+ }
+ },
+ [864]={
+ ["next_chapter"]=865,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20106,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=3016,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=168000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=18728,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=86,
+ ["unit"]=0
+ }
+ },
+ [865]={
+ ["next_chapter"]=866,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20465,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=3070,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15844,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=170000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=18728,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=86,
+ ["unit"]=0
+ }
+ },
+ [866]={
+ ["next_chapter"]=867,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20829,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=3124,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15944,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=172000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=18728,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=86,
+ ["unit"]=0
+ }
+ },
+ [867]={
+ ["next_chapter"]=868,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21196,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=3179,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16044,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=174000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=18728,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=86,
+ ["unit"]=0
+ }
+ },
+ [868]={
+ ["next_chapter"]=869,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21569,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=3235,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16144,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=176000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=18728,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=86,
+ ["unit"]=0
+ }
+ },
+ [869]={
+ ["next_chapter"]=870,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21945,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=3292,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16244,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=178000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=18728,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=86,
+ ["unit"]=0
+ }
+ },
+ [870]={
+ ["next_chapter"]=871,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=22326,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=3349,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16344,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=180000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=20528,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=87,
+ ["unit"]=0
+ }
+ },
+ [871]={
+ ["next_chapter"]=872,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22712,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=3407,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16444,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=182000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=20528,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=87,
+ ["unit"]=0
+ }
+ },
+ [872]={
+ ["next_chapter"]=873,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23102,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=3465,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16544,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=184000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=20528,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=87,
+ ["unit"]=0
+ }
+ },
+ [873]={
+ ["next_chapter"]=874,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23497,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=3525,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16644,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=186000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=20528,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=87,
+ ["unit"]=0
+ }
+ },
+ [874]={
+ ["next_chapter"]=875,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23896,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=3584,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=188000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=20528,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=87,
+ ["unit"]=0
+ }
+ },
+ [875]={
+ ["next_chapter"]=876,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24300,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=3645,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16844,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=190000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=20528,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=87,
+ ["unit"]=0
+ }
+ },
+ [876]={
+ ["next_chapter"]=877,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24709,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=3706,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16944,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=192000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=20528,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=87,
+ ["unit"]=0
+ }
+ },
+ [877]={
+ ["next_chapter"]=878,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25122,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=3768,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17044,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=194000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=20528,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=87,
+ ["unit"]=0
+ }
+ },
+ [878]={
+ ["next_chapter"]=879,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25540,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=3831,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17144,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=196000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=20528,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=87,
+ ["unit"]=0
+ }
+ },
+ [879]={
+ ["next_chapter"]=880,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25963,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=3894,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17244,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=198000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=20528,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=87,
+ ["unit"]=0
+ }
+ },
+ [880]={
+ ["next_chapter"]=881,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=26390,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=3959,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17444,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=200000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=22528,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=88,
+ ["unit"]=0
+ }
+ },
+ [881]={
+ ["next_chapter"]=882,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26823,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=4023,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17644,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=202000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=22528,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=88,
+ ["unit"]=0
+ }
+ },
+ [882]={
+ ["next_chapter"]=883,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27260,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=4089,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17844,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=204000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=22528,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=88,
+ ["unit"]=0
+ }
+ },
+ [883]={
+ ["next_chapter"]=884,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27702,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=4155,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18044,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=206000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=22528,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=88,
+ ["unit"]=0
+ }
+ },
+ [884]={
+ ["next_chapter"]=885,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28148,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=4222,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18244,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=208000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=22528,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=88,
+ ["unit"]=0
+ }
+ },
+ [885]={
+ ["next_chapter"]=886,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28600,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=4290,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18444,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=210000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=22528,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=88,
+ ["unit"]=0
+ }
+ },
+ [886]={
+ ["next_chapter"]=887,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29056,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=4358,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18644,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=212000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=22528,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=88,
+ ["unit"]=0
+ }
+ },
+ [887]={
+ ["next_chapter"]=888,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29518,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=4428,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18844,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=214000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=22528,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=88,
+ ["unit"]=0
+ }
+ },
+ [888]={
+ ["next_chapter"]=889,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29984,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=4498,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19044,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=216000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=22528,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=88,
+ ["unit"]=0
+ }
+ },
+ [889]={
+ ["next_chapter"]=890,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30456,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=4568,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19244,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=218000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=22528,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=88,
+ ["unit"]=0
+ }
+ },
+ [890]={
+ ["next_chapter"]=891,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=30932,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=4640,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19444,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=220000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=24728,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=89,
+ ["unit"]=0
+ }
+ },
+ [891]={
+ ["next_chapter"]=892,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=31413,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=4712,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19644,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=222000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=24728,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=89,
+ ["unit"]=0
+ }
+ },
+ [892]={
+ ["next_chapter"]=893,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=31900,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=4785,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19844,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=224000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=24728,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=89,
+ ["unit"]=0
+ }
+ },
+ [893]={
+ ["next_chapter"]=894,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=32392,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=4859,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20044,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=226000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=24728,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=89,
+ ["unit"]=0
+ }
+ },
+ [894]={
+ ["next_chapter"]=895,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=32888,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=4933,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20244,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=228000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=24728,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=89,
+ ["unit"]=0
+ }
+ },
+ [895]={
+ ["next_chapter"]=896,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=33390,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=5009,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20444,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=230000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=24728,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=89,
+ ["unit"]=0
+ }
+ },
+ [896]={
+ ["next_chapter"]=897,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=33897,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=5085,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20644,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=232000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=24728,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=89,
+ ["unit"]=0
+ }
+ },
+ [897]={
+ ["next_chapter"]=898,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=34410,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=5161,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20844,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=234000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=24728,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=89,
+ ["unit"]=0
+ }
+ },
+ [898]={
+ ["next_chapter"]=899,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=34927,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=5239,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21044,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=236000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=24728,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=89,
+ ["unit"]=0
+ }
+ },
+ [899]={
+ ["next_chapter"]=900,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=35450,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=5317,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21244,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=238000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=24728,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=89,
+ ["unit"]=0
+ }
+ },
+ [900]={
+ ["next_chapter"]=901,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=35978,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=5397,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21444,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=240000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=34,
+ ["grasp_gold_reward"]={
+ ["value"]=27128,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=90,
+ ["unit"]=0
+ }
+ },
+ [901]={
+ ["next_chapter"]=902,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=36511,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=5477,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21644,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=242000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=27128,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=90,
+ ["unit"]=0
+ }
+ },
+ [902]={
+ ["next_chapter"]=903,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=37050,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=5557,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21844,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=244000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=27128,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=90,
+ ["unit"]=0
+ }
+ },
+ [903]={
+ ["next_chapter"]=904,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=37594,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=5639,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22044,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=246000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=27128,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=90,
+ ["unit"]=0
+ }
+ },
+ [904]={
+ ["next_chapter"]=905,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=38143,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=5721,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22244,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=248000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=27128,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=90,
+ ["unit"]=0
+ }
+ },
+ [905]={
+ ["next_chapter"]=906,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=38698,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=5805,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22444,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=250000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=27128,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=90,
+ ["unit"]=0
+ }
+ },
+ [906]={
+ ["next_chapter"]=907,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=39258,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=5889,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22644,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=253000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=27128,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=90,
+ ["unit"]=0
+ }
+ },
+ [907]={
+ ["next_chapter"]=908,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=39824,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=5974,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22844,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=256000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=27128,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=90,
+ ["unit"]=0
+ }
+ },
+ [908]={
+ ["next_chapter"]=909,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=40395,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=6059,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23044,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=259000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=27128,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=90,
+ ["unit"]=0
+ }
+ },
+ [909]={
+ ["next_chapter"]=910,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=40972,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=6146,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23244,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=262000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=27128,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=90,
+ ["unit"]=0
+ }
+ },
+ [910]={
+ ["next_chapter"]=911,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=41554,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=6233,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23444,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=265000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=29778,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=91,
+ ["unit"]=0
+ }
+ },
+ [911]={
+ ["next_chapter"]=912,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=42142,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=6321,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23644,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=268000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=29778,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=91,
+ ["unit"]=0
+ }
+ },
+ [912]={
+ ["next_chapter"]=913,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=42735,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=6410,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23844,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=271000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=29778,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=91,
+ ["unit"]=0
+ }
+ },
+ [913]={
+ ["next_chapter"]=914,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=43335,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=6500,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24044,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=274000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=29778,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=91,
+ ["unit"]=0
+ }
+ },
+ [914]={
+ ["next_chapter"]=915,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=43939,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=6591,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24244,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=277000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=29778,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=91,
+ ["unit"]=0
+ }
+ },
+ [915]={
+ ["next_chapter"]=916,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=44550,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=6682,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24444,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=280000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=29778,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=91,
+ ["unit"]=0
+ }
+ },
+ [916]={
+ ["next_chapter"]=917,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=45166,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=6775,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24644,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=283000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=29778,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=91,
+ ["unit"]=0
+ }
+ },
+ [917]={
+ ["next_chapter"]=918,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=45788,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=6868,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24844,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=286000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=29778,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=91,
+ ["unit"]=0
+ }
+ },
+ [918]={
+ ["next_chapter"]=919,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=46415,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=6962,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25044,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=289000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=29778,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=91,
+ ["unit"]=0
+ }
+ },
+ [919]={
+ ["next_chapter"]=920,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=47049,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=7057,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25244,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=292000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=29778,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=91,
+ ["unit"]=0
+ }
+ },
+ [920]={
+ ["next_chapter"]=921,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=47688,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=7153,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25444,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=295000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=32728,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=92,
+ ["unit"]=0
+ }
+ },
+ [921]={
+ ["next_chapter"]=922,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=48333,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=7250,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25644,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=298000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=32728,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=92,
+ ["unit"]=0
+ }
+ },
+ [922]={
+ ["next_chapter"]=923,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=48984,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=7348,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25944,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=301000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=32728,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=92,
+ ["unit"]=0
+ }
+ },
+ [923]={
+ ["next_chapter"]=924,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=49641,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=7446,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26244,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=304000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=32728,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=92,
+ ["unit"]=0
+ }
+ },
+ [924]={
+ ["next_chapter"]=925,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=50303,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=7545,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26544,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=307000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=32728,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=92,
+ ["unit"]=0
+ }
+ },
+ [925]={
+ ["next_chapter"]=926,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=50972,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=7646,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26844,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=310000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=32728,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=92,
+ ["unit"]=0
+ }
+ },
+ [926]={
+ ["next_chapter"]=927,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=51646,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=7747,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27144,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=313000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=32728,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=92,
+ ["unit"]=0
+ }
+ },
+ [927]={
+ ["next_chapter"]=928,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=52327,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=7849,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27444,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=316000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=32728,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=92,
+ ["unit"]=0
+ }
+ },
+ [928]={
+ ["next_chapter"]=929,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=53014,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=7952,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=319000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=32728,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=92,
+ ["unit"]=0
+ }
+ },
+ [929]={
+ ["next_chapter"]=930,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=53706,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=8056,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28044,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=322000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=32728,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=92,
+ ["unit"]=0
+ }
+ },
+ [930]={
+ ["next_chapter"]=931,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=54405,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=8161,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28344,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=325000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=35978,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=93,
+ ["unit"]=0
+ }
+ },
+ [931]={
+ ["next_chapter"]=932,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=55110,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=8267,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28644,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=328000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=35978,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=93,
+ ["unit"]=0
+ }
+ },
+ [932]={
+ ["next_chapter"]=933,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=55821,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=8373,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28944,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=331000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=35978,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=93,
+ ["unit"]=0
+ }
+ },
+ [933]={
+ ["next_chapter"]=934,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=56538,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=8481,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29244,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=334000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=35978,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=93,
+ ["unit"]=0
+ }
+ },
+ [934]={
+ ["next_chapter"]=935,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=57262,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=8589,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29544,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=337000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=35978,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=93,
+ ["unit"]=0
+ }
+ },
+ [935]={
+ ["next_chapter"]=936,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=57991,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=8699,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29844,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=340000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=35978,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=93,
+ ["unit"]=0
+ }
+ },
+ [936]={
+ ["next_chapter"]=937,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=58727,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=8809,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30144,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=343000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=35978,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=93,
+ ["unit"]=0
+ }
+ },
+ [937]={
+ ["next_chapter"]=938,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=59469,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=8920,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30444,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=346000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=35978,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=93,
+ ["unit"]=0
+ }
+ },
+ [938]={
+ ["next_chapter"]=939,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60217,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=9033,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=349000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=35978,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=93,
+ ["unit"]=0
+ }
+ },
+ [939]={
+ ["next_chapter"]=940,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60972,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=9146,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31044,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=352000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=35978,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=93,
+ ["unit"]=0
+ }
+ },
+ [940]={
+ ["next_chapter"]=941,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=61733,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=9260,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31344,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=356000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=39538,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=94,
+ ["unit"]=0
+ }
+ },
+ [941]={
+ ["next_chapter"]=942,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=62500,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=9375,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31644,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=360000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=39538,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=94,
+ ["unit"]=0
+ }
+ },
+ [942]={
+ ["next_chapter"]=943,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=63274,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=9491,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31944,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=364000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=39538,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=94,
+ ["unit"]=0
+ }
+ },
+ [943]={
+ ["next_chapter"]=944,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=64054,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=9608,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32244,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=368000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=39538,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=94,
+ ["unit"]=0
+ }
+ },
+ [944]={
+ ["next_chapter"]=945,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=64841,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=9726,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32544,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=372000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=39538,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=94,
+ ["unit"]=0
+ }
+ },
+ [945]={
+ ["next_chapter"]=946,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=65634,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=9845,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32844,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=376000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=39538,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=94,
+ ["unit"]=0
+ }
+ },
+ [946]={
+ ["next_chapter"]=947,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=66433,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=9965,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33144,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=380000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=39538,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=94,
+ ["unit"]=0
+ }
+ },
+ [947]={
+ ["next_chapter"]=948,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=67239,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=10086,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33444,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=384000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=39538,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=94,
+ ["unit"]=0
+ }
+ },
+ [948]={
+ ["next_chapter"]=949,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=68052,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=10208,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=388000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=39538,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=94,
+ ["unit"]=0
+ }
+ },
+ [949]={
+ ["next_chapter"]=950,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=68871,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=10331,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34044,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=392000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=39538,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=94,
+ ["unit"]=0
+ }
+ },
+ [950]={
+ ["next_chapter"]=951,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=69697,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=10455,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34344,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=396000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=43498,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=95,
+ ["unit"]=0
+ }
+ },
+ [951]={
+ ["next_chapter"]=952,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=70530,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=10579,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=400000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=43498,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=95,
+ ["unit"]=0
+ }
+ },
+ [952]={
+ ["next_chapter"]=953,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=71369,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=10705,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35144,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=404000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=43498,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=95,
+ ["unit"]=0
+ }
+ },
+ [953]={
+ ["next_chapter"]=954,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=72215,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=10832,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35544,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=408000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=43498,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=95,
+ ["unit"]=0
+ }
+ },
+ [954]={
+ ["next_chapter"]=955,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=73067,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=10960,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35944,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=412000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=43498,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=95,
+ ["unit"]=0
+ }
+ },
+ [955]={
+ ["next_chapter"]=956,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=73927,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=11089,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36344,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=416000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=43498,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=95,
+ ["unit"]=0
+ }
+ },
+ [956]={
+ ["next_chapter"]=957,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=74793,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=11219,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=420000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=43498,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=95,
+ ["unit"]=0
+ }
+ },
+ [957]={
+ ["next_chapter"]=958,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=75665,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=11350,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37144,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=424000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=43498,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=95,
+ ["unit"]=0
+ }
+ },
+ [958]={
+ ["next_chapter"]=959,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=76545,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=11482,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37544,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=428000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=43498,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=95,
+ ["unit"]=0
+ }
+ },
+ [959]={
+ ["next_chapter"]=960,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=77432,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=11615,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37944,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=432000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=43498,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=95,
+ ["unit"]=0
+ }
+ },
+ [960]={
+ ["next_chapter"]=961,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=78325,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=11749,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=38344,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=436000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=47858,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=96,
+ ["unit"]=0
+ }
+ },
+ [961]={
+ ["next_chapter"]=962,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=79225,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=11884,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=38744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=440000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=47858,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=96,
+ ["unit"]=0
+ }
+ },
+ [962]={
+ ["next_chapter"]=963,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=80132,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=12020,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39144,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=444000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=47858,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=96,
+ ["unit"]=0
+ }
+ },
+ [963]={
+ ["next_chapter"]=964,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=81047,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=12157,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39544,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=448000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=47858,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=96,
+ ["unit"]=0
+ }
+ },
+ [964]={
+ ["next_chapter"]=965,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=81968,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=12295,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39944,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=452000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=47858,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=96,
+ ["unit"]=0
+ }
+ },
+ [965]={
+ ["next_chapter"]=966,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=82896,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=12434,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=40344,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=457000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=47858,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=96,
+ ["unit"]=0
+ }
+ },
+ [966]={
+ ["next_chapter"]=967,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=83831,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=12575,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=40744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=462000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=47858,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=96,
+ ["unit"]=0
+ }
+ },
+ [967]={
+ ["next_chapter"]=968,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=84773,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=12716,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41144,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=467000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=47858,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=96,
+ ["unit"]=0
+ }
+ },
+ [968]={
+ ["next_chapter"]=969,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=85723,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=12858,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41544,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=472000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=47858,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=96,
+ ["unit"]=0
+ }
+ },
+ [969]={
+ ["next_chapter"]=970,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=86679,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=13002,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41944,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=477000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=47858,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=96,
+ ["unit"]=0
+ }
+ },
+ [970]={
+ ["next_chapter"]=971,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=87643,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=13146,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=42344,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=482000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=52678,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=97,
+ ["unit"]=0
+ }
+ },
+ [971]={
+ ["next_chapter"]=972,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=88613,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=13292,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=42744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=487000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=52678,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=97,
+ ["unit"]=0
+ }
+ },
+ [972]={
+ ["next_chapter"]=973,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=89591,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=13439,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=43144,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=492000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=52678,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=97,
+ ["unit"]=0
+ }
+ },
+ [973]={
+ ["next_chapter"]=974,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=90576,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=13586,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=43544,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=497000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=52678,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=97,
+ ["unit"]=0
+ }
+ },
+ [974]={
+ ["next_chapter"]=975,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=91569,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=13735,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=44044,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=502000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=52678,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=97,
+ ["unit"]=0
+ }
+ },
+ [975]={
+ ["next_chapter"]=976,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=92568,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=13885,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=44544,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=507000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=52678,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=97,
+ ["unit"]=0
+ }
+ },
+ [976]={
+ ["next_chapter"]=977,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=93575,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=14036,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=45044,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=512000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=52678,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=97,
+ ["unit"]=0
+ }
+ },
+ [977]={
+ ["next_chapter"]=978,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=94590,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=14188,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=45544,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=517000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=52678,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=97,
+ ["unit"]=0
+ }
+ },
+ [978]={
+ ["next_chapter"]=979,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=95611,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=14342,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=46044,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=522000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=52678,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=97,
+ ["unit"]=0
+ }
+ },
+ [979]={
+ ["next_chapter"]=980,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=96640,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=14496,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=46544,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=527000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=52678,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=97,
+ ["unit"]=0
+ }
+ },
+ [980]={
+ ["next_chapter"]=981,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=97677,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=14651,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=47044,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=532000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=35,
+ ["grasp_gold_reward"]={
+ ["value"]=57998,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=98,
+ ["unit"]=0
+ }
+ },
+ [981]={
+ ["next_chapter"]=982,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=98720,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=14808,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=47544,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=537000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=57998,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=98,
+ ["unit"]=0
+ }
+ },
+ [982]={
+ ["next_chapter"]=983,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=99772,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=14966,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=48044,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=542000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=57998,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=98,
+ ["unit"]=0
+ }
+ },
+ [983]={
+ ["next_chapter"]=984,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=100830,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=15125,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=48544,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=547000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=57998,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=98,
+ ["unit"]=0
+ }
+ },
+ [984]={
+ ["next_chapter"]=985,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=101897,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=15285,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=49044,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=552000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=57998,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=98,
+ ["unit"]=0
+ }
+ },
+ [985]={
+ ["next_chapter"]=986,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=102971,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=15446,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=49544,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=558000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=57998,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=98,
+ ["unit"]=0
+ }
+ },
+ [986]={
+ ["next_chapter"]=987,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=104052,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=15608,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=50044,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=564000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=57998,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=98,
+ ["unit"]=0
+ }
+ },
+ [987]={
+ ["next_chapter"]=988,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=105141,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=15771,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=50544,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=570000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=57998,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=98,
+ ["unit"]=0
+ }
+ },
+ [988]={
+ ["next_chapter"]=989,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=106237,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=15936,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=51044,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=576000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=57998,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=98,
+ ["unit"]=0
+ }
+ },
+ [989]={
+ ["next_chapter"]=990,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=107342,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=16101,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=51544,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=582000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=57998,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=98,
+ ["unit"]=0
+ }
+ },
+ [990]={
+ ["next_chapter"]=991,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=108454,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=16268,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=52044,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=588000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=63878,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=99,
+ ["unit"]=0
+ }
+ },
+ [991]={
+ ["next_chapter"]=992,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=109573,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=16436,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=52544,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=594000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=63878,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=99,
+ ["unit"]=0
+ }
+ },
+ [992]={
+ ["next_chapter"]=993,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=110700,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=16605,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=53144,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=600000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=63878,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=99,
+ ["unit"]=0
+ }
+ },
+ [993]={
+ ["next_chapter"]=994,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=111836,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=16775,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=53744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=606000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=63878,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=99,
+ ["unit"]=0
+ }
+ },
+ [994]={
+ ["next_chapter"]=995,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=112978,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=16947,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=54344,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=612000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=63878,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=99,
+ ["unit"]=0
+ }
+ },
+ [995]={
+ ["next_chapter"]=996,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=114129,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=17119,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=54944,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=618000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=63878,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=99,
+ ["unit"]=0
+ }
+ },
+ [996]={
+ ["next_chapter"]=997,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=115287,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=17293,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=55544,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=624000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=63878,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=99,
+ ["unit"]=0
+ }
+ },
+ [997]={
+ ["next_chapter"]=998,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=116454,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=17468,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=56144,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=630000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=63878,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=99,
+ ["unit"]=0
+ }
+ },
+ [998]={
+ ["next_chapter"]=999,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=117628,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=17644,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=56744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=636000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=63878,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=99,
+ ["unit"]=0
+ }
+ },
+ [999]={
+ ["next_chapter"]=1000,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=118810,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=17821,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=57344,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=642000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=63878,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=99,
+ ["unit"]=0
+ }
+ },
+ [1000]={
+ ["next_chapter"]=1001,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=120000,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=19200,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=57944,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=648000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=70358,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=100,
+ ["unit"]=0
+ }
+ },
+ [1001]={
+ ["next_chapter"]=1002,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120000,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=19200,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=58544,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=654000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=70358,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=100,
+ ["unit"]=0
+ }
+ },
+ [1002]={
+ ["next_chapter"]=1003,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120002,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=19200,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=59144,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=661000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=70358,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=100,
+ ["unit"]=0
+ }
+ },
+ [1003]={
+ ["next_chapter"]=1004,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120008,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=19201,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=59744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=668000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=70358,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=100,
+ ["unit"]=0
+ }
+ },
+ [1004]={
+ ["next_chapter"]=1005,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120018,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=19203,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=60344,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=675000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=70358,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=100,
+ ["unit"]=0
+ }
+ },
+ [1005]={
+ ["next_chapter"]=1006,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120036,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=19206,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=60944,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=682000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=70358,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=100,
+ ["unit"]=0
+ }
+ },
+ [1006]={
+ ["next_chapter"]=1007,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120062,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=19210,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=61544,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=689000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=70358,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=100,
+ ["unit"]=0
+ }
+ },
+ [1007]={
+ ["next_chapter"]=1008,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120098,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=19216,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=62144,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=696000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=70358,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=100,
+ ["unit"]=0
+ }
+ },
+ [1008]={
+ ["next_chapter"]=1009,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120147,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=19224,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=62844,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=703000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=70358,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=100,
+ ["unit"]=0
+ }
+ },
+ [1009]={
+ ["next_chapter"]=1010,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120209,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=19233,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=63544,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=710000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=70358,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=100,
+ ["unit"]=0
+ }
+ },
+ [1010]={
+ ["next_chapter"]=1011,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=120287,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=19246,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=64244,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=717000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=77528,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=101,
+ ["unit"]=0
+ }
+ },
+ [1011]={
+ ["next_chapter"]=1012,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120382,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=19261,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=64944,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=724000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=77528,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=101,
+ ["unit"]=0
+ }
+ },
+ [1012]={
+ ["next_chapter"]=1013,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120496,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=19279,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=65644,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=731000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=77528,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=101,
+ ["unit"]=0
+ }
+ },
+ [1013]={
+ ["next_chapter"]=1014,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120631,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=19301,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=66344,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=738000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=77528,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=101,
+ ["unit"]=0
+ }
+ },
+ [1014]={
+ ["next_chapter"]=1015,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120788,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=19326,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=67044,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=745000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=77528,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=101,
+ ["unit"]=0
+ }
+ },
+ [1015]={
+ ["next_chapter"]=1016,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120969,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=19355,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=67744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=752000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=77528,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=101,
+ ["unit"]=0
+ }
+ },
+ [1016]={
+ ["next_chapter"]=1017,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=121176,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=19388,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=68444,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=760000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=77528,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=101,
+ ["unit"]=0
+ }
+ },
+ [1017]={
+ ["next_chapter"]=1018,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=121410,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=19426,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=69144,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=768000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=77528,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=101,
+ ["unit"]=0
+ }
+ },
+ [1018]={
+ ["next_chapter"]=1019,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=121674,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=19468,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=69844,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=776000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=77528,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=101,
+ ["unit"]=0
+ }
+ },
+ [1019]={
+ ["next_chapter"]=1020,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=121969,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=19515,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=70544,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=784000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=77528,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=101,
+ ["unit"]=0
+ }
+ },
+ [1020]={
+ ["next_chapter"]=1021,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=122296,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=19567,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=71244,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=792000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=85448,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=102,
+ ["unit"]=0
+ }
+ },
+ [1021]={
+ ["next_chapter"]=1022,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=122658,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=19625,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=72044,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=800000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=85448,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=102,
+ ["unit"]=0
+ }
+ },
+ [1022]={
+ ["next_chapter"]=1023,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=123056,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=19689,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=72844,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=808000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=85448,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=102,
+ ["unit"]=0
+ }
+ },
+ [1023]={
+ ["next_chapter"]=1024,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=123492,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=19759,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=73644,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=816000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=85448,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=102,
+ ["unit"]=0
+ }
+ },
+ [1024]={
+ ["next_chapter"]=1025,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=123968,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=19835,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=74444,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=824000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=85448,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=102,
+ ["unit"]=0
+ }
+ },
+ [1025]={
+ ["next_chapter"]=1026,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=124485,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=19918,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=75244,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=832000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=85448,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=102,
+ ["unit"]=0
+ }
+ },
+ [1026]={
+ ["next_chapter"]=1027,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=125045,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=20007,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=76044,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=840000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=85448,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=102,
+ ["unit"]=0
+ }
+ },
+ [1027]={
+ ["next_chapter"]=1028,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=125650,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=20104,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=76844,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=848000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=85448,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=102,
+ ["unit"]=0
+ }
+ },
+ [1028]={
+ ["next_chapter"]=1029,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=126301,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=20208,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=77644,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=856000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=85448,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=102,
+ ["unit"]=0
+ }
+ },
+ [1029]={
+ ["next_chapter"]=1030,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=127001,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=20320,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=78444,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=865000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=85448,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=102,
+ ["unit"]=0
+ }
+ },
+ [1030]={
+ ["next_chapter"]=1031,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=127750,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=20440,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=79244,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=874000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=94188,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=103,
+ ["unit"]=0
+ }
+ },
+ [1031]={
+ ["next_chapter"]=1032,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=128551,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=20568,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=80044,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=883000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=94188,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=103,
+ ["unit"]=0
+ }
+ },
+ [1032]={
+ ["next_chapter"]=1033,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=129406,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=20705,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=80844,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=892000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=94188,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=103,
+ ["unit"]=0
+ }
+ },
+ [1033]={
+ ["next_chapter"]=1034,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=130315,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=20850,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=900000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=81744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=901000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=94188,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=103,
+ ["unit"]=0
+ }
+ },
+ [1034]={
+ ["next_chapter"]=1035,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=131282,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=21005,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=900000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=82644,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=910000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=94188,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=103,
+ ["unit"]=0
+ }
+ },
+ [1035]={
+ ["next_chapter"]=1036,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=132307,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=21169,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=900000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=83544,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=919000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=94188,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=103,
+ ["unit"]=0
+ }
+ },
+ [1036]={
+ ["next_chapter"]=1037,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=133392,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=21343,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=900000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=84444,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=928000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=94188,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=103,
+ ["unit"]=0
+ }
+ },
+ [1037]={
+ ["next_chapter"]=1038,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=134539,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=21526,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=900000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=85344,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=937000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=94188,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=103,
+ ["unit"]=0
+ }
+ },
+ [1038]={
+ ["next_chapter"]=1039,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=135750,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=21720,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=900000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=86244,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=946000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=94188,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=103,
+ ["unit"]=0
+ }
+ },
+ [1039]={
+ ["next_chapter"]=1040,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=137027,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=21924,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=900000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=87144,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=955000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=94188,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=103,
+ ["unit"]=0
+ }
+ },
+ [1040]={
+ ["next_chapter"]=1041,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=138371,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=22139,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=900000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=88044,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=965000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=103838,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=104,
+ ["unit"]=0
+ }
+ },
+ [1041]={
+ ["next_chapter"]=1042,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=139783,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=22365,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=900000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=88944,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=975000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=103838,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=104,
+ ["unit"]=0
+ }
+ },
+ [1042]={
+ ["next_chapter"]=1043,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=141266,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=22603,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=900000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=89844,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=985000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=103838,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=104,
+ ["unit"]=0
+ }
+ },
+ [1043]={
+ ["next_chapter"]=1044,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=142822,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=22851,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=900000,
+ ["unit"]=0
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=90744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=995000,
+ ["unit"]=0
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=103838,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=104,
+ ["unit"]=0
+ }
+ },
+ [1044]={
+ ["next_chapter"]=1045,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=144451,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=23112,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=91744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1005,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=103838,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=104,
+ ["unit"]=0
+ }
+ },
+ [1045]={
+ ["next_chapter"]=1046,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=146157,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=23385,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=92744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1020,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=103838,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=104,
+ ["unit"]=0
+ }
+ },
+ [1046]={
+ ["next_chapter"]=1047,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=147939,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=23670,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=93744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1030,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=103838,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=104,
+ ["unit"]=0
+ }
+ },
+ [1047]={
+ ["next_chapter"]=1048,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=149801,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=23968,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=94744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1040,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=103838,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=104,
+ ["unit"]=0
+ }
+ },
+ [1048]={
+ ["next_chapter"]=1049,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=151744,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=24279,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=95744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1050,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=103838,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=104,
+ ["unit"]=0
+ }
+ },
+ [1049]={
+ ["next_chapter"]=1050,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=153770,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=24603,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=96744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1060,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=103838,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=104,
+ ["unit"]=0
+ }
+ },
+ [1050]={
+ ["next_chapter"]=1051,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=155880,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=24941,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=97744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1070,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=114538,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=105,
+ ["unit"]=0
+ }
+ },
+ [1051]={
+ ["next_chapter"]=1052,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=158076,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=25292,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=98744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1080,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=114538,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=105,
+ ["unit"]=0
+ }
+ },
+ [1052]={
+ ["next_chapter"]=1053,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=160360,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=25658,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=99744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1090,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=114538,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=105,
+ ["unit"]=0
+ }
+ },
+ [1053]={
+ ["next_chapter"]=1054,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=162734,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=26037,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=100744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1100,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=114538,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=105,
+ ["unit"]=0
+ }
+ },
+ [1054]={
+ ["next_chapter"]=1055,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=165198,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=26432,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=101744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1110,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=114538,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=105,
+ ["unit"]=0
+ }
+ },
+ [1055]={
+ ["next_chapter"]=1056,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=167756,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=26841,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=102744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1120,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=114538,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=105,
+ ["unit"]=0
+ }
+ },
+ [1056]={
+ ["next_chapter"]=1057,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=170409,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=27265,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=103744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1130,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=114538,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=105,
+ ["unit"]=0
+ }
+ },
+ [1057]={
+ ["next_chapter"]=1058,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=173158,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=27705,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=104744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1140,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=114538,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=105,
+ ["unit"]=0
+ }
+ },
+ [1058]={
+ ["next_chapter"]=1059,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=176005,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=28161,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=105744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1150,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=114538,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=105,
+ ["unit"]=0
+ }
+ },
+ [1059]={
+ ["next_chapter"]=1060,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=178952,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=28632,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=106744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1160,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=114538,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=105,
+ ["unit"]=0
+ }
+ },
+ [1060]={
+ ["next_chapter"]=1061,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=182001,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=29120,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=107744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1170,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=36,
+ ["grasp_gold_reward"]={
+ ["value"]=126238,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=106,
+ ["unit"]=0
+ }
+ },
+ [1061]={
+ ["next_chapter"]=1062,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=185153,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=29624,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=108744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1180,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=126238,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=106,
+ ["unit"]=0
+ }
+ },
+ [1062]={
+ ["next_chapter"]=1063,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=188410,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=30146,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=109744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1190,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=126238,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=106,
+ ["unit"]=0
+ }
+ },
+ [1063]={
+ ["next_chapter"]=1064,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=191773,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=30684,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=110744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1200,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=126238,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=106,
+ ["unit"]=0
+ }
+ },
+ [1064]={
+ ["next_chapter"]=1065,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=195246,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=31239,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=111744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1210,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=126238,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=106,
+ ["unit"]=0
+ }
+ },
+ [1065]={
+ ["next_chapter"]=1066,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=198828,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=31813,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=112744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1220,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=126238,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=106,
+ ["unit"]=0
+ }
+ },
+ [1066]={
+ ["next_chapter"]=1067,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=202523,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=32404,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=113744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1230,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=126238,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=106,
+ ["unit"]=0
+ }
+ },
+ [1067]={
+ ["next_chapter"]=1068,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=206331,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=33013,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=114744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1240,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=126238,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=106,
+ ["unit"]=0
+ }
+ },
+ [1068]={
+ ["next_chapter"]=1069,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=210255,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=33641,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=115744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1250,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=126238,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=106,
+ ["unit"]=0
+ }
+ },
+ [1069]={
+ ["next_chapter"]=1070,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=214295,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=34287,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=116744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1260,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=126238,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=106,
+ ["unit"]=0
+ }
+ },
+ [1070]={
+ ["next_chapter"]=1071,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=218455,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=34953,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=117744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1270,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=138938,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=107,
+ ["unit"]=0
+ }
+ },
+ [1071]={
+ ["next_chapter"]=1072,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=222735,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=35638,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=118744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1280,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=138938,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=107,
+ ["unit"]=0
+ }
+ },
+ [1072]={
+ ["next_chapter"]=1073,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=227137,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=36342,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=119744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1290,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=138938,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=107,
+ ["unit"]=0
+ }
+ },
+ [1073]={
+ ["next_chapter"]=1074,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=231663,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=37066,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=120744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1300,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=138938,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=107,
+ ["unit"]=0
+ }
+ },
+ [1074]={
+ ["next_chapter"]=1075,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=236315,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=37810,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=121744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1310,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=138938,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=107,
+ ["unit"]=0
+ }
+ },
+ [1075]={
+ ["next_chapter"]=1076,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=241095,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=38575,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=122744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1320,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=138938,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=107,
+ ["unit"]=0
+ }
+ },
+ [1076]={
+ ["next_chapter"]=1077,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=246004,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=39361,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=123744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1330,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=138938,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=107,
+ ["unit"]=0
+ }
+ },
+ [1077]={
+ ["next_chapter"]=1078,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=251043,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=40167,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=124744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1340,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=138938,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=107,
+ ["unit"]=0
+ }
+ },
+ [1078]={
+ ["next_chapter"]=1079,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=256215,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=40994,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=125744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1350,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=138938,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=107,
+ ["unit"]=0
+ }
+ },
+ [1079]={
+ ["next_chapter"]=1080,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=261522,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=41844,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=126744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1360,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=138938,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=107,
+ ["unit"]=0
+ }
+ },
+ [1080]={
+ ["next_chapter"]=1081,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=266964,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=42714,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=127744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1370,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=152638,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=108,
+ ["unit"]=0
+ }
+ },
+ [1081]={
+ ["next_chapter"]=1082,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=272545,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=43607,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=128744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1380,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=152638,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=108,
+ ["unit"]=0
+ }
+ },
+ [1082]={
+ ["next_chapter"]=1083,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=278265,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=44522,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=129744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1390,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=152638,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=108,
+ ["unit"]=0
+ }
+ },
+ [1083]={
+ ["next_chapter"]=1084,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=284126,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=45460,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=130744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1400,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=152638,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=108,
+ ["unit"]=0
+ }
+ },
+ [1084]={
+ ["next_chapter"]=1085,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=290130,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=46421,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=131744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1410,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=152638,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=108,
+ ["unit"]=0
+ }
+ },
+ [1085]={
+ ["next_chapter"]=1086,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=296278,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=47405,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=132744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1420,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=152638,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=108,
+ ["unit"]=0
+ }
+ },
+ [1086]={
+ ["next_chapter"]=1087,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=302574,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=48412,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=133744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1430,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=152638,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=108,
+ ["unit"]=0
+ }
+ },
+ [1087]={
+ ["next_chapter"]=1088,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=309017,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=49443,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=134744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1440,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=152638,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=108,
+ ["unit"]=0
+ }
+ },
+ [1088]={
+ ["next_chapter"]=1089,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=315610,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=50498,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=135744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1450,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=152638,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=108,
+ ["unit"]=0
+ }
+ },
+ [1089]={
+ ["next_chapter"]=1090,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=322354,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=51577,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=136744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1460,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=152638,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=108,
+ ["unit"]=0
+ }
+ },
+ [1090]={
+ ["next_chapter"]=1091,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=329252,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=52680,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=137744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1470,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=167338,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=109,
+ ["unit"]=0
+ }
+ },
+ [1091]={
+ ["next_chapter"]=1092,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=336305,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=53809,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=138744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1480,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=167338,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=109,
+ ["unit"]=0
+ }
+ },
+ [1092]={
+ ["next_chapter"]=1093,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=343515,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=54962,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=139744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1490,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=167338,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=109,
+ ["unit"]=0
+ }
+ },
+ [1093]={
+ ["next_chapter"]=1094,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350883,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=56141,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=140744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1500,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=167338,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=109,
+ ["unit"]=0
+ }
+ },
+ [1094]={
+ ["next_chapter"]=1095,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=358411,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=57346,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=141744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1520,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=167338,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=109,
+ ["unit"]=0
+ }
+ },
+ [1095]={
+ ["next_chapter"]=1096,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=366101,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=58576,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=142744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1540,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=167338,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=109,
+ ["unit"]=0
+ }
+ },
+ [1096]={
+ ["next_chapter"]=1097,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=373955,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=59833,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=143744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1560,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=167338,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=109,
+ ["unit"]=0
+ }
+ },
+ [1097]={
+ ["next_chapter"]=1098,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=381974,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=61116,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=144744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1580,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=167338,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=109,
+ ["unit"]=0
+ }
+ },
+ [1098]={
+ ["next_chapter"]=1099,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=390160,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=62426,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=145744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1600,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=167338,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=109,
+ ["unit"]=0
+ }
+ },
+ [1099]={
+ ["next_chapter"]=1100,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=398515,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=63762,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=146744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1620,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=167338,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=109,
+ ["unit"]=0
+ }
+ },
+ [1100]={
+ ["next_chapter"]=1101,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=407040,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=65126,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=147744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1640,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=183738,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=110,
+ ["unit"]=0
+ }
+ },
+ [1101]={
+ ["next_chapter"]=1102,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=415738,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=66518,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=148744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1660,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=183738,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=110,
+ ["unit"]=0
+ }
+ },
+ [1102]={
+ ["next_chapter"]=1103,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=424609,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=67937,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=149744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1680,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=183738,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=110,
+ ["unit"]=0
+ }
+ },
+ [1103]={
+ ["next_chapter"]=1104,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=433656,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=69385,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=150744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1700,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=183738,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=110,
+ ["unit"]=0
+ }
+ },
+ [1104]={
+ ["next_chapter"]=1105,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=442881,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=70861,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=151744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1720,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=183738,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=110,
+ ["unit"]=0
+ }
+ },
+ [1105]={
+ ["next_chapter"]=1106,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=452285,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=72366,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=152744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1740,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=183738,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=110,
+ ["unit"]=0
+ }
+ },
+ [1106]={
+ ["next_chapter"]=1107,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=461869,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=73899,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=153744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1760,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=183738,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=110,
+ ["unit"]=0
+ }
+ },
+ [1107]={
+ ["next_chapter"]=1108,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=471636,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=75462,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=154744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1780,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=183738,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=110,
+ ["unit"]=0
+ }
+ },
+ [1108]={
+ ["next_chapter"]=1109,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=481588,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=77054,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=155744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1800,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=183738,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=110,
+ ["unit"]=0
+ }
+ },
+ [1109]={
+ ["next_chapter"]=1110,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=491725,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=78676,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=156744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1820,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=183738,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=110,
+ ["unit"]=0
+ }
+ },
+ [1110]={
+ ["next_chapter"]=1111,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=502050,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=80328,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=157744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1840,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=202138,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=111,
+ ["unit"]=0
+ }
+ },
+ [1111]={
+ ["next_chapter"]=1112,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=512565,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=82010,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=158744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1860,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=202138,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=111,
+ ["unit"]=0
+ }
+ },
+ [1112]={
+ ["next_chapter"]=1113,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=523271,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=83723,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=159744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1880,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=202138,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=111,
+ ["unit"]=0
+ }
+ },
+ [1113]={
+ ["next_chapter"]=1114,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=534169,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=85467,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=160744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1900,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=202138,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=111,
+ ["unit"]=0
+ }
+ },
+ [1114]={
+ ["next_chapter"]=1115,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=545262,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=87242,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=161744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1920,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=202138,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=111,
+ ["unit"]=0
+ }
+ },
+ [1115]={
+ ["next_chapter"]=1116,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=556552,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=89048,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=162744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1940,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=202138,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=111,
+ ["unit"]=0
+ }
+ },
+ [1116]={
+ ["next_chapter"]=1117,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=568040,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=90886,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=163744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1960,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=202138,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=111,
+ ["unit"]=0
+ }
+ },
+ [1117]={
+ ["next_chapter"]=1118,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=579727,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=92756,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=164744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=1980,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=202138,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=111,
+ ["unit"]=0
+ }
+ },
+ [1118]={
+ ["next_chapter"]=1119,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=591616,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=94659,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=166744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=2000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=202138,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=111,
+ ["unit"]=0
+ }
+ },
+ [1119]={
+ ["next_chapter"]=1120,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=603708,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=96593,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=168744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=2020,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=202138,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=111,
+ ["unit"]=0
+ }
+ },
+ [1120]={
+ ["next_chapter"]=1121,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=616005,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=98561,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=170744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=2040,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=222538,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=112,
+ ["unit"]=0
+ }
+ },
+ [1121]={
+ ["next_chapter"]=1122,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=628509,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=100561,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=172744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=2060,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=222538,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=112,
+ ["unit"]=0
+ }
+ },
+ [1122]={
+ ["next_chapter"]=1123,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=641221,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=102595,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=174744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=2080,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=222538,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=112,
+ ["unit"]=0
+ }
+ },
+ [1123]={
+ ["next_chapter"]=1124,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=654143,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=104663,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=176744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=2100,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=222538,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=112,
+ ["unit"]=0
+ }
+ },
+ [1124]={
+ ["next_chapter"]=1125,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=667277,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=106764,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=178744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=2120,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=222538,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=112,
+ ["unit"]=0
+ }
+ },
+ [1125]={
+ ["next_chapter"]=1126,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=680625,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=108900,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=180744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=2140,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=222538,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=112,
+ ["unit"]=0
+ }
+ },
+ [1126]={
+ ["next_chapter"]=1127,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=694188,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=111070,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=182744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=2160,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=222538,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=112,
+ ["unit"]=0
+ }
+ },
+ [1127]={
+ ["next_chapter"]=1128,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=707968,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=113275,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=184744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=2180,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=222538,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=112,
+ ["unit"]=0
+ }
+ },
+ [1128]={
+ ["next_chapter"]=1129,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=721967,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=115515,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=186744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=2200,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=222538,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=112,
+ ["unit"]=0
+ }
+ },
+ [1129]={
+ ["next_chapter"]=1130,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=736186,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=117790,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=188744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=2220,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=222538,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=112,
+ ["unit"]=0
+ }
+ },
+ [1130]={
+ ["next_chapter"]=1131,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=750627,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=120100,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=190744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=2240,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=244938,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=113,
+ ["unit"]=0
+ }
+ },
+ [1131]={
+ ["next_chapter"]=1132,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=765292,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=122447,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=192744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=2260,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=244938,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=113,
+ ["unit"]=0
+ }
+ },
+ [1132]={
+ ["next_chapter"]=1133,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=780183,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=124829,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=194744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=2280,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=244938,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=113,
+ ["unit"]=0
+ }
+ },
+ [1133]={
+ ["next_chapter"]=1134,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=795301,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=127248,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=196744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=2300,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=244938,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=113,
+ ["unit"]=0
+ }
+ },
+ [1134]={
+ ["next_chapter"]=1135,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=810648,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=129704,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=198744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=2320,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=244938,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=113,
+ ["unit"]=0
+ }
+ },
+ [1135]={
+ ["next_chapter"]=1136,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=826226,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=132196,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=200744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=2340,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=244938,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=113,
+ ["unit"]=0
+ }
+ },
+ [1136]={
+ ["next_chapter"]=1137,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=842036,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=134726,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=202744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=2360,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=244938,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=113,
+ ["unit"]=0
+ }
+ },
+ [1137]={
+ ["next_chapter"]=1138,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=858081,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=137293,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=204744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=2380,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=244938,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=113,
+ ["unit"]=0
+ }
+ },
+ [1138]={
+ ["next_chapter"]=1139,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=874362,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=139898,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=206744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=2400,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=244938,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=113,
+ ["unit"]=0
+ }
+ },
+ [1139]={
+ ["next_chapter"]=1140,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=890880,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=142541,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=208744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=2420,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=244938,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=113,
+ ["unit"]=0
+ }
+ },
+ [1140]={
+ ["next_chapter"]=1141,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=907638,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=145222,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=210744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=2440,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=37,
+ ["grasp_gold_reward"]={
+ ["value"]=269338,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=114,
+ ["unit"]=0
+ }
+ },
+ [1141]={
+ ["next_chapter"]=1142,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=924637,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=147942,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=212744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=2460,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=269338,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=114,
+ ["unit"]=0
+ }
+ },
+ [1142]={
+ ["next_chapter"]=1143,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=941878,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=150701,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=214744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=2480,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=269338,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=114,
+ ["unit"]=0
+ }
+ },
+ [1143]={
+ ["next_chapter"]=1144,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=959364,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=153498,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=216744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=2500,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=269338,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=114,
+ ["unit"]=0
+ }
+ },
+ [1144]={
+ ["next_chapter"]=1145,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=977097,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=156335,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=218744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=2530,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=269338,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=114,
+ ["unit"]=0
+ }
+ },
+ [1145]={
+ ["next_chapter"]=1146,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=995077,
+ ["unit"]=3
+ },
+ ["hp_coefficient"]={
+ ["value"]=159212,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=220744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=2560,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=269338,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=114,
+ ["unit"]=0
+ }
+ },
+ [1146]={
+ ["next_chapter"]=1147,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1013,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=162129,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=222744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=2590,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=269338,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=114,
+ ["unit"]=0
+ }
+ },
+ [1147]={
+ ["next_chapter"]=1148,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1032,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=165086,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=224744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=2620,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=269338,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=114,
+ ["unit"]=0
+ }
+ },
+ [1148]={
+ ["next_chapter"]=1149,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1051,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=168084,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=226744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=2650,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=269338,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=114,
+ ["unit"]=0
+ }
+ },
+ [1149]={
+ ["next_chapter"]=1150,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1070,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=171122,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=228744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=2680,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=269338,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=114,
+ ["unit"]=0
+ }
+ },
+ [1150]={
+ ["next_chapter"]=1151,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=1089,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=174202,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=230744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=2710,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=296438,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=115,
+ ["unit"]=0
+ }
+ },
+ [1151]={
+ ["next_chapter"]=1152,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1108,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=177322,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=232744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=2740,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=296438,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=115,
+ ["unit"]=0
+ }
+ },
+ [1152]={
+ ["next_chapter"]=1153,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1128,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=180485,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=234744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=2770,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=296438,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=115,
+ ["unit"]=0
+ }
+ },
+ [1153]={
+ ["next_chapter"]=1154,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1148,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=183689,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=236744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=2800,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=296438,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=115,
+ ["unit"]=0
+ }
+ },
+ [1154]={
+ ["next_chapter"]=1155,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1168,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=186935,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=238744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=2830,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=296438,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=115,
+ ["unit"]=0
+ }
+ },
+ [1155]={
+ ["next_chapter"]=1156,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1189,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=190224,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=240744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=2860,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=296438,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=115,
+ ["unit"]=0
+ }
+ },
+ [1156]={
+ ["next_chapter"]=1157,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1210,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=193556,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=242744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=2890,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=296438,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=115,
+ ["unit"]=0
+ }
+ },
+ [1157]={
+ ["next_chapter"]=1158,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1231,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=196930,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=244744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=2920,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=296438,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=115,
+ ["unit"]=0
+ }
+ },
+ [1158]={
+ ["next_chapter"]=1159,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1252,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=200348,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=246744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=2950,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=296438,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=115,
+ ["unit"]=0
+ }
+ },
+ [1159]={
+ ["next_chapter"]=1160,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1274,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=203809,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=248744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=2980,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=296438,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=115,
+ ["unit"]=0
+ }
+ },
+ [1160]={
+ ["next_chapter"]=1161,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=1296,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=207315,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=251744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=3010,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=326538,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=116,
+ ["unit"]=0
+ }
+ },
+ [1161]={
+ ["next_chapter"]=1162,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1318,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=210864,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=254744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=3040,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=326538,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=116,
+ ["unit"]=0
+ }
+ },
+ [1162]={
+ ["next_chapter"]=1163,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1340,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=214457,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=257744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=3070,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=326538,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=116,
+ ["unit"]=0
+ }
+ },
+ [1163]={
+ ["next_chapter"]=1164,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1363,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=218096,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=260744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=3100,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=326538,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=116,
+ ["unit"]=0
+ }
+ },
+ [1164]={
+ ["next_chapter"]=1165,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1386,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=221779,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=263744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=3130,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=326538,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=116,
+ ["unit"]=0
+ }
+ },
+ [1165]={
+ ["next_chapter"]=1166,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1409,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=225507,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=266744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=3160,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=326538,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=116,
+ ["unit"]=0
+ }
+ },
+ [1166]={
+ ["next_chapter"]=1167,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1433,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=229281,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=269744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=3190,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=326538,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=116,
+ ["unit"]=0
+ }
+ },
+ [1167]={
+ ["next_chapter"]=1168,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1457,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=233101,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=272744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=3220,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=326538,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=116,
+ ["unit"]=0
+ }
+ },
+ [1168]={
+ ["next_chapter"]=1169,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1481,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=236966,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=275744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=3250,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=326538,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=116,
+ ["unit"]=0
+ }
+ },
+ [1169]={
+ ["next_chapter"]=1170,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1505,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=240878,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=278744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=3280,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=326538,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=116,
+ ["unit"]=0
+ }
+ },
+ [1170]={
+ ["next_chapter"]=1171,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=1530,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=244836,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=281744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=3310,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=359638,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=117,
+ ["unit"]=0
+ }
+ },
+ [1171]={
+ ["next_chapter"]=1172,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1555,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=248842,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=284744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=3340,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=359638,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=117,
+ ["unit"]=0
+ }
+ },
+ [1172]={
+ ["next_chapter"]=1173,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1581,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=252894,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=287744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=3370,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=359638,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=117,
+ ["unit"]=0
+ }
+ },
+ [1173]={
+ ["next_chapter"]=1174,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1606,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=256994,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=290744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=3400,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=359638,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=117,
+ ["unit"]=0
+ }
+ },
+ [1174]={
+ ["next_chapter"]=1175,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1632,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=261141,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=293744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=3430,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=359638,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=117,
+ ["unit"]=0
+ }
+ },
+ [1175]={
+ ["next_chapter"]=1176,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1658,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=265337,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=296744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=3460,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=359638,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=117,
+ ["unit"]=0
+ }
+ },
+ [1176]={
+ ["next_chapter"]=1177,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1685,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=269580,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=299744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=3490,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=359638,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=117,
+ ["unit"]=0
+ }
+ },
+ [1177]={
+ ["next_chapter"]=1178,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1712,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=273873,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=302744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=3520,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=359638,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=117,
+ ["unit"]=0
+ }
+ },
+ [1178]={
+ ["next_chapter"]=1179,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1739,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=278214,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=305744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=3560,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=359638,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=117,
+ ["unit"]=0
+ }
+ },
+ [1179]={
+ ["next_chapter"]=1180,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1766,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=282603,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=308744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=3600,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=359638,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=117,
+ ["unit"]=0
+ }
+ },
+ [1180]={
+ ["next_chapter"]=1181,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=1794,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=287043,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=311744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=3640,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=396038,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=118,
+ ["unit"]=0
+ }
+ },
+ [1181]={
+ ["next_chapter"]=1182,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1822,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=291532,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=314744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=3680,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=396038,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=118,
+ ["unit"]=0
+ }
+ },
+ [1182]={
+ ["next_chapter"]=1183,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1850,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=296070,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=317744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=3720,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=396038,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=118,
+ ["unit"]=0
+ }
+ },
+ [1183]={
+ ["next_chapter"]=1184,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1879,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=300659,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=320744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=3760,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=396038,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=118,
+ ["unit"]=0
+ }
+ },
+ [1184]={
+ ["next_chapter"]=1185,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1908,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=305299,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=323744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=3800,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=396038,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=118,
+ ["unit"]=0
+ }
+ },
+ [1185]={
+ ["next_chapter"]=1186,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1937,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=309989,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=326744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=3840,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=396038,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=118,
+ ["unit"]=0
+ }
+ },
+ [1186]={
+ ["next_chapter"]=1187,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1967,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=314730,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=329744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=3880,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=396038,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=118,
+ ["unit"]=0
+ }
+ },
+ [1187]={
+ ["next_chapter"]=1188,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1997,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=319522,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=332744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=3920,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=396038,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=118,
+ ["unit"]=0
+ }
+ },
+ [1188]={
+ ["next_chapter"]=1189,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2027,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=324366,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=335744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=3960,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=396038,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=118,
+ ["unit"]=0
+ }
+ },
+ [1189]={
+ ["next_chapter"]=1190,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2058,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=329261,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=339744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=396038,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=118,
+ ["unit"]=0
+ }
+ },
+ [1190]={
+ ["next_chapter"]=1191,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=2089,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=334209,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=343744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4040,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=436438,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=119,
+ ["unit"]=0
+ }
+ },
+ [1191]={
+ ["next_chapter"]=1192,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2120,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=339209,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=347744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4080,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=436438,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=119,
+ ["unit"]=0
+ }
+ },
+ [1192]={
+ ["next_chapter"]=1193,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2152,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=344262,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=351744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4120,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=436438,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=119,
+ ["unit"]=0
+ }
+ },
+ [1193]={
+ ["next_chapter"]=1194,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2184,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=349368,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=355744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4160,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=436438,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=119,
+ ["unit"]=0
+ }
+ },
+ [1194]={
+ ["next_chapter"]=1195,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2216,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=354526,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=359744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4200,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=436438,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=119,
+ ["unit"]=0
+ }
+ },
+ [1195]={
+ ["next_chapter"]=1196,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2248,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=359739,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=363744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4240,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=436438,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=119,
+ ["unit"]=0
+ }
+ },
+ [1196]={
+ ["next_chapter"]=1197,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2281,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=365004,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=367744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4280,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=436438,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=119,
+ ["unit"]=0
+ }
+ },
+ [1197]={
+ ["next_chapter"]=1198,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2315,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=370324,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=371744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4320,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=436438,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=119,
+ ["unit"]=0
+ }
+ },
+ [1198]={
+ ["next_chapter"]=1199,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2348,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=375699,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=375744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4360,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=436438,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=119,
+ ["unit"]=0
+ }
+ },
+ [1199]={
+ ["next_chapter"]=1200,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2382,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=381128,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=379744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4400,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=436438,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=119,
+ ["unit"]=0
+ }
+ },
+ [1200]={
+ ["next_chapter"]=1201,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=2416,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=386611,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=383744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4440,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=480838,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=120,
+ ["unit"]=0
+ }
+ },
+ [1201]={
+ ["next_chapter"]=1202,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2451,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=392150,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=387744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4480,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=480838,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=120,
+ ["unit"]=0
+ }
+ },
+ [1202]={
+ ["next_chapter"]=1203,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2486,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=397744,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=391744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4520,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=480838,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=120,
+ ["unit"]=0
+ }
+ },
+ [1203]={
+ ["next_chapter"]=1204,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2521,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=403394,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=395744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4570,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=480838,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=120,
+ ["unit"]=0
+ }
+ },
+ [1204]={
+ ["next_chapter"]=1205,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2557,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=409100,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=399744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4620,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=480838,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=120,
+ ["unit"]=0
+ }
+ },
+ [1205]={
+ ["next_chapter"]=1206,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2593,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=414862,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=403744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4670,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=480838,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=120,
+ ["unit"]=0
+ }
+ },
+ [1206]={
+ ["next_chapter"]=1207,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2629,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=420680,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=407744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4720,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=480838,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=120,
+ ["unit"]=0
+ }
+ },
+ [1207]={
+ ["next_chapter"]=1208,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2666,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=426555,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=411744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4770,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=480838,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=120,
+ ["unit"]=0
+ }
+ },
+ [1208]={
+ ["next_chapter"]=1209,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2703,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=432488,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=415744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4820,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=480838,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=120,
+ ["unit"]=0
+ }
+ },
+ [1209]={
+ ["next_chapter"]=1210,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2740,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=438477,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=419744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4870,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=480838,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=120,
+ ["unit"]=0
+ }
+ },
+ [1210]={
+ ["next_chapter"]=1211,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=2778,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=444524,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=423744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4920,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=530038,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=121,
+ ["unit"]=0
+ }
+ },
+ [1211]={
+ ["next_chapter"]=1212,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2816,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=450629,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=427744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=4970,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=530038,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=121,
+ ["unit"]=0
+ }
+ },
+ [1212]={
+ ["next_chapter"]=1213,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2855,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=456793,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=432744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=5020,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=530038,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=121,
+ ["unit"]=0
+ }
+ },
+ [1213]={
+ ["next_chapter"]=1214,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2894,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=463014,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=437744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=5070,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=530038,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=121,
+ ["unit"]=0
+ }
+ },
+ [1214]={
+ ["next_chapter"]=1215,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2933,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=469295,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=442744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=5120,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=530038,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=121,
+ ["unit"]=0
+ }
+ },
+ [1215]={
+ ["next_chapter"]=1216,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2973,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=475634,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=447744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=5170,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=530038,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=121,
+ ["unit"]=0
+ }
+ },
+ [1216]={
+ ["next_chapter"]=1217,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3013,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=482032,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=452744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=5220,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=530038,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=121,
+ ["unit"]=0
+ }
+ },
+ [1217]={
+ ["next_chapter"]=1218,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3053,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=488490,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=457744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=5270,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=530038,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=121,
+ ["unit"]=0
+ }
+ },
+ [1218]={
+ ["next_chapter"]=1219,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3094,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=495008,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=462744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=5320,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=530038,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=121,
+ ["unit"]=0
+ }
+ },
+ [1219]={
+ ["next_chapter"]=1220,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3135,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=501586,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=467744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=5370,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=530038,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=121,
+ ["unit"]=0
+ }
+ },
+ [1220]={
+ ["next_chapter"]=1221,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=3176,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=508224,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=472744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=5420,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=38,
+ ["grasp_gold_reward"]={
+ ["value"]=584238,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=122,
+ ["unit"]=0
+ }
+ },
+ [1221]={
+ ["next_chapter"]=1222,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3218,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=514923,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=477744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=5470,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=584238,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=122,
+ ["unit"]=0
+ }
+ },
+ [1222]={
+ ["next_chapter"]=1223,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3261,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=521683,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=482744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=5520,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=584238,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=122,
+ ["unit"]=0
+ }
+ },
+ [1223]={
+ ["next_chapter"]=1224,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3303,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=528504,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=487744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=5580,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=584238,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=122,
+ ["unit"]=0
+ }
+ },
+ [1224]={
+ ["next_chapter"]=1225,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3346,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=535386,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=492744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=5640,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=584238,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=122,
+ ["unit"]=0
+ }
+ },
+ [1225]={
+ ["next_chapter"]=1226,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3390,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=542330,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=497744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=5700,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=584238,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=122,
+ ["unit"]=0
+ }
+ },
+ [1226]={
+ ["next_chapter"]=1227,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3433,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=549337,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=502744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=5760,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=584238,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=122,
+ ["unit"]=0
+ }
+ },
+ [1227]={
+ ["next_chapter"]=1228,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3478,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=556405,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=507744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=5820,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=584238,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=122,
+ ["unit"]=0
+ }
+ },
+ [1228]={
+ ["next_chapter"]=1229,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3522,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=563536,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=512744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=5880,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=584238,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=122,
+ ["unit"]=0
+ }
+ },
+ [1229]={
+ ["next_chapter"]=1230,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3567,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=570730,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=517744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=5940,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=584238,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=122,
+ ["unit"]=0
+ }
+ },
+ [1230]={
+ ["next_chapter"]=1231,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=3612,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=577987,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=523744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=6000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=644238,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=123,
+ ["unit"]=0
+ }
+ },
+ [1231]={
+ ["next_chapter"]=1232,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3658,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=585307,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=529744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=6060,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=644238,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=123,
+ ["unit"]=0
+ }
+ },
+ [1232]={
+ ["next_chapter"]=1233,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3704,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=592691,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=535744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=6120,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=644238,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=123,
+ ["unit"]=0
+ }
+ },
+ [1233]={
+ ["next_chapter"]=1234,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3751,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=600139,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=541744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=6180,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=644238,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=123,
+ ["unit"]=0
+ }
+ },
+ [1234]={
+ ["next_chapter"]=1235,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3798,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=607651,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=547744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=6240,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=644238,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=123,
+ ["unit"]=0
+ }
+ },
+ [1235]={
+ ["next_chapter"]=1236,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3845,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=615227,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=553744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=6300,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=644238,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=123,
+ ["unit"]=0
+ }
+ },
+ [1236]={
+ ["next_chapter"]=1237,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3893,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=622868,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=559744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=6360,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=644238,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=123,
+ ["unit"]=0
+ }
+ },
+ [1237]={
+ ["next_chapter"]=1238,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3941,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=630575,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=565744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=6420,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=644238,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=123,
+ ["unit"]=0
+ }
+ },
+ [1238]={
+ ["next_chapter"]=1239,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3990,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=638346,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=571744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=6480,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=644238,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=123,
+ ["unit"]=0
+ }
+ },
+ [1239]={
+ ["next_chapter"]=1240,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4039,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=646183,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=577744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=6540,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=644238,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=123,
+ ["unit"]=0
+ }
+ },
+ [1240]={
+ ["next_chapter"]=1241,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=4088,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=654087,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=583744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=6610,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=710338,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=124,
+ ["unit"]=0
+ }
+ },
+ [1241]={
+ ["next_chapter"]=1242,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4138,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=662056,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=589744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=6680,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=710338,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=124,
+ ["unit"]=0
+ }
+ },
+ [1242]={
+ ["next_chapter"]=1243,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4188,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=670091,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=595744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=6750,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=710338,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=124,
+ ["unit"]=0
+ }
+ },
+ [1243]={
+ ["next_chapter"]=1244,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4239,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=678194,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=601744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=6820,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=710338,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=124,
+ ["unit"]=0
+ }
+ },
+ [1244]={
+ ["next_chapter"]=1245,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4290,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=686363,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=607744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=6890,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=710338,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=124,
+ ["unit"]=0
+ }
+ },
+ [1245]={
+ ["next_chapter"]=1246,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4341,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=694599,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=613744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=6960,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=710338,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=124,
+ ["unit"]=0
+ }
+ },
+ [1246]={
+ ["next_chapter"]=1247,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4393,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=702903,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=620744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=7030,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=710338,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=124,
+ ["unit"]=0
+ }
+ },
+ [1247]={
+ ["next_chapter"]=1248,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4445,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=711275,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=627744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=7100,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=710338,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=124,
+ ["unit"]=0
+ }
+ },
+ [1248]={
+ ["next_chapter"]=1249,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4498,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=719715,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=634744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=7170,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=710338,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=124,
+ ["unit"]=0
+ }
+ },
+ [1249]={
+ ["next_chapter"]=1250,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4551,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=728223,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=641744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=7240,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=710338,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=124,
+ ["unit"]=0
+ }
+ },
+ [1250]={
+ ["next_chapter"]=1251,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=4605,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=736800,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=648744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=7310,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=783438,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=125,
+ ["unit"]=0
+ }
+ },
+ [1251]={
+ ["next_chapter"]=1252,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4659,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=745446,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=655744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=7380,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=783438,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=125,
+ ["unit"]=0
+ }
+ },
+ [1252]={
+ ["next_chapter"]=1253,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4714,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=754161,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=662744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=7450,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=783438,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=125,
+ ["unit"]=0
+ }
+ },
+ [1253]={
+ ["next_chapter"]=1254,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4768,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=762945,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=669744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=7520,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=783438,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=125,
+ ["unit"]=0
+ }
+ },
+ [1254]={
+ ["next_chapter"]=1255,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4824,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=771799,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=676744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=7600,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=783438,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=125,
+ ["unit"]=0
+ }
+ },
+ [1255]={
+ ["next_chapter"]=1256,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4880,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=780723,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=683744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=7680,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=783438,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=125,
+ ["unit"]=0
+ }
+ },
+ [1256]={
+ ["next_chapter"]=1257,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4936,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=789717,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=690744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=7760,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=783438,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=125,
+ ["unit"]=0
+ }
+ },
+ [1257]={
+ ["next_chapter"]=1258,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4992,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=798782,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=697744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=7840,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=783438,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=125,
+ ["unit"]=0
+ }
+ },
+ [1258]={
+ ["next_chapter"]=1259,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5049,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=807918,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=704744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=7920,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=783438,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=125,
+ ["unit"]=0
+ }
+ },
+ [1259]={
+ ["next_chapter"]=1260,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5107,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=817124,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=712744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=8000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=783438,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=125,
+ ["unit"]=0
+ }
+ },
+ [1260]={
+ ["next_chapter"]=1261,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=5165,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=826402,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=720744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=8080,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=864238,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=126,
+ ["unit"]=0
+ }
+ },
+ [1261]={
+ ["next_chapter"]=1262,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5223,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=835752,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=728744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=8160,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=864238,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=126,
+ ["unit"]=0
+ }
+ },
+ [1262]={
+ ["next_chapter"]=1263,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5282,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=845174,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=736744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=8240,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=864238,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=126,
+ ["unit"]=0
+ }
+ },
+ [1263]={
+ ["next_chapter"]=1264,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5342,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=854668,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=744744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=8320,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=864238,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=126,
+ ["unit"]=0
+ }
+ },
+ [1264]={
+ ["next_chapter"]=1265,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5401,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=864234,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=752744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=8400,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=864238,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=126,
+ ["unit"]=0
+ }
+ },
+ [1265]={
+ ["next_chapter"]=1266,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5462,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=873873,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=760744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=8480,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=864238,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=126,
+ ["unit"]=0
+ }
+ },
+ [1266]={
+ ["next_chapter"]=1267,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5522,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=883585,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=768744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=8560,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=864238,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=126,
+ ["unit"]=0
+ }
+ },
+ [1267]={
+ ["next_chapter"]=1268,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5584,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=893371,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=776744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=8650,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=864238,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=126,
+ ["unit"]=0
+ }
+ },
+ [1268]={
+ ["next_chapter"]=1269,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5645,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=903230,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=784744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=8740,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=864238,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=126,
+ ["unit"]=0
+ }
+ },
+ [1269]={
+ ["next_chapter"]=1270,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5707,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=913162,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=792744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=8830,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=864238,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=126,
+ ["unit"]=0
+ }
+ },
+ [1270]={
+ ["next_chapter"]=1271,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=5770,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=923169,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=800744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=8920,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=953438,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=127,
+ ["unit"]=0
+ }
+ },
+ [1271]={
+ ["next_chapter"]=1272,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5833,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=933251,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=809744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=9010,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=953438,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=127,
+ ["unit"]=0
+ }
+ },
+ [1272]={
+ ["next_chapter"]=1273,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5896,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=943407,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=818744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=9100,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=953438,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=127,
+ ["unit"]=0
+ }
+ },
+ [1273]={
+ ["next_chapter"]=1274,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5960,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=953638,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=827744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=9190,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=953438,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=127,
+ ["unit"]=0
+ }
+ },
+ [1274]={
+ ["next_chapter"]=1275,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6025,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=963944,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=836744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=9280,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=953438,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=127,
+ ["unit"]=0
+ }
+ },
+ [1275]={
+ ["next_chapter"]=1276,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6090,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=974326,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=845744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=9370,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=953438,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=127,
+ ["unit"]=0
+ }
+ },
+ [1276]={
+ ["next_chapter"]=1277,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6155,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=984783,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=854744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=9460,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=953438,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=127,
+ ["unit"]=0
+ }
+ },
+ [1277]={
+ ["next_chapter"]=1278,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6221,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=995317,
+ ["unit"]=4
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=863744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=9550,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=953438,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=127,
+ ["unit"]=0
+ }
+ },
+ [1278]={
+ ["next_chapter"]=1279,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6287,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1006,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=872744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=9650,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=953438,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=127,
+ ["unit"]=0
+ }
+ },
+ [1279]={
+ ["next_chapter"]=1280,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6354,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1017,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=881744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=9750,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=953438,
+ ["unit"]=1
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=127,
+ ["unit"]=0
+ }
+ },
+ [1280]={
+ ["next_chapter"]=1281,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=6421,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1027,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=890744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=9850,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=1052,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=128,
+ ["unit"]=0
+ }
+ },
+ [1281]={
+ ["next_chapter"]=1282,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6489,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1038,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=899744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=9950,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=1052,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=128,
+ ["unit"]=0
+ }
+ },
+ [1282]={
+ ["next_chapter"]=1283,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6557,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1049,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=909744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=10050,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=1052,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=128,
+ ["unit"]=0
+ }
+ },
+ [1283]={
+ ["next_chapter"]=1284,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6626,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1060,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=919744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=10200,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=1052,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=128,
+ ["unit"]=0
+ }
+ },
+ [1284]={
+ ["next_chapter"]=1285,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6695,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1071,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=929744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=10300,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=1052,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=128,
+ ["unit"]=0
+ }
+ },
+ [1285]={
+ ["next_chapter"]=1286,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6765,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1082,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=939744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=10400,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=1052,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=128,
+ ["unit"]=0
+ }
+ },
+ [1286]={
+ ["next_chapter"]=1287,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6835,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1094,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=949744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=10500,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=1052,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=128,
+ ["unit"]=0
+ }
+ },
+ [1287]={
+ ["next_chapter"]=1288,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6906,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1105,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=959744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=10600,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=1052,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=128,
+ ["unit"]=0
+ }
+ },
+ [1288]={
+ ["next_chapter"]=1289,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6977,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1116,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=969744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=10700,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=1052,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=128,
+ ["unit"]=0
+ }
+ },
+ [1289]={
+ ["next_chapter"]=1290,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7048,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1128,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=979744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=10800,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=1052,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=128,
+ ["unit"]=0
+ }
+ },
+ [1290]={
+ ["next_chapter"]=1291,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=7121,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1139,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=989744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=10900,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=1161,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=129,
+ ["unit"]=0
+ }
+ },
+ [1291]={
+ ["next_chapter"]=1292,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7193,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1151,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=999744,
+ ["unit"]=1
+ },
+ ["idle_gold"]={
+ ["value"]=11000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=1161,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=129,
+ ["unit"]=0
+ }
+ },
+ [1292]={
+ ["next_chapter"]=1293,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7266,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1163,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1010,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=11100,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=1161,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=129,
+ ["unit"]=0
+ }
+ },
+ [1293]={
+ ["next_chapter"]=1294,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7340,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1174,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1020,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=11200,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=1161,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=129,
+ ["unit"]=0
+ }
+ },
+ [1294]={
+ ["next_chapter"]=1295,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7414,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1186,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1030,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=11300,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=1161,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=129,
+ ["unit"]=0
+ }
+ },
+ [1295]={
+ ["next_chapter"]=1296,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7489,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1198,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1040,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=11400,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=1161,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=129,
+ ["unit"]=0
+ }
+ },
+ [1296]={
+ ["next_chapter"]=1297,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7564,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1210,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1050,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=11500,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=1161,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=129,
+ ["unit"]=0
+ }
+ },
+ [1297]={
+ ["next_chapter"]=1298,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7640,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1222,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1060,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=11600,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=1161,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=129,
+ ["unit"]=0
+ }
+ },
+ [1298]={
+ ["next_chapter"]=1299,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7716,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1235,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1070,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=11700,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=1161,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=129,
+ ["unit"]=0
+ }
+ },
+ [1299]={
+ ["next_chapter"]=1300,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7793,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1247,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1080,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=11800,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=1161,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=129,
+ ["unit"]=0
+ }
+ },
+ [1300]={
+ ["next_chapter"]=1301,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=7870,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1259,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1090,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=11900,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=39,
+ ["grasp_gold_reward"]={
+ ["value"]=1280,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=130,
+ ["unit"]=0
+ }
+ },
+ [1301]={
+ ["next_chapter"]=1302,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7948,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1272,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1100,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=12000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=1280,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=130,
+ ["unit"]=0
+ }
+ },
+ [1302]={
+ ["next_chapter"]=1303,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8026,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1284,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1110,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=12100,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=1280,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=130,
+ ["unit"]=0
+ }
+ },
+ [1303]={
+ ["next_chapter"]=1304,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8105,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1297,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1120,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=12200,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=1280,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=130,
+ ["unit"]=0
+ }
+ },
+ [1304]={
+ ["next_chapter"]=1305,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8184,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1309,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1130,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=12300,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=1280,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=130,
+ ["unit"]=0
+ }
+ },
+ [1305]={
+ ["next_chapter"]=1306,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8264,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1322,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1140,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=12400,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=1280,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=130,
+ ["unit"]=0
+ }
+ },
+ [1306]={
+ ["next_chapter"]=1307,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8344,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1335,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1150,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=12500,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=1280,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=130,
+ ["unit"]=0
+ }
+ },
+ [1307]={
+ ["next_chapter"]=1308,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8425,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1348,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1160,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=12600,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=1280,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=130,
+ ["unit"]=0
+ }
+ },
+ [1308]={
+ ["next_chapter"]=1309,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8507,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1361,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1170,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=12700,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=1280,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=130,
+ ["unit"]=0
+ }
+ },
+ [1309]={
+ ["next_chapter"]=1310,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8589,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1374,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1180,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=12800,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=1280,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=130,
+ ["unit"]=0
+ }
+ },
+ [1310]={
+ ["next_chapter"]=1311,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=8671,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1387,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1190,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=12900,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=1409,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=131,
+ ["unit"]=0
+ }
+ },
+ [1311]={
+ ["next_chapter"]=1312,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8754,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1401,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1200,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=13000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=1409,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=131,
+ ["unit"]=0
+ }
+ },
+ [1312]={
+ ["next_chapter"]=1313,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8838,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1414,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1210,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=13100,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=1409,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=131,
+ ["unit"]=0
+ }
+ },
+ [1313]={
+ ["next_chapter"]=1314,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8922,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1428,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1220,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=13200,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=1409,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=131,
+ ["unit"]=0
+ }
+ },
+ [1314]={
+ ["next_chapter"]=1315,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9007,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1441,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1230,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=13300,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=1409,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=131,
+ ["unit"]=0
+ }
+ },
+ [1315]={
+ ["next_chapter"]=1316,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9092,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1455,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1240,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=13400,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=1409,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=131,
+ ["unit"]=0
+ }
+ },
+ [1316]={
+ ["next_chapter"]=1317,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9177,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1468,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1250,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=13500,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=1409,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=131,
+ ["unit"]=0
+ }
+ },
+ [1317]={
+ ["next_chapter"]=1318,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9264,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1482,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1260,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=13600,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=1409,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=131,
+ ["unit"]=0
+ }
+ },
+ [1318]={
+ ["next_chapter"]=1319,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9350,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1496,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1270,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=13700,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=1409,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=131,
+ ["unit"]=0
+ }
+ },
+ [1319]={
+ ["next_chapter"]=1320,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9438,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1510,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1280,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=13800,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=1409,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=131,
+ ["unit"]=0
+ }
+ },
+ [1320]={
+ ["next_chapter"]=1321,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=9526,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1524,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1290,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=13900,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=1548,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=132,
+ ["unit"]=0
+ }
+ },
+ [1321]={
+ ["next_chapter"]=1322,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9614,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1538,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1300,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=14000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=1548,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=132,
+ ["unit"]=0
+ }
+ },
+ [1322]={
+ ["next_chapter"]=1323,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9703,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1553,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1310,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=14100,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=1548,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=132,
+ ["unit"]=0
+ }
+ },
+ [1323]={
+ ["next_chapter"]=1324,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9793,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1567,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1320,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=14200,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=1548,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=132,
+ ["unit"]=0
+ }
+ },
+ [1324]={
+ ["next_chapter"]=1325,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9883,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1581,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1330,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=14300,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=1548,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=132,
+ ["unit"]=0
+ }
+ },
+ [1325]={
+ ["next_chapter"]=1326,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9974,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1596,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1340,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=14400,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=1548,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=132,
+ ["unit"]=0
+ }
+ },
+ [1326]={
+ ["next_chapter"]=1327,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10065,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1610,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1350,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=14500,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=1548,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=132,
+ ["unit"]=0
+ }
+ },
+ [1327]={
+ ["next_chapter"]=1328,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10157,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1625,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1360,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=14600,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=1548,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=132,
+ ["unit"]=0
+ }
+ },
+ [1328]={
+ ["next_chapter"]=1329,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10249,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1640,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1370,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=14700,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=1548,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=132,
+ ["unit"]=0
+ }
+ },
+ [1329]={
+ ["next_chapter"]=1330,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10342,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1655,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1380,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=14800,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=1548,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=132,
+ ["unit"]=0
+ }
+ },
+ [1330]={
+ ["next_chapter"]=1331,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=10435,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1670,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1390,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=14900,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=1697,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=133,
+ ["unit"]=0
+ }
+ },
+ [1331]={
+ ["next_chapter"]=1332,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10529,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1685,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1400,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=15000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=1697,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=133,
+ ["unit"]=0
+ }
+ },
+ [1332]={
+ ["next_chapter"]=1333,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10624,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1700,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1410,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=15200,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=1697,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=133,
+ ["unit"]=0
+ }
+ },
+ [1333]={
+ ["next_chapter"]=1334,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10719,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1715,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1420,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=15400,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=1697,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=133,
+ ["unit"]=0
+ }
+ },
+ [1334]={
+ ["next_chapter"]=1335,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10815,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1730,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1430,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=15600,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=1697,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=133,
+ ["unit"]=0
+ }
+ },
+ [1335]={
+ ["next_chapter"]=1336,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10911,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1746,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1440,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=15800,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=1697,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=133,
+ ["unit"]=0
+ }
+ },
+ [1336]={
+ ["next_chapter"]=1337,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11008,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1761,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1450,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=16000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=1697,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=133,
+ ["unit"]=0
+ }
+ },
+ [1337]={
+ ["next_chapter"]=1338,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11106,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1777,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1460,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=16200,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=1697,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=133,
+ ["unit"]=0
+ }
+ },
+ [1338]={
+ ["next_chapter"]=1339,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11204,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1793,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1470,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=16400,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=1697,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=133,
+ ["unit"]=0
+ }
+ },
+ [1339]={
+ ["next_chapter"]=1340,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11303,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1808,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1480,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=16600,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=1697,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=133,
+ ["unit"]=0
+ }
+ },
+ [1340]={
+ ["next_chapter"]=1341,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=11402,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1824,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1490,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=16800,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=1865,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=134,
+ ["unit"]=0
+ }
+ },
+ [1341]={
+ ["next_chapter"]=1342,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11502,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1840,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1500,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=17000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=1865,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=134,
+ ["unit"]=0
+ }
+ },
+ [1342]={
+ ["next_chapter"]=1343,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11602,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1856,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1510,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=17200,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=1865,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=134,
+ ["unit"]=0
+ }
+ },
+ [1343]={
+ ["next_chapter"]=1344,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11703,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1872,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1520,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=17400,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=1865,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=134,
+ ["unit"]=0
+ }
+ },
+ [1344]={
+ ["next_chapter"]=1345,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11805,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1889,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1530,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=17600,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=1865,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=134,
+ ["unit"]=0
+ }
+ },
+ [1345]={
+ ["next_chapter"]=1346,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11907,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1905,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1540,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=17800,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=1865,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=134,
+ ["unit"]=0
+ }
+ },
+ [1346]={
+ ["next_chapter"]=1347,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12010,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1922,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1550,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=18000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=1865,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=134,
+ ["unit"]=0
+ }
+ },
+ [1347]={
+ ["next_chapter"]=1348,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12113,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1938,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1560,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=18200,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=1865,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=134,
+ ["unit"]=0
+ }
+ },
+ [1348]={
+ ["next_chapter"]=1349,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12217,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1955,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1570,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=18400,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=1865,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=134,
+ ["unit"]=0
+ }
+ },
+ [1349]={
+ ["next_chapter"]=1350,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12322,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1971,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1580,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=18600,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=1865,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=134,
+ ["unit"]=0
+ }
+ },
+ [1350]={
+ ["next_chapter"]=1351,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=12427,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=1988,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1590,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=18800,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=2053,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=135,
+ ["unit"]=0
+ }
+ },
+ [1351]={
+ ["next_chapter"]=1352,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12533,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=2005,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1600,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=19000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=2053,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=135,
+ ["unit"]=0
+ }
+ },
+ [1352]={
+ ["next_chapter"]=1353,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12639,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=2022,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1610,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=19200,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=2053,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=135,
+ ["unit"]=0
+ }
+ },
+ [1353]={
+ ["next_chapter"]=1354,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12746,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=2039,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1620,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=19400,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=2053,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=135,
+ ["unit"]=0
+ }
+ },
+ [1354]={
+ ["next_chapter"]=1355,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12854,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=2057,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1630,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=19600,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=2053,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=135,
+ ["unit"]=0
+ }
+ },
+ [1355]={
+ ["next_chapter"]=1356,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12962,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=2074,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1640,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=19800,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=2053,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=135,
+ ["unit"]=0
+ }
+ },
+ [1356]={
+ ["next_chapter"]=1357,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13071,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=2091,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1660,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=20000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=2053,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=135,
+ ["unit"]=0
+ }
+ },
+ [1357]={
+ ["next_chapter"]=1358,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13180,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=2109,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1680,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=20200,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=2053,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=135,
+ ["unit"]=0
+ }
+ },
+ [1358]={
+ ["next_chapter"]=1359,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13290,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=2126,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1700,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=20400,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=2053,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=135,
+ ["unit"]=0
+ }
+ },
+ [1359]={
+ ["next_chapter"]=1360,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13401,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=2144,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1720,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=20600,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=2053,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=135,
+ ["unit"]=0
+ }
+ },
+ [1360]={
+ ["next_chapter"]=1361,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=13512,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=2162,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1740,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=20800,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=2261,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=136,
+ ["unit"]=0
+ }
+ },
+ [1361]={
+ ["next_chapter"]=1362,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13624,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=2180,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1760,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=21000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=2261,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=136,
+ ["unit"]=0
+ }
+ },
+ [1362]={
+ ["next_chapter"]=1363,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13737,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=2198,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1780,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=21200,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=2261,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=136,
+ ["unit"]=0
+ }
+ },
+ [1363]={
+ ["next_chapter"]=1364,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13850,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=2216,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1800,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=21400,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=2261,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=136,
+ ["unit"]=0
+ }
+ },
+ [1364]={
+ ["next_chapter"]=1365,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13964,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=2234,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1820,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=21600,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=2261,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=136,
+ ["unit"]=0
+ }
+ },
+ [1365]={
+ ["next_chapter"]=1366,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14078,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=2252,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1840,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=21800,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=2261,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=136,
+ ["unit"]=0
+ }
+ },
+ [1366]={
+ ["next_chapter"]=1367,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14193,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=2271,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1860,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=22000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=2261,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=136,
+ ["unit"]=0
+ }
+ },
+ [1367]={
+ ["next_chapter"]=1368,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14309,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=2289,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1880,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=22200,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=2261,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=136,
+ ["unit"]=0
+ }
+ },
+ [1368]={
+ ["next_chapter"]=1369,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14425,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=2308,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1900,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=22400,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=2261,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=136,
+ ["unit"]=0
+ }
+ },
+ [1369]={
+ ["next_chapter"]=1370,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14542,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=2327,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1920,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=22600,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=2261,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=136,
+ ["unit"]=0
+ }
+ },
+ [1370]={
+ ["next_chapter"]=1371,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=14659,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=2346,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1940,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=22800,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=2489,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=137,
+ ["unit"]=0
+ }
+ },
+ [1371]={
+ ["next_chapter"]=1372,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14778,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=2364,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1960,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=23000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=2489,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=137,
+ ["unit"]=0
+ }
+ },
+ [1372]={
+ ["next_chapter"]=1373,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14896,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=2383,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1980,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=23200,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=2489,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=137,
+ ["unit"]=0
+ }
+ },
+ [1373]={
+ ["next_chapter"]=1374,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15016,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=2403,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=23400,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=2489,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=137,
+ ["unit"]=0
+ }
+ },
+ [1374]={
+ ["next_chapter"]=1375,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15136,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=2422,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2020,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=23600,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=2489,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=137,
+ ["unit"]=0
+ }
+ },
+ [1375]={
+ ["next_chapter"]=1376,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15257,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=2441,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2040,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=23800,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=2489,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=137,
+ ["unit"]=0
+ }
+ },
+ [1376]={
+ ["next_chapter"]=1377,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15378,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=2461,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2060,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=24000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=2489,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=137,
+ ["unit"]=0
+ }
+ },
+ [1377]={
+ ["next_chapter"]=1378,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15500,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=2480,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2080,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=24200,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=2489,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=137,
+ ["unit"]=0
+ }
+ },
+ [1378]={
+ ["next_chapter"]=1379,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15623,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=2500,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2100,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=24400,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=2489,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=137,
+ ["unit"]=0
+ }
+ },
+ [1379]={
+ ["next_chapter"]=1380,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15746,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=2519,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2120,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=24600,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=2489,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=137,
+ ["unit"]=0
+ }
+ },
+ [1380]={
+ ["next_chapter"]=1381,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=15870,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=2539,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2140,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=24800,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=40,
+ ["grasp_gold_reward"]={
+ ["value"]=2737,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=138,
+ ["unit"]=0
+ }
+ },
+ [1381]={
+ ["next_chapter"]=1382,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15995,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=2559,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2160,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=25000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=2737,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=138,
+ ["unit"]=0
+ }
+ },
+ [1382]={
+ ["next_chapter"]=1383,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16120,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=2579,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2180,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=25300,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=2737,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=138,
+ ["unit"]=0
+ }
+ },
+ [1383]={
+ ["next_chapter"]=1384,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16246,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=2599,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2200,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=25600,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=2737,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=138,
+ ["unit"]=0
+ }
+ },
+ [1384]={
+ ["next_chapter"]=1385,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16373,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=2620,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2220,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=25900,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=2737,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=138,
+ ["unit"]=0
+ }
+ },
+ [1385]={
+ ["next_chapter"]=1386,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16500,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=2640,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2240,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=26200,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=2737,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=138,
+ ["unit"]=0
+ }
+ },
+ [1386]={
+ ["next_chapter"]=1387,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16628,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=2661,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2260,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=26500,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=2737,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=138,
+ ["unit"]=0
+ }
+ },
+ [1387]={
+ ["next_chapter"]=1388,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16757,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=2681,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2280,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=26800,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=2737,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=138,
+ ["unit"]=0
+ }
+ },
+ [1388]={
+ ["next_chapter"]=1389,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16886,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=2702,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2300,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=27100,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=2737,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=138,
+ ["unit"]=0
+ }
+ },
+ [1389]={
+ ["next_chapter"]=1390,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17016,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=2723,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2320,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=27400,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=2737,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=138,
+ ["unit"]=0
+ }
+ },
+ [1390]={
+ ["next_chapter"]=1391,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=17147,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=2744,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2340,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=27700,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=3014,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=139,
+ ["unit"]=0
+ }
+ },
+ [1391]={
+ ["next_chapter"]=1392,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17278,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=2765,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2360,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=28000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=3014,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=139,
+ ["unit"]=0
+ }
+ },
+ [1392]={
+ ["next_chapter"]=1393,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17410,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=2786,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2380,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=28300,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=3014,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=139,
+ ["unit"]=0
+ }
+ },
+ [1393]={
+ ["next_chapter"]=1394,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17543,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=2807,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2400,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=28600,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=3014,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=139,
+ ["unit"]=0
+ }
+ },
+ [1394]={
+ ["next_chapter"]=1395,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17676,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=2828,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2420,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=28900,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=3014,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=139,
+ ["unit"]=0
+ }
+ },
+ [1395]={
+ ["next_chapter"]=1396,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17810,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=2850,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2440,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=29200,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=3014,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=139,
+ ["unit"]=0
+ }
+ },
+ [1396]={
+ ["next_chapter"]=1397,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17945,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=2871,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2460,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=29500,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=3014,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=139,
+ ["unit"]=0
+ }
+ },
+ [1397]={
+ ["next_chapter"]=1398,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18080,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=2893,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2480,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=29800,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=3014,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=139,
+ ["unit"]=0
+ }
+ },
+ [1398]={
+ ["next_chapter"]=1399,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18216,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=2915,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2510,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=30100,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=3014,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=139,
+ ["unit"]=0
+ }
+ },
+ [1399]={
+ ["next_chapter"]=1400,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18353,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=2936,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2540,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=30400,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=3014,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=139,
+ ["unit"]=0
+ }
+ },
+ [1400]={
+ ["next_chapter"]=1401,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=18491,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=2958,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2570,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=30700,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=3321,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=140,
+ ["unit"]=0
+ }
+ },
+ [1401]={
+ ["next_chapter"]=1402,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18629,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=2981,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2600,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=31000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=3321,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=140,
+ ["unit"]=0
+ }
+ },
+ [1402]={
+ ["next_chapter"]=1403,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18767,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=3003,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2630,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=31300,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=3321,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=140,
+ ["unit"]=0
+ }
+ },
+ [1403]={
+ ["next_chapter"]=1404,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18907,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=3025,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2660,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=31600,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=3321,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=140,
+ ["unit"]=0
+ }
+ },
+ [1404]={
+ ["next_chapter"]=1405,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19047,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=3048,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2690,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=31900,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=3321,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=140,
+ ["unit"]=0
+ }
+ },
+ [1405]={
+ ["next_chapter"]=1406,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19188,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=3070,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2720,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=32200,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=3321,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=140,
+ ["unit"]=0
+ }
+ },
+ [1406]={
+ ["next_chapter"]=1407,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19330,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=3093,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2750,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=32500,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=3321,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=140,
+ ["unit"]=0
+ }
+ },
+ [1407]={
+ ["next_chapter"]=1408,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19472,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=3116,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2780,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=32800,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=3321,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=140,
+ ["unit"]=0
+ }
+ },
+ [1408]={
+ ["next_chapter"]=1409,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19615,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=3138,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2810,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=33100,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=3321,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=140,
+ ["unit"]=0
+ }
+ },
+ [1409]={
+ ["next_chapter"]=1410,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19759,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=3161,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2840,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=33400,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=3321,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=140,
+ ["unit"]=0
+ }
+ },
+ [1410]={
+ ["next_chapter"]=1411,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=19903,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=3184,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2870,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=33700,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=3658,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=141,
+ ["unit"]=0
+ }
+ },
+ [1411]={
+ ["next_chapter"]=1412,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20048,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=3208,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2900,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=34000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=3658,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=141,
+ ["unit"]=0
+ }
+ },
+ [1412]={
+ ["next_chapter"]=1413,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20194,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=3231,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2930,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=34300,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=3658,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=141,
+ ["unit"]=0
+ }
+ },
+ [1413]={
+ ["next_chapter"]=1414,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20341,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=3254,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2960,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=34600,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=3658,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=141,
+ ["unit"]=0
+ }
+ },
+ [1414]={
+ ["next_chapter"]=1415,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20488,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=3278,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2990,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=34900,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=3658,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=141,
+ ["unit"]=0
+ }
+ },
+ [1415]={
+ ["next_chapter"]=1416,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20636,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=3302,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3020,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=35200,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=3658,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=141,
+ ["unit"]=0
+ }
+ },
+ [1416]={
+ ["next_chapter"]=1417,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20784,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=3326,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3050,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=35600,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=3658,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=141,
+ ["unit"]=0
+ }
+ },
+ [1417]={
+ ["next_chapter"]=1418,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20934,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=3349,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3080,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=36000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=3658,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=141,
+ ["unit"]=0
+ }
+ },
+ [1418]={
+ ["next_chapter"]=1419,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21084,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=3373,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3110,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=36400,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=3658,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=141,
+ ["unit"]=0
+ }
+ },
+ [1419]={
+ ["next_chapter"]=1420,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21235,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=3398,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3140,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=36800,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=3658,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=141,
+ ["unit"]=0
+ }
+ },
+ [1420]={
+ ["next_chapter"]=1421,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=21386,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=3422,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3170,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=37200,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=4030,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=142,
+ ["unit"]=0
+ }
+ },
+ [1421]={
+ ["next_chapter"]=1422,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21538,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=3446,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3200,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=37600,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=4030,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=142,
+ ["unit"]=0
+ }
+ },
+ [1422]={
+ ["next_chapter"]=1423,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21691,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=3471,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3230,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=38000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=4030,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=142,
+ ["unit"]=0
+ }
+ },
+ [1423]={
+ ["next_chapter"]=1424,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21845,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=3495,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3260,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=38400,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=4030,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=142,
+ ["unit"]=0
+ }
+ },
+ [1424]={
+ ["next_chapter"]=1425,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22000,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=3520,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3290,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=38800,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=4030,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=142,
+ ["unit"]=0
+ }
+ },
+ [1425]={
+ ["next_chapter"]=1426,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22155,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=3545,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3320,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=39200,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=4030,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=142,
+ ["unit"]=0
+ }
+ },
+ [1426]={
+ ["next_chapter"]=1427,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22311,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=3570,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3350,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=39600,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=4030,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=142,
+ ["unit"]=0
+ }
+ },
+ [1427]={
+ ["next_chapter"]=1428,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22467,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=3595,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3390,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=40000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=4030,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=142,
+ ["unit"]=0
+ }
+ },
+ [1428]={
+ ["next_chapter"]=1429,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22625,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=3620,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3430,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=40400,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=4030,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=142,
+ ["unit"]=0
+ }
+ },
+ [1429]={
+ ["next_chapter"]=1430,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22783,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=3645,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3470,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=40800,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=4030,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=142,
+ ["unit"]=0
+ }
+ },
+ [1430]={
+ ["next_chapter"]=1431,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=22942,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=3671,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3510,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=41200,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=4442,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=143,
+ ["unit"]=0
+ }
+ },
+ [1431]={
+ ["next_chapter"]=1432,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23101,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=3696,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3550,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=41600,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=4442,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=143,
+ ["unit"]=0
+ }
+ },
+ [1432]={
+ ["next_chapter"]=1433,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23262,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=3722,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3590,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=42000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=4442,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=143,
+ ["unit"]=0
+ }
+ },
+ [1433]={
+ ["next_chapter"]=1434,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23423,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=3748,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3630,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=42400,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=4442,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=143,
+ ["unit"]=0
+ }
+ },
+ [1434]={
+ ["next_chapter"]=1435,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23585,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=3774,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3670,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=42800,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=4442,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=143,
+ ["unit"]=0
+ }
+ },
+ [1435]={
+ ["next_chapter"]=1436,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23747,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=3800,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3710,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=43200,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=4442,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=143,
+ ["unit"]=0
+ }
+ },
+ [1436]={
+ ["next_chapter"]=1437,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23910,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=3826,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3750,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=43600,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=4442,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=143,
+ ["unit"]=0
+ }
+ },
+ [1437]={
+ ["next_chapter"]=1438,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24074,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=3852,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3790,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=44000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=4442,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=143,
+ ["unit"]=0
+ }
+ },
+ [1438]={
+ ["next_chapter"]=1439,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24239,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=3878,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3830,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=44400,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=4442,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=143,
+ ["unit"]=0
+ }
+ },
+ [1439]={
+ ["next_chapter"]=1440,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24405,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=3905,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3870,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=44800,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=4442,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=143,
+ ["unit"]=0
+ }
+ },
+ [1440]={
+ ["next_chapter"]=1441,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=24571,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=3931,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3910,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=45200,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=4894,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=144,
+ ["unit"]=0
+ }
+ },
+ [1441]={
+ ["next_chapter"]=1442,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24738,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=3958,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3950,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=45700,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=4894,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=144,
+ ["unit"]=0
+ }
+ },
+ [1442]={
+ ["next_chapter"]=1443,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24906,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=3985,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3990,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=46200,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=4894,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=144,
+ ["unit"]=0
+ }
+ },
+ [1443]={
+ ["next_chapter"]=1444,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25075,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=4012,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4030,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=46700,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=4894,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=144,
+ ["unit"]=0
+ }
+ },
+ [1444]={
+ ["next_chapter"]=1445,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25244,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=4039,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4070,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=47200,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=4894,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=144,
+ ["unit"]=0
+ }
+ },
+ [1445]={
+ ["next_chapter"]=1446,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25414,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=4066,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4110,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=47700,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=4894,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=144,
+ ["unit"]=0
+ }
+ },
+ [1446]={
+ ["next_chapter"]=1447,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25585,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=4094,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4150,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=48200,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=4894,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=144,
+ ["unit"]=0
+ }
+ },
+ [1447]={
+ ["next_chapter"]=1448,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25757,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=4121,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4190,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=48700,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=4894,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=144,
+ ["unit"]=0
+ }
+ },
+ [1448]={
+ ["next_chapter"]=1449,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25929,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=4149,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4230,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=49200,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=4894,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=144,
+ ["unit"]=0
+ }
+ },
+ [1449]={
+ ["next_chapter"]=1450,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26103,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=4176,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4270,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=49700,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=4894,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=144,
+ ["unit"]=0
+ }
+ },
+ [1450]={
+ ["next_chapter"]=1451,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=26277,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=4204,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4320,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=50200,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=5396,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=145,
+ ["unit"]=0
+ }
+ },
+ [1451]={
+ ["next_chapter"]=1452,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26451,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=4232,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4370,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=50700,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=5396,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=145,
+ ["unit"]=0
+ }
+ },
+ [1452]={
+ ["next_chapter"]=1453,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26627,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=4260,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4420,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=51200,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=5396,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=145,
+ ["unit"]=0
+ }
+ },
+ [1453]={
+ ["next_chapter"]=1454,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26803,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=4289,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4470,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=51700,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=5396,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=145,
+ ["unit"]=0
+ }
+ },
+ [1454]={
+ ["next_chapter"]=1455,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26980,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=4317,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4520,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=52200,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=5396,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=145,
+ ["unit"]=0
+ }
+ },
+ [1455]={
+ ["next_chapter"]=1456,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27158,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=4345,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4570,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=52700,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=5396,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=145,
+ ["unit"]=0
+ }
+ },
+ [1456]={
+ ["next_chapter"]=1457,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27337,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=4374,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4620,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=53200,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=5396,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=145,
+ ["unit"]=0
+ }
+ },
+ [1457]={
+ ["next_chapter"]=1458,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27516,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=4403,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4670,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=53700,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=5396,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=145,
+ ["unit"]=0
+ }
+ },
+ [1458]={
+ ["next_chapter"]=1459,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27696,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=4431,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4720,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=54200,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=5396,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=145,
+ ["unit"]=0
+ }
+ },
+ [1459]={
+ ["next_chapter"]=1460,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27878,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=4460,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4770,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=54700,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=5396,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=145,
+ ["unit"]=0
+ }
+ },
+ [1460]={
+ ["next_chapter"]=1461,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=28059,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=4489,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4820,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=55200,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=41,
+ ["grasp_gold_reward"]={
+ ["value"]=5948,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=146,
+ ["unit"]=0
+ }
+ },
+ [1461]={
+ ["next_chapter"]=1462,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28242,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=4519,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4870,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=55800,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=5948,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=146,
+ ["unit"]=0
+ }
+ },
+ [1462]={
+ ["next_chapter"]=1463,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28425,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=4548,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4920,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=56400,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=5948,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=146,
+ ["unit"]=0
+ }
+ },
+ [1463]={
+ ["next_chapter"]=1464,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28610,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=4578,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4970,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=57000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=5948,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=146,
+ ["unit"]=0
+ }
+ },
+ [1464]={
+ ["next_chapter"]=1465,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28795,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=4607,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5020,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=57600,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=5948,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=146,
+ ["unit"]=0
+ }
+ },
+ [1465]={
+ ["next_chapter"]=1466,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28980,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=4637,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5070,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=58200,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=5948,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=146,
+ ["unit"]=0
+ }
+ },
+ [1466]={
+ ["next_chapter"]=1467,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29167,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=4667,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5120,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=58800,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=5948,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=146,
+ ["unit"]=0
+ }
+ },
+ [1467]={
+ ["next_chapter"]=1468,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29354,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=4697,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5170,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=59400,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=5948,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=146,
+ ["unit"]=0
+ }
+ },
+ [1468]={
+ ["next_chapter"]=1469,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29543,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=4727,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5230,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=60000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=5948,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=146,
+ ["unit"]=0
+ }
+ },
+ [1469]={
+ ["next_chapter"]=1470,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29732,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=4757,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5290,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=60600,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=5948,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=146,
+ ["unit"]=0
+ }
+ },
+ [1470]={
+ ["next_chapter"]=1471,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=29921,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=4787,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5350,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=61200,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=6560,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=147,
+ ["unit"]=0
+ }
+ },
+ [1471]={
+ ["next_chapter"]=1472,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30112,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=4818,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5410,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=61800,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=6560,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=147,
+ ["unit"]=0
+ }
+ },
+ [1472]={
+ ["next_chapter"]=1473,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30303,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=4849,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5470,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=62400,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=6560,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=147,
+ ["unit"]=0
+ }
+ },
+ [1473]={
+ ["next_chapter"]=1474,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30496,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=4879,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5530,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=63000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=6560,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=147,
+ ["unit"]=0
+ }
+ },
+ [1474]={
+ ["next_chapter"]=1475,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30689,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=4910,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5590,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=63600,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=6560,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=147,
+ ["unit"]=0
+ }
+ },
+ [1475]={
+ ["next_chapter"]=1476,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30883,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=4941,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5650,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=64200,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=6560,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=147,
+ ["unit"]=0
+ }
+ },
+ [1476]={
+ ["next_chapter"]=1477,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=31077,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=4972,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5710,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=64800,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=6560,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=147,
+ ["unit"]=0
+ }
+ },
+ [1477]={
+ ["next_chapter"]=1478,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=31273,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=5004,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5770,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=65400,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=6560,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=147,
+ ["unit"]=0
+ }
+ },
+ [1478]={
+ ["next_chapter"]=1479,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=31469,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=5035,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5830,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=66100,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=6560,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=147,
+ ["unit"]=0
+ }
+ },
+ [1479]={
+ ["next_chapter"]=1480,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=31666,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=5067,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=66800,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=6560,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=147,
+ ["unit"]=0
+ }
+ },
+ [1480]={
+ ["next_chapter"]=1481,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=31864,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=5098,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5950,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=67500,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=7235,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=148,
+ ["unit"]=0
+ }
+ },
+ [1481]={
+ ["next_chapter"]=1482,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=32063,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=5130,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6010,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=68200,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=7235,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=148,
+ ["unit"]=0
+ }
+ },
+ [1482]={
+ ["next_chapter"]=1483,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=32263,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=5162,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6070,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=68900,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=7235,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=148,
+ ["unit"]=0
+ }
+ },
+ [1483]={
+ ["next_chapter"]=1484,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=32463,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=5194,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6130,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=69600,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=7235,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=148,
+ ["unit"]=0
+ }
+ },
+ [1484]={
+ ["next_chapter"]=1485,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=32665,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=5226,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6200,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=70300,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=7235,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=148,
+ ["unit"]=0
+ }
+ },
+ [1485]={
+ ["next_chapter"]=1486,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=32867,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=5259,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6270,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=71000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=7235,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=148,
+ ["unit"]=0
+ }
+ },
+ [1486]={
+ ["next_chapter"]=1487,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=33070,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=5291,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6340,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=71700,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=7235,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=148,
+ ["unit"]=0
+ }
+ },
+ [1487]={
+ ["next_chapter"]=1488,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=33273,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=5324,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6410,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=72400,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=7235,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=148,
+ ["unit"]=0
+ }
+ },
+ [1488]={
+ ["next_chapter"]=1489,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=33478,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=5357,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6480,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=73100,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=7235,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=148,
+ ["unit"]=0
+ }
+ },
+ [1489]={
+ ["next_chapter"]=1490,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=33684,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=5389,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6550,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=73800,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=7235,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=148,
+ ["unit"]=0
+ }
+ },
+ [1490]={
+ ["next_chapter"]=1491,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=33890,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=5422,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6620,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=74500,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=7980,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=149,
+ ["unit"]=0
+ }
+ },
+ [1491]={
+ ["next_chapter"]=1492,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=34097,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=5456,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6690,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=75200,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=7980,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=149,
+ ["unit"]=0
+ }
+ },
+ [1492]={
+ ["next_chapter"]=1493,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=34305,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=5489,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6760,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=76000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=7980,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=149,
+ ["unit"]=0
+ }
+ },
+ [1493]={
+ ["next_chapter"]=1494,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=34514,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=5522,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6830,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=76800,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=7980,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=149,
+ ["unit"]=0
+ }
+ },
+ [1494]={
+ ["next_chapter"]=1495,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=34724,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=5556,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6900,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=77600,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=7980,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=149,
+ ["unit"]=0
+ }
+ },
+ [1495]={
+ ["next_chapter"]=1496,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=34934,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=5589,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6970,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=78400,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=7980,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=149,
+ ["unit"]=0
+ }
+ },
+ [1496]={
+ ["next_chapter"]=1497,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=35146,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=5623,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7040,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=79200,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=7980,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=149,
+ ["unit"]=0
+ }
+ },
+ [1497]={
+ ["next_chapter"]=1498,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=35358,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=5657,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7120,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=80000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=7980,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=149,
+ ["unit"]=0
+ }
+ },
+ [1498]={
+ ["next_chapter"]=1499,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=35571,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=5691,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7200,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=80800,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=7980,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=149,
+ ["unit"]=0
+ }
+ },
+ [1499]={
+ ["next_chapter"]=1500,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=35785,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=5726,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7280,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=81600,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=7980,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=149,
+ ["unit"]=0
+ }
+ },
+ [1500]={
+ ["next_chapter"]=1501,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=36000,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=6120,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7360,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=82400,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=8804,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=150,
+ ["unit"]=0
+ }
+ },
+ [1501]={
+ ["next_chapter"]=1502,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=36000,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=6120,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7440,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=83200,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=8804,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=150,
+ ["unit"]=0
+ }
+ },
+ [1502]={
+ ["next_chapter"]=1503,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=36001,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=6120,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7520,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=84000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=8804,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=150,
+ ["unit"]=0
+ }
+ },
+ [1503]={
+ ["next_chapter"]=1504,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=36002,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=6120,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7600,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=84800,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=8804,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=150,
+ ["unit"]=0
+ }
+ },
+ [1504]={
+ ["next_chapter"]=1505,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=36005,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=6121,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7680,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=85600,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=8804,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=150,
+ ["unit"]=0
+ }
+ },
+ [1505]={
+ ["next_chapter"]=1506,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=36009,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=6122,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7760,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=86500,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=8804,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=150,
+ ["unit"]=0
+ }
+ },
+ [1506]={
+ ["next_chapter"]=1507,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=36015,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=6123,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7840,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=87400,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=8804,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=150,
+ ["unit"]=0
+ }
+ },
+ [1507]={
+ ["next_chapter"]=1508,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=36025,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=6124,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7920,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=88300,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=8804,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=150,
+ ["unit"]=0
+ }
+ },
+ [1508]={
+ ["next_chapter"]=1509,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=36037,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=6126,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=89200,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=8804,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=150,
+ ["unit"]=0
+ }
+ },
+ [1509]={
+ ["next_chapter"]=1510,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=36052,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=6129,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8090,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=90100,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=8804,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=150,
+ ["unit"]=0
+ }
+ },
+ [1510]={
+ ["next_chapter"]=1511,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=36072,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=6132,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8180,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=91000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=9714,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=151,
+ ["unit"]=0
+ }
+ },
+ [1511]={
+ ["next_chapter"]=1512,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=36095,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=6136,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8270,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=91900,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=9714,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=151,
+ ["unit"]=0
+ }
+ },
+ [1512]={
+ ["next_chapter"]=1513,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=36124,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=6141,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8360,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=92800,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=9714,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=151,
+ ["unit"]=0
+ }
+ },
+ [1513]={
+ ["next_chapter"]=1514,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=36158,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=6147,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8450,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=93700,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=9714,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=151,
+ ["unit"]=0
+ }
+ },
+ [1514]={
+ ["next_chapter"]=1515,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=36197,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=6153,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8540,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=94600,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=9714,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=151,
+ ["unit"]=0
+ }
+ },
+ [1515]={
+ ["next_chapter"]=1516,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=36242,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=6161,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8630,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=95500,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=9714,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=151,
+ ["unit"]=0
+ }
+ },
+ [1516]={
+ ["next_chapter"]=1517,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=36294,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=6170,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8720,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=96500,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=9714,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=151,
+ ["unit"]=0
+ }
+ },
+ [1517]={
+ ["next_chapter"]=1518,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=36352,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=6180,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8810,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=97500,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=9714,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=151,
+ ["unit"]=0
+ }
+ },
+ [1518]={
+ ["next_chapter"]=1519,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=36418,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=6191,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8900,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=98500,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=9714,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=151,
+ ["unit"]=0
+ }
+ },
+ [1519]={
+ ["next_chapter"]=1520,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=36492,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=6204,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8990,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=99500,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=9714,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=151,
+ ["unit"]=0
+ }
+ },
+ [1520]={
+ ["next_chapter"]=1521,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=36574,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=6218,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9090,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=100500,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=10719,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=152,
+ ["unit"]=0
+ }
+ },
+ [1521]={
+ ["next_chapter"]=1522,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=36664,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=6233,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9190,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=102000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=10719,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=152,
+ ["unit"]=0
+ }
+ },
+ [1522]={
+ ["next_chapter"]=1523,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=36764,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=6250,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9290,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=103000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=10719,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=152,
+ ["unit"]=0
+ }
+ },
+ [1523]={
+ ["next_chapter"]=1524,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=36873,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=6268,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9390,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=104000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=10719,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=152,
+ ["unit"]=0
+ }
+ },
+ [1524]={
+ ["next_chapter"]=1525,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=36991,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=6289,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9490,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=105000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=10719,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=152,
+ ["unit"]=0
+ }
+ },
+ [1525]={
+ ["next_chapter"]=1526,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=37121,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=6310,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9590,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=106000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=10719,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=152,
+ ["unit"]=0
+ }
+ },
+ [1526]={
+ ["next_chapter"]=1527,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=37260,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=6334,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9690,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=107000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=10719,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=152,
+ ["unit"]=0
+ }
+ },
+ [1527]={
+ ["next_chapter"]=1528,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=37412,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=6360,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9790,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=108000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=10719,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=152,
+ ["unit"]=0
+ }
+ },
+ [1528]={
+ ["next_chapter"]=1529,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=37574,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=6388,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=109000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=10719,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=152,
+ ["unit"]=0
+ }
+ },
+ [1529]={
+ ["next_chapter"]=1530,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=37749,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=6417,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9990,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=110000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=10719,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=152,
+ ["unit"]=0
+ }
+ },
+ [1530]={
+ ["next_chapter"]=1531,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=37936,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=6449,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10090,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=111000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=11829,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=153,
+ ["unit"]=0
+ }
+ },
+ [1531]={
+ ["next_chapter"]=1532,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=38136,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=6483,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10190,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=112000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=11829,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=153,
+ ["unit"]=0
+ }
+ },
+ [1532]={
+ ["next_chapter"]=1533,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=38350,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=6519,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10290,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=113000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=11829,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=153,
+ ["unit"]=0
+ }
+ },
+ [1533]={
+ ["next_chapter"]=1534,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=38577,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=6558,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10390,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=114000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=11829,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=153,
+ ["unit"]=0
+ }
+ },
+ [1534]={
+ ["next_chapter"]=1535,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=38819,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=6599,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10490,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=115000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=11829,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=153,
+ ["unit"]=0
+ }
+ },
+ [1535]={
+ ["next_chapter"]=1536,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=39075,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=6643,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10590,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=116000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=11829,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=153,
+ ["unit"]=0
+ }
+ },
+ [1536]={
+ ["next_chapter"]=1537,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=39346,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=6689,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10690,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=117000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=11829,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=153,
+ ["unit"]=0
+ }
+ },
+ [1537]={
+ ["next_chapter"]=1538,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=39632,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=6738,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10790,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=118000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=11829,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=153,
+ ["unit"]=0
+ }
+ },
+ [1538]={
+ ["next_chapter"]=1539,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=39935,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=6789,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=119000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=11829,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=153,
+ ["unit"]=0
+ }
+ },
+ [1539]={
+ ["next_chapter"]=1540,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=40254,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=6843,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10990,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=120000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=11829,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=153,
+ ["unit"]=0
+ }
+ },
+ [1540]={
+ ["next_chapter"]=1541,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=40590,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=6900,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11090,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=121000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=42,
+ ["grasp_gold_reward"]={
+ ["value"]=13039,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=154,
+ ["unit"]=0
+ }
+ },
+ [1541]={
+ ["next_chapter"]=1542,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=40942,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=6960,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11190,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=122000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=13039,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=154,
+ ["unit"]=0
+ }
+ },
+ [1542]={
+ ["next_chapter"]=1543,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=41313,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=7023,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11290,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=123000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=13039,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=154,
+ ["unit"]=0
+ }
+ },
+ [1543]={
+ ["next_chapter"]=1544,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=41702,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=7089,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11390,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=124000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=13039,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=154,
+ ["unit"]=0
+ }
+ },
+ [1544]={
+ ["next_chapter"]=1545,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=42109,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=7158,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11490,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=125000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=13039,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=154,
+ ["unit"]=0
+ }
+ },
+ [1545]={
+ ["next_chapter"]=1546,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=42535,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=7231,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11590,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=126000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=13039,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=154,
+ ["unit"]=0
+ }
+ },
+ [1546]={
+ ["next_chapter"]=1547,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=42980,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=7307,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11690,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=127000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=13039,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=154,
+ ["unit"]=0
+ }
+ },
+ [1547]={
+ ["next_chapter"]=1548,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=43445,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=7386,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11790,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=128000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=13039,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=154,
+ ["unit"]=0
+ }
+ },
+ [1548]={
+ ["next_chapter"]=1549,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=43931,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=7468,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=129000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=13039,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=154,
+ ["unit"]=0
+ }
+ },
+ [1549]={
+ ["next_chapter"]=1550,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=44437,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=7554,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11990,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=130000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=13039,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=154,
+ ["unit"]=0
+ }
+ },
+ [1550]={
+ ["next_chapter"]=1551,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=44964,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=7644,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12090,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=131000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=14349,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=155,
+ ["unit"]=0
+ }
+ },
+ [1551]={
+ ["next_chapter"]=1552,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=45513,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=7737,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12190,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=132000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=14349,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=155,
+ ["unit"]=0
+ }
+ },
+ [1552]={
+ ["next_chapter"]=1553,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=46083,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=7834,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12290,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=133000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=14349,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=155,
+ ["unit"]=0
+ }
+ },
+ [1553]={
+ ["next_chapter"]=1554,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=46676,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=7935,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12390,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=134000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=14349,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=155,
+ ["unit"]=0
+ }
+ },
+ [1554]={
+ ["next_chapter"]=1555,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=47292,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=8040,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12490,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=135000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=14349,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=155,
+ ["unit"]=0
+ }
+ },
+ [1555]={
+ ["next_chapter"]=1556,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=47931,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=8148,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12590,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=136000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=14349,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=155,
+ ["unit"]=0
+ }
+ },
+ [1556]={
+ ["next_chapter"]=1557,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=48594,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=8261,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12690,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=137000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=14349,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=155,
+ ["unit"]=0
+ }
+ },
+ [1557]={
+ ["next_chapter"]=1558,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=49281,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=8378,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12790,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=138000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=14349,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=155,
+ ["unit"]=0
+ }
+ },
+ [1558]={
+ ["next_chapter"]=1559,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=49992,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=8499,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=139000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=14349,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=155,
+ ["unit"]=0
+ }
+ },
+ [1559]={
+ ["next_chapter"]=1560,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=50728,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=8624,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12990,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=140000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=14349,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=155,
+ ["unit"]=0
+ }
+ },
+ [1560]={
+ ["next_chapter"]=1561,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=51490,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=8753,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13090,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=141000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=15759,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=156,
+ ["unit"]=0
+ }
+ },
+ [1561]={
+ ["next_chapter"]=1562,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=52277,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=8887,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13190,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=142000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=15759,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=156,
+ ["unit"]=0
+ }
+ },
+ [1562]={
+ ["next_chapter"]=1563,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=53091,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=9025,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13290,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=143000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=15759,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=156,
+ ["unit"]=0
+ }
+ },
+ [1563]={
+ ["next_chapter"]=1564,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=53931,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=9168,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13390,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=144000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=15759,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=156,
+ ["unit"]=0
+ }
+ },
+ [1564]={
+ ["next_chapter"]=1565,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=54799,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=9316,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13490,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=145000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=15759,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=156,
+ ["unit"]=0
+ }
+ },
+ [1565]={
+ ["next_chapter"]=1566,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=55694,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=9468,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13590,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=146000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=15759,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=156,
+ ["unit"]=0
+ }
+ },
+ [1566]={
+ ["next_chapter"]=1567,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=56617,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=9625,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13690,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=147000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=15759,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=156,
+ ["unit"]=0
+ }
+ },
+ [1567]={
+ ["next_chapter"]=1568,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=57568,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=9787,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13790,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=148000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=15759,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=156,
+ ["unit"]=0
+ }
+ },
+ [1568]={
+ ["next_chapter"]=1569,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=58549,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=9953,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=149000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=15759,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=156,
+ ["unit"]=0
+ }
+ },
+ [1569]={
+ ["next_chapter"]=1570,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=59558,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=10125,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13990,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=150000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=15759,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=156,
+ ["unit"]=0
+ }
+ },
+ [1570]={
+ ["next_chapter"]=1571,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=60597,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=10302,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14090,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=152000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=17279,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=157,
+ ["unit"]=0
+ }
+ },
+ [1571]={
+ ["next_chapter"]=1572,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=61667,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=10483,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14190,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=154000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=17279,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=157,
+ ["unit"]=0
+ }
+ },
+ [1572]={
+ ["next_chapter"]=1573,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=62766,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=10670,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14290,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=156000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=17279,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=157,
+ ["unit"]=0
+ }
+ },
+ [1573]={
+ ["next_chapter"]=1574,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=63897,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=10863,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14390,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=158000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=17279,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=157,
+ ["unit"]=0
+ }
+ },
+ [1574]={
+ ["next_chapter"]=1575,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=65059,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=11060,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14490,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=160000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=17279,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=157,
+ ["unit"]=0
+ }
+ },
+ [1575]={
+ ["next_chapter"]=1576,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=66254,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=11263,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14590,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=162000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=17279,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=157,
+ ["unit"]=0
+ }
+ },
+ [1576]={
+ ["next_chapter"]=1577,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=67480,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=11472,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14690,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=164000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=17279,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=157,
+ ["unit"]=0
+ }
+ },
+ [1577]={
+ ["next_chapter"]=1578,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=68739,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=11686,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14790,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=166000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=17279,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=157,
+ ["unit"]=0
+ }
+ },
+ [1578]={
+ ["next_chapter"]=1579,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=70031,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=11905,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=168000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=17279,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=157,
+ ["unit"]=0
+ }
+ },
+ [1579]={
+ ["next_chapter"]=1580,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=71357,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=12131,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14990,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=170000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=17279,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=157,
+ ["unit"]=0
+ }
+ },
+ [1580]={
+ ["next_chapter"]=1581,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=72717,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=12362,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15090,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=172000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=18999,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=158,
+ ["unit"]=0
+ }
+ },
+ [1581]={
+ ["next_chapter"]=1582,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=74111,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=12599,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15190,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=174000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=18999,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=158,
+ ["unit"]=0
+ }
+ },
+ [1582]={
+ ["next_chapter"]=1583,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=75540,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=12842,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15290,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=176000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=18999,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=158,
+ ["unit"]=0
+ }
+ },
+ [1583]={
+ ["next_chapter"]=1584,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=77004,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=13091,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15390,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=178000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=18999,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=158,
+ ["unit"]=0
+ }
+ },
+ [1584]={
+ ["next_chapter"]=1585,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=78504,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=13346,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15490,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=180000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=18999,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=158,
+ ["unit"]=0
+ }
+ },
+ [1585]={
+ ["next_chapter"]=1586,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=80040,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=13607,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15590,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=182000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=18999,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=158,
+ ["unit"]=0
+ }
+ },
+ [1586]={
+ ["next_chapter"]=1587,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=81613,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=13874,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15690,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=184000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=18999,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=158,
+ ["unit"]=0
+ }
+ },
+ [1587]={
+ ["next_chapter"]=1588,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=83223,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=14148,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15790,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=186000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=18999,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=158,
+ ["unit"]=0
+ }
+ },
+ [1588]={
+ ["next_chapter"]=1589,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=84870,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=14428,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=188000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=18999,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=158,
+ ["unit"]=0
+ }
+ },
+ [1589]={
+ ["next_chapter"]=1590,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=86555,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=14714,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15990,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=190000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=18999,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=158,
+ ["unit"]=0
+ }
+ },
+ [1590]={
+ ["next_chapter"]=1591,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=88278,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=15007,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16090,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=192000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=20919,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=159,
+ ["unit"]=0
+ }
+ },
+ [1591]={
+ ["next_chapter"]=1592,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=90040,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=15307,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16190,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=194000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=20919,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=159,
+ ["unit"]=0
+ }
+ },
+ [1592]={
+ ["next_chapter"]=1593,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=91841,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=15613,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16290,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=196000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=20919,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=159,
+ ["unit"]=0
+ }
+ },
+ [1593]={
+ ["next_chapter"]=1594,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=93682,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=15926,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16390,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=198000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=20919,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=159,
+ ["unit"]=0
+ }
+ },
+ [1594]={
+ ["next_chapter"]=1595,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=95563,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=16246,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16590,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=200000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=20919,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=159,
+ ["unit"]=0
+ }
+ },
+ [1595]={
+ ["next_chapter"]=1596,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=97484,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=16572,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16790,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=202000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=20919,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=159,
+ ["unit"]=0
+ }
+ },
+ [1596]={
+ ["next_chapter"]=1597,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=99446,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=16906,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16990,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=204000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=20919,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=159,
+ ["unit"]=0
+ }
+ },
+ [1597]={
+ ["next_chapter"]=1598,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=101450,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=17246,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17190,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=206000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=20919,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=159,
+ ["unit"]=0
+ }
+ },
+ [1598]={
+ ["next_chapter"]=1599,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=103495,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=17594,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17390,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=208000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=20919,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=159,
+ ["unit"]=0
+ }
+ },
+ [1599]={
+ ["next_chapter"]=1600,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=105582,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=17949,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17590,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=210000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=20919,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=159,
+ ["unit"]=0
+ }
+ },
+ [1600]={
+ ["next_chapter"]=1601,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=107712,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=18311,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17790,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=212000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=23039,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=160,
+ ["unit"]=0
+ }
+ },
+ [1601]={
+ ["next_chapter"]=1602,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=109885,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=18680,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17990,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=214000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=23039,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=160,
+ ["unit"]=0
+ }
+ },
+ [1602]={
+ ["next_chapter"]=1603,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=112101,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=19057,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18190,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=216000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=23039,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=160,
+ ["unit"]=0
+ }
+ },
+ [1603]={
+ ["next_chapter"]=1604,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=114362,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=19441,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18390,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=218000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=23039,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=160,
+ ["unit"]=0
+ }
+ },
+ [1604]={
+ ["next_chapter"]=1605,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=116666,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=19833,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18590,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=220000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=23039,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=160,
+ ["unit"]=0
+ }
+ },
+ [1605]={
+ ["next_chapter"]=1606,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=119016,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=20233,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18790,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=222000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=23039,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=160,
+ ["unit"]=0
+ }
+ },
+ [1606]={
+ ["next_chapter"]=1607,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=121410,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=20640,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18990,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=224000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=23039,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=160,
+ ["unit"]=0
+ }
+ },
+ [1607]={
+ ["next_chapter"]=1608,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=123850,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=21055,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19190,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=226000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=23039,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=160,
+ ["unit"]=0
+ }
+ },
+ [1608]={
+ ["next_chapter"]=1609,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=126336,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=21477,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19390,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=228000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=23039,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=160,
+ ["unit"]=0
+ }
+ },
+ [1609]={
+ ["next_chapter"]=1610,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=128869,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=21908,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19590,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=230000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=23039,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=160,
+ ["unit"]=0
+ }
+ },
+ [1610]={
+ ["next_chapter"]=1611,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=131449,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=22346,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19790,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=232000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=25359,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=161,
+ ["unit"]=0
+ }
+ },
+ [1611]={
+ ["next_chapter"]=1612,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=134076,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=22793,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19990,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=234000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=25359,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=161,
+ ["unit"]=0
+ }
+ },
+ [1612]={
+ ["next_chapter"]=1613,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=136750,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=23248,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20190,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=236000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=25359,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=161,
+ ["unit"]=0
+ }
+ },
+ [1613]={
+ ["next_chapter"]=1614,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=139473,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=23710,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20390,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=238000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=25359,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=161,
+ ["unit"]=0
+ }
+ },
+ [1614]={
+ ["next_chapter"]=1615,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=142244,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=24182,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20590,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=240000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=25359,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=161,
+ ["unit"]=0
+ }
+ },
+ [1615]={
+ ["next_chapter"]=1616,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=145065,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=24661,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20790,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=242000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=25359,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=161,
+ ["unit"]=0
+ }
+ },
+ [1616]={
+ ["next_chapter"]=1617,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=147935,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=25149,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20990,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=244000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=25359,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=161,
+ ["unit"]=0
+ }
+ },
+ [1617]={
+ ["next_chapter"]=1618,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150855,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=25645,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21190,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=246000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=25359,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=161,
+ ["unit"]=0
+ }
+ },
+ [1618]={
+ ["next_chapter"]=1619,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=153825,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=26150,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21390,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=248000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=25359,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=161,
+ ["unit"]=0
+ }
+ },
+ [1619]={
+ ["next_chapter"]=1620,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=156846,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=26664,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21590,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=250000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=25359,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=161,
+ ["unit"]=0
+ }
+ },
+ [1620]={
+ ["next_chapter"]=1621,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=159918,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=27186,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21790,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=253000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=43,
+ ["grasp_gold_reward"]={
+ ["value"]=27889,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=162,
+ ["unit"]=0
+ }
+ },
+ [1621]={
+ ["next_chapter"]=1622,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=163042,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=27717,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21990,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=256000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=27889,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=162,
+ ["unit"]=0
+ }
+ },
+ [1622]={
+ ["next_chapter"]=1623,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=166218,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=28257,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22190,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=259000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=27889,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=162,
+ ["unit"]=0
+ }
+ },
+ [1623]={
+ ["next_chapter"]=1624,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=169446,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=28806,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22390,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=262000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=27889,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=162,
+ ["unit"]=0
+ }
+ },
+ [1624]={
+ ["next_chapter"]=1625,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=172728,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=29364,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22590,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=265000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=27889,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=162,
+ ["unit"]=0
+ }
+ },
+ [1625]={
+ ["next_chapter"]=1626,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=176063,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=29931,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22790,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=268000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=27889,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=162,
+ ["unit"]=0
+ }
+ },
+ [1626]={
+ ["next_chapter"]=1627,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=179451,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=30507,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22990,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=271000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=27889,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=162,
+ ["unit"]=0
+ }
+ },
+ [1627]={
+ ["next_chapter"]=1628,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=182894,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=31092,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23190,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=274000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=27889,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=162,
+ ["unit"]=0
+ }
+ },
+ [1628]={
+ ["next_chapter"]=1629,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=186391,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=31686,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23390,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=277000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=27889,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=162,
+ ["unit"]=0
+ }
+ },
+ [1629]={
+ ["next_chapter"]=1630,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=189943,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=32290,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23590,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=280000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=27889,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=162,
+ ["unit"]=0
+ }
+ },
+ [1630]={
+ ["next_chapter"]=1631,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=193551,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=32904,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23790,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=283000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=30719,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=163,
+ ["unit"]=0
+ }
+ },
+ [1631]={
+ ["next_chapter"]=1632,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=197215,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=33527,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23990,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=286000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=30719,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=163,
+ ["unit"]=0
+ }
+ },
+ [1632]={
+ ["next_chapter"]=1633,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=200935,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=34159,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24190,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=289000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=30719,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=163,
+ ["unit"]=0
+ }
+ },
+ [1633]={
+ ["next_chapter"]=1634,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=204712,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=34801,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24390,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=292000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=30719,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=163,
+ ["unit"]=0
+ }
+ },
+ [1634]={
+ ["next_chapter"]=1635,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=208547,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=35453,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24590,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=295000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=30719,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=163,
+ ["unit"]=0
+ }
+ },
+ [1635]={
+ ["next_chapter"]=1636,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=212438,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=36115,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24790,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=298000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=30719,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=163,
+ ["unit"]=0
+ }
+ },
+ [1636]={
+ ["next_chapter"]=1637,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=216388,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=36786,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25090,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=301000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=30719,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=163,
+ ["unit"]=0
+ }
+ },
+ [1637]={
+ ["next_chapter"]=1638,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=220397,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=37467,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25390,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=304000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=30719,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=163,
+ ["unit"]=0
+ }
+ },
+ [1638]={
+ ["next_chapter"]=1639,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=224464,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=38159,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25690,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=307000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=30719,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=163,
+ ["unit"]=0
+ }
+ },
+ [1639]={
+ ["next_chapter"]=1640,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=228591,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=38860,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25990,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=310000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=30719,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=163,
+ ["unit"]=0
+ }
+ },
+ [1640]={
+ ["next_chapter"]=1641,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=232778,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=39572,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26290,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=313000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=33849,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=164,
+ ["unit"]=0
+ }
+ },
+ [1641]={
+ ["next_chapter"]=1642,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=237025,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=40294,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26590,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=316000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=33849,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=164,
+ ["unit"]=0
+ }
+ },
+ [1642]={
+ ["next_chapter"]=1643,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=241332,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=41026,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=319000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=33849,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=164,
+ ["unit"]=0
+ }
+ },
+ [1643]={
+ ["next_chapter"]=1644,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=245701,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=41769,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27190,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=322000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=33849,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=164,
+ ["unit"]=0
+ }
+ },
+ [1644]={
+ ["next_chapter"]=1645,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=250131,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=42522,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27490,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=325000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=33849,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=164,
+ ["unit"]=0
+ }
+ },
+ [1645]={
+ ["next_chapter"]=1646,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=254623,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=43286,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27790,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=328000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=33849,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=164,
+ ["unit"]=0
+ }
+ },
+ [1646]={
+ ["next_chapter"]=1647,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=259177,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=44060,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28090,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=331000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=33849,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=164,
+ ["unit"]=0
+ }
+ },
+ [1647]={
+ ["next_chapter"]=1648,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=263795,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=44845,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28390,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=334000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=33849,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=164,
+ ["unit"]=0
+ }
+ },
+ [1648]={
+ ["next_chapter"]=1649,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=268475,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=45641,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28690,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=337000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=33849,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=164,
+ ["unit"]=0
+ }
+ },
+ [1649]={
+ ["next_chapter"]=1650,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=273220,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=46447,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28990,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=340000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=33849,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=164,
+ ["unit"]=0
+ }
+ },
+ [1650]={
+ ["next_chapter"]=1651,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=278028,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=47265,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29290,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=343000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=37279,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=165,
+ ["unit"]=0
+ }
+ },
+ [1651]={
+ ["next_chapter"]=1652,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=282901,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=48093,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29590,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=346000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=37279,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=165,
+ ["unit"]=0
+ }
+ },
+ [1652]={
+ ["next_chapter"]=1653,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=287839,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=48933,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=349000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=37279,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=165,
+ ["unit"]=0
+ }
+ },
+ [1653]={
+ ["next_chapter"]=1654,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=292842,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=49783,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30190,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=352000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=37279,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=165,
+ ["unit"]=0
+ }
+ },
+ [1654]={
+ ["next_chapter"]=1655,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=297911,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=50645,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30490,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=356000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=37279,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=165,
+ ["unit"]=0
+ }
+ },
+ [1655]={
+ ["next_chapter"]=1656,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=303047,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=51518,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30790,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=360000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=37279,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=165,
+ ["unit"]=0
+ }
+ },
+ [1656]={
+ ["next_chapter"]=1657,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=308249,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=52402,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31090,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=364000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=37279,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=165,
+ ["unit"]=0
+ }
+ },
+ [1657]={
+ ["next_chapter"]=1658,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=313518,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=53298,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31390,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=368000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=37279,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=165,
+ ["unit"]=0
+ }
+ },
+ [1658]={
+ ["next_chapter"]=1659,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=318855,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=54205,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31690,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=372000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=37279,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=165,
+ ["unit"]=0
+ }
+ },
+ [1659]={
+ ["next_chapter"]=1660,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=324259,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=55124,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31990,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=376000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=37279,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=165,
+ ["unit"]=0
+ }
+ },
+ [1660]={
+ ["next_chapter"]=1661,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=329732,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=56054,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32290,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=380000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=41079,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=166,
+ ["unit"]=0
+ }
+ },
+ [1661]={
+ ["next_chapter"]=1662,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=335274,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=56997,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32590,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=384000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=41079,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=166,
+ ["unit"]=0
+ }
+ },
+ [1662]={
+ ["next_chapter"]=1663,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=340886,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=57951,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=388000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=41079,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=166,
+ ["unit"]=0
+ }
+ },
+ [1663]={
+ ["next_chapter"]=1664,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=346567,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=58916,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33190,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=392000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=41079,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=166,
+ ["unit"]=0
+ }
+ },
+ [1664]={
+ ["next_chapter"]=1665,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=352318,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=59894,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33490,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=396000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=41079,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=166,
+ ["unit"]=0
+ }
+ },
+ [1665]={
+ ["next_chapter"]=1666,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=358139,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=60884,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=400000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=41079,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=166,
+ ["unit"]=0
+ }
+ },
+ [1666]={
+ ["next_chapter"]=1667,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=364032,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=61885,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34290,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=404000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=41079,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=166,
+ ["unit"]=0
+ }
+ },
+ [1667]={
+ ["next_chapter"]=1668,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=369996,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=62899,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34690,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=408000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=41079,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=166,
+ ["unit"]=0
+ }
+ },
+ [1668]={
+ ["next_chapter"]=1669,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=376032,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=63925,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35090,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=412000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=41079,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=166,
+ ["unit"]=0
+ }
+ },
+ [1669]={
+ ["next_chapter"]=1670,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=382140,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=64964,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35490,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=416000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=41079,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=166,
+ ["unit"]=0
+ }
+ },
+ [1670]={
+ ["next_chapter"]=1671,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=388321,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=66015,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=420000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=45279,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=167,
+ ["unit"]=0
+ }
+ },
+ [1671]={
+ ["next_chapter"]=1672,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=394575,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=67078,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36290,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=424000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=45279,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=167,
+ ["unit"]=0
+ }
+ },
+ [1672]={
+ ["next_chapter"]=1673,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=400903,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=68153,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36690,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=428000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=45279,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=167,
+ ["unit"]=0
+ }
+ },
+ [1673]={
+ ["next_chapter"]=1674,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=407304,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=69242,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37090,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=432000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=45279,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=167,
+ ["unit"]=0
+ }
+ },
+ [1674]={
+ ["next_chapter"]=1675,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=413781,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=70343,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37490,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=436000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=45279,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=167,
+ ["unit"]=0
+ }
+ },
+ [1675]={
+ ["next_chapter"]=1676,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=420332,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=71456,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=440000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=45279,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=167,
+ ["unit"]=0
+ }
+ },
+ [1676]={
+ ["next_chapter"]=1677,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=426958,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=72583,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=38290,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=444000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=45279,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=167,
+ ["unit"]=0
+ }
+ },
+ [1677]={
+ ["next_chapter"]=1678,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=433660,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=73722,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=38690,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=448000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=45279,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=167,
+ ["unit"]=0
+ }
+ },
+ [1678]={
+ ["next_chapter"]=1679,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=440438,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=74874,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39090,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=452000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=45279,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=167,
+ ["unit"]=0
+ }
+ },
+ [1679]={
+ ["next_chapter"]=1680,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=447293,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=76040,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39490,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=457000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=45279,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=167,
+ ["unit"]=0
+ }
+ },
+ [1680]={
+ ["next_chapter"]=1681,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=454224,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=77218,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=462000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=49899,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=168,
+ ["unit"]=0
+ }
+ },
+ [1681]={
+ ["next_chapter"]=1682,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=461234,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=78410,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=40290,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=467000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=49899,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=168,
+ ["unit"]=0
+ }
+ },
+ [1682]={
+ ["next_chapter"]=1683,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=468321,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=79615,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=40690,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=472000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=49899,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=168,
+ ["unit"]=0
+ }
+ },
+ [1683]={
+ ["next_chapter"]=1684,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=475486,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=80833,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41090,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=477000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=49899,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=168,
+ ["unit"]=0
+ }
+ },
+ [1684]={
+ ["next_chapter"]=1685,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=482730,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=82064,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41490,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=482000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=49899,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=168,
+ ["unit"]=0
+ }
+ },
+ [1685]={
+ ["next_chapter"]=1686,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=490053,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=83309,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=487000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=49899,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=168,
+ ["unit"]=0
+ }
+ },
+ [1686]={
+ ["next_chapter"]=1687,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=497456,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=84568,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=42290,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=492000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=49899,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=168,
+ ["unit"]=0
+ }
+ },
+ [1687]={
+ ["next_chapter"]=1688,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=504939,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=85840,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=42690,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=497000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=49899,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=168,
+ ["unit"]=0
+ }
+ },
+ [1688]={
+ ["next_chapter"]=1689,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=512503,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=87125,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=43190,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=502000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=49899,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=168,
+ ["unit"]=0
+ }
+ },
+ [1689]={
+ ["next_chapter"]=1690,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=520147,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=88425,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=43690,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=507000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=49899,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=168,
+ ["unit"]=0
+ }
+ },
+ [1690]={
+ ["next_chapter"]=1691,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=527873,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=89738,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=44190,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=512000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=55019,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=169,
+ ["unit"]=0
+ }
+ },
+ [1691]={
+ ["next_chapter"]=1692,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=535680,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=91066,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=44690,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=517000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=55019,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=169,
+ ["unit"]=0
+ }
+ },
+ [1692]={
+ ["next_chapter"]=1693,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=543570,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=92407,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=45190,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=522000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=55019,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=169,
+ ["unit"]=0
+ }
+ },
+ [1693]={
+ ["next_chapter"]=1694,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=551542,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=93762,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=45690,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=527000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=55019,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=169,
+ ["unit"]=0
+ }
+ },
+ [1694]={
+ ["next_chapter"]=1695,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=559597,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=95131,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=46190,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=532000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=55019,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=169,
+ ["unit"]=0
+ }
+ },
+ [1695]={
+ ["next_chapter"]=1696,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=567736,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=96515,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=46690,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=537000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=55019,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=169,
+ ["unit"]=0
+ }
+ },
+ [1696]={
+ ["next_chapter"]=1697,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=575958,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=97913,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=47190,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=542000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=55019,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=169,
+ ["unit"]=0
+ }
+ },
+ [1697]={
+ ["next_chapter"]=1698,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=584265,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=99325,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=47690,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=547000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=55019,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=169,
+ ["unit"]=0
+ }
+ },
+ [1698]={
+ ["next_chapter"]=1699,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=592657,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=100752,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=48190,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=552000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=55019,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=169,
+ ["unit"]=0
+ }
+ },
+ [1699]={
+ ["next_chapter"]=1700,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=601134,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=102193,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=48690,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=558000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=55019,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=169,
+ ["unit"]=0
+ }
+ },
+ [1700]={
+ ["next_chapter"]=1701,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=609696,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=103648,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=49190,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=564000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=44,
+ ["grasp_gold_reward"]={
+ ["value"]=60659,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=170,
+ ["unit"]=0
+ }
+ },
+ [1701]={
+ ["next_chapter"]=1702,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=618345,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=105119,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=49690,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=570000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=60659,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=170,
+ ["unit"]=0
+ }
+ },
+ [1702]={
+ ["next_chapter"]=1703,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=627080,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=106604,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=50190,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=576000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=60659,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=170,
+ ["unit"]=0
+ }
+ },
+ [1703]={
+ ["next_chapter"]=1704,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=635902,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=108103,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=50690,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=582000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=60659,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=170,
+ ["unit"]=0
+ }
+ },
+ [1704]={
+ ["next_chapter"]=1705,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=644811,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=109618,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=51190,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=588000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=60659,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=170,
+ ["unit"]=0
+ }
+ },
+ [1705]={
+ ["next_chapter"]=1706,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=653808,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=111147,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=51690,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=594000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=60659,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=170,
+ ["unit"]=0
+ }
+ },
+ [1706]={
+ ["next_chapter"]=1707,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=662893,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=112692,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=52290,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=600000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=60659,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=170,
+ ["unit"]=0
+ }
+ },
+ [1707]={
+ ["next_chapter"]=1708,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=672067,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=114251,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=52890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=606000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=60659,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=170,
+ ["unit"]=0
+ }
+ },
+ [1708]={
+ ["next_chapter"]=1709,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=681330,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=115826,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=53490,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=612000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=60659,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=170,
+ ["unit"]=0
+ }
+ },
+ [1709]={
+ ["next_chapter"]=1710,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=690682,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=117416,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=54090,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=618000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=60659,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=170,
+ ["unit"]=0
+ }
+ },
+ [1710]={
+ ["next_chapter"]=1711,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=700125,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=119021,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=54690,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=624000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=66899,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=171,
+ ["unit"]=0
+ }
+ },
+ [1711]={
+ ["next_chapter"]=1712,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=709658,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=120642,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=55290,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=630000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=66899,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=171,
+ ["unit"]=0
+ }
+ },
+ [1712]={
+ ["next_chapter"]=1713,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=719281,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=122278,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=55890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=636000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=66899,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=171,
+ ["unit"]=0
+ }
+ },
+ [1713]={
+ ["next_chapter"]=1714,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=728996,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=123929,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=56490,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=642000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=66899,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=171,
+ ["unit"]=0
+ }
+ },
+ [1714]={
+ ["next_chapter"]=1715,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=738802,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=125596,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=57090,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=648000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=66899,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=171,
+ ["unit"]=0
+ }
+ },
+ [1715]={
+ ["next_chapter"]=1716,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=748701,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=127279,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=57690,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=654000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=66899,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=171,
+ ["unit"]=0
+ }
+ },
+ [1716]={
+ ["next_chapter"]=1717,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=758692,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=128978,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=58290,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=661000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=66899,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=171,
+ ["unit"]=0
+ }
+ },
+ [1717]={
+ ["next_chapter"]=1718,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=768776,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=130692,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=58890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=668000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=66899,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=171,
+ ["unit"]=0
+ }
+ },
+ [1718]={
+ ["next_chapter"]=1719,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=778953,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=132422,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=59490,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=675000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=66899,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=171,
+ ["unit"]=0
+ }
+ },
+ [1719]={
+ ["next_chapter"]=1720,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=789224,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=134168,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=60090,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=682000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=66899,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=171,
+ ["unit"]=0
+ }
+ },
+ [1720]={
+ ["next_chapter"]=1721,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=799589,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=135930,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=60690,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=689000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=73789,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=172,
+ ["unit"]=0
+ }
+ },
+ [1721]={
+ ["next_chapter"]=1722,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=810049,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=137708,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=61290,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=696000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=73789,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=172,
+ ["unit"]=0
+ }
+ },
+ [1722]={
+ ["next_chapter"]=1723,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=820604,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=139503,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=61990,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=703000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=73789,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=172,
+ ["unit"]=0
+ }
+ },
+ [1723]={
+ ["next_chapter"]=1724,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=831255,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=141313,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=62690,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=710000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=73789,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=172,
+ ["unit"]=0
+ }
+ },
+ [1724]={
+ ["next_chapter"]=1725,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=842002,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=143140,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=63390,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=717000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=73789,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=172,
+ ["unit"]=0
+ }
+ },
+ [1725]={
+ ["next_chapter"]=1726,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=852845,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=144984,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=64090,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=724000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=73789,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=172,
+ ["unit"]=0
+ }
+ },
+ [1726]={
+ ["next_chapter"]=1727,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=863784,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=146843,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=64790,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=731000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=73789,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=172,
+ ["unit"]=0
+ }
+ },
+ [1727]={
+ ["next_chapter"]=1728,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=874821,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=148720,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=65490,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=738000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=73789,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=172,
+ ["unit"]=0
+ }
+ },
+ [1728]={
+ ["next_chapter"]=1729,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=885956,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=150612,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=66190,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=745000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=73789,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=172,
+ ["unit"]=0
+ }
+ },
+ [1729]={
+ ["next_chapter"]=1730,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=897189,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=152522,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=66890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=752000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=73789,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=172,
+ ["unit"]=0
+ }
+ },
+ [1730]={
+ ["next_chapter"]=1731,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=908520,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=154448,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=67590,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=760000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=81389,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=173,
+ ["unit"]=0
+ }
+ },
+ [1731]={
+ ["next_chapter"]=1732,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=919950,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=156392,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=68290,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=768000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=81389,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=173,
+ ["unit"]=0
+ }
+ },
+ [1732]={
+ ["next_chapter"]=1733,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=931480,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=158352,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=68990,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=776000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=81389,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=173,
+ ["unit"]=0
+ }
+ },
+ [1733]={
+ ["next_chapter"]=1734,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=943109,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=160329,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=69690,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=784000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=81389,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=173,
+ ["unit"]=0
+ }
+ },
+ [1734]={
+ ["next_chapter"]=1735,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=954839,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=162323,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=70390,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=792000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=81389,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=173,
+ ["unit"]=0
+ }
+ },
+ [1735]={
+ ["next_chapter"]=1736,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=966669,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=164334,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=71190,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=800000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=81389,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=173,
+ ["unit"]=0
+ }
+ },
+ [1736]={
+ ["next_chapter"]=1737,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=978601,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=166362,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=71990,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=808000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=81389,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=173,
+ ["unit"]=0
+ }
+ },
+ [1737]={
+ ["next_chapter"]=1738,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=990634,
+ ["unit"]=4
+ },
+ ["hp_coefficient"]={
+ ["value"]=168408,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=72790,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=816000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=81389,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=173,
+ ["unit"]=0
+ }
+ },
+ [1738]={
+ ["next_chapter"]=1739,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1003,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=170471,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=73590,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=824000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=81389,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=173,
+ ["unit"]=0
+ }
+ },
+ [1739]={
+ ["next_chapter"]=1740,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1015,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=172551,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=74390,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=832000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=81389,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=173,
+ ["unit"]=0
+ }
+ },
+ [1740]={
+ ["next_chapter"]=1741,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=1027,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=174649,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=75190,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=840000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=89789,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=174,
+ ["unit"]=0
+ }
+ },
+ [1741]={
+ ["next_chapter"]=1742,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1040,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=176764,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=75990,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=848000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=89789,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=174,
+ ["unit"]=0
+ }
+ },
+ [1742]={
+ ["next_chapter"]=1743,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1052,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=178897,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=76790,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=856000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=89789,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=174,
+ ["unit"]=0
+ }
+ },
+ [1743]={
+ ["next_chapter"]=1744,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1065,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=181048,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=77590,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=865000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=89789,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=174,
+ ["unit"]=0
+ }
+ },
+ [1744]={
+ ["next_chapter"]=1745,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1078,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=183217,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=78390,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=874000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=89789,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=174,
+ ["unit"]=0
+ }
+ },
+ [1745]={
+ ["next_chapter"]=1746,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1091,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=185403,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=79190,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=883000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=89789,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=174,
+ ["unit"]=0
+ }
+ },
+ [1746]={
+ ["next_chapter"]=1747,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1104,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=187607,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=79990,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=892000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=89789,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=174,
+ ["unit"]=0
+ }
+ },
+ [1747]={
+ ["next_chapter"]=1748,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1117,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=189830,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=900000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=80890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=901000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=89789,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=174,
+ ["unit"]=0
+ }
+ },
+ [1748]={
+ ["next_chapter"]=1749,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1130,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=192070,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=900000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=81790,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=910000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=89789,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=174,
+ ["unit"]=0
+ }
+ },
+ [1749]={
+ ["next_chapter"]=1750,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1143,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=194328,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=900000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=82690,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=919000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=89789,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=174,
+ ["unit"]=0
+ }
+ },
+ [1750]={
+ ["next_chapter"]=1751,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=1157,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=196605,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=900000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=83590,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=928000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=99069,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=175,
+ ["unit"]=0
+ }
+ },
+ [1751]={
+ ["next_chapter"]=1752,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1170,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=198900,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=900000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=84490,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=937000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=99069,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=175,
+ ["unit"]=0
+ }
+ },
+ [1752]={
+ ["next_chapter"]=1753,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1184,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=201213,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=900000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=85390,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=946000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=99069,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=175,
+ ["unit"]=0
+ }
+ },
+ [1753]={
+ ["next_chapter"]=1754,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1197,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=203545,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=900000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=86290,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=955000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=99069,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=175,
+ ["unit"]=0
+ }
+ },
+ [1754]={
+ ["next_chapter"]=1755,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1211,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=205895,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=900000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=87190,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=965000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=99069,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=175,
+ ["unit"]=0
+ }
+ },
+ [1755]={
+ ["next_chapter"]=1756,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1225,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=208264,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=900000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=88090,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=975000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=99069,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=175,
+ ["unit"]=0
+ }
+ },
+ [1756]={
+ ["next_chapter"]=1757,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1239,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=210652,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=900000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=88990,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=985000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=99069,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=175,
+ ["unit"]=0
+ }
+ },
+ [1757]={
+ ["next_chapter"]=1758,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1253,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=213058,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=900000,
+ ["unit"]=1
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=89890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=995000,
+ ["unit"]=1
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=99069,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=175,
+ ["unit"]=0
+ }
+ },
+ [1758]={
+ ["next_chapter"]=1759,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1268,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=215483,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=90890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1005,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=99069,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=175,
+ ["unit"]=0
+ }
+ },
+ [1759]={
+ ["next_chapter"]=1760,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1282,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=217927,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=91890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1020,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=99069,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=175,
+ ["unit"]=0
+ }
+ },
+ [1760]={
+ ["next_chapter"]=1761,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=1296,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=220390,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=92890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1030,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=109369,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=176,
+ ["unit"]=0
+ }
+ },
+ [1761]={
+ ["next_chapter"]=1762,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1311,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=222872,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=93890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1040,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=109369,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=176,
+ ["unit"]=0
+ }
+ },
+ [1762]={
+ ["next_chapter"]=1763,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1326,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=225373,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=94890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1050,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=109369,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=176,
+ ["unit"]=0
+ }
+ },
+ [1763]={
+ ["next_chapter"]=1764,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1341,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=227893,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=95890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1060,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=109369,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=176,
+ ["unit"]=0
+ }
+ },
+ [1764]={
+ ["next_chapter"]=1765,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1355,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=230432,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=96890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1070,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=109369,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=176,
+ ["unit"]=0
+ }
+ },
+ [1765]={
+ ["next_chapter"]=1766,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1371,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=232991,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=97890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1080,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=109369,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=176,
+ ["unit"]=0
+ }
+ },
+ [1766]={
+ ["next_chapter"]=1767,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1386,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=235569,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=98890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1090,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=109369,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=176,
+ ["unit"]=0
+ }
+ },
+ [1767]={
+ ["next_chapter"]=1768,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1401,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=238166,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=99890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1100,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=109369,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=176,
+ ["unit"]=0
+ }
+ },
+ [1768]={
+ ["next_chapter"]=1769,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1416,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=240783,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=100890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1110,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=109369,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=176,
+ ["unit"]=0
+ }
+ },
+ [1769]={
+ ["next_chapter"]=1770,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1432,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=243420,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=101890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1120,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=109369,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=176,
+ ["unit"]=0
+ }
+ },
+ [1770]={
+ ["next_chapter"]=1771,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=1448,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=246076,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=102890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1130,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=120669,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=177,
+ ["unit"]=0
+ }
+ },
+ [1771]={
+ ["next_chapter"]=1772,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1463,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=248752,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=103890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1140,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=120669,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=177,
+ ["unit"]=0
+ }
+ },
+ [1772]={
+ ["next_chapter"]=1773,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1479,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=251448,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=104890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1150,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=120669,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=177,
+ ["unit"]=0
+ }
+ },
+ [1773]={
+ ["next_chapter"]=1774,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1495,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=254164,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=105890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1160,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=120669,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=177,
+ ["unit"]=0
+ }
+ },
+ [1774]={
+ ["next_chapter"]=1775,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1511,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=256900,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=106890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1170,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=120669,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=177,
+ ["unit"]=0
+ }
+ },
+ [1775]={
+ ["next_chapter"]=1776,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1527,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=259656,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=107890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1180,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=120669,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=177,
+ ["unit"]=0
+ }
+ },
+ [1776]={
+ ["next_chapter"]=1777,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1544,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=262431,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=108890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1190,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=120669,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=177,
+ ["unit"]=0
+ }
+ },
+ [1777]={
+ ["next_chapter"]=1778,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1560,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=265228,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=109890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1200,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=120669,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=177,
+ ["unit"]=0
+ }
+ },
+ [1778]={
+ ["next_chapter"]=1779,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1577,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=268044,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=110890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1210,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=120669,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=177,
+ ["unit"]=0
+ }
+ },
+ [1779]={
+ ["next_chapter"]=1780,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1593,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=270881,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=111890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1220,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=120669,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=177,
+ ["unit"]=0
+ }
+ },
+ [1780]={
+ ["next_chapter"]=1781,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=1610,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=273738,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=112890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1230,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=45,
+ ["grasp_gold_reward"]={
+ ["value"]=132969,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=178,
+ ["unit"]=0
+ }
+ },
+ [1781]={
+ ["next_chapter"]=1782,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1627,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=276615,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=113890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1240,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=132969,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=178,
+ ["unit"]=0
+ }
+ },
+ [1782]={
+ ["next_chapter"]=1783,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1644,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=279513,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=114890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1250,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=132969,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=178,
+ ["unit"]=0
+ }
+ },
+ [1783]={
+ ["next_chapter"]=1784,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1661,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=282432,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=115890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1260,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=132969,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=178,
+ ["unit"]=0
+ }
+ },
+ [1784]={
+ ["next_chapter"]=1785,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1679,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=285372,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=116890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1270,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=132969,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=178,
+ ["unit"]=0
+ }
+ },
+ [1785]={
+ ["next_chapter"]=1786,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1696,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=288332,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=117890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1280,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=132969,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=178,
+ ["unit"]=0
+ }
+ },
+ [1786]={
+ ["next_chapter"]=1787,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1714,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=291313,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=118890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1290,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=132969,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=178,
+ ["unit"]=0
+ }
+ },
+ [1787]={
+ ["next_chapter"]=1788,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1731,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=294315,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=119890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1300,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=132969,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=178,
+ ["unit"]=0
+ }
+ },
+ [1788]={
+ ["next_chapter"]=1789,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1749,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=297338,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=120890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1310,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=132969,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=178,
+ ["unit"]=0
+ }
+ },
+ [1789]={
+ ["next_chapter"]=1790,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1767,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=300382,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=121890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1320,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=132969,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=178,
+ ["unit"]=0
+ }
+ },
+ [1790]={
+ ["next_chapter"]=1791,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=1785,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=303447,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=122890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1330,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=146269,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=179,
+ ["unit"]=0
+ }
+ },
+ [1791]={
+ ["next_chapter"]=1792,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1803,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=306534,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=123890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1340,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=146269,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=179,
+ ["unit"]=0
+ }
+ },
+ [1792]={
+ ["next_chapter"]=1793,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1821,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=309641,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=124890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1350,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=146269,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=179,
+ ["unit"]=0
+ }
+ },
+ [1793]={
+ ["next_chapter"]=1794,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1840,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=312770,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=125890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1360,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=146269,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=179,
+ ["unit"]=0
+ }
+ },
+ [1794]={
+ ["next_chapter"]=1795,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1858,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=315921,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=126890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1370,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=146269,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=179,
+ ["unit"]=0
+ }
+ },
+ [1795]={
+ ["next_chapter"]=1796,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1877,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=319093,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=127890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1380,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=146269,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=179,
+ ["unit"]=0
+ }
+ },
+ [1796]={
+ ["next_chapter"]=1797,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1896,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=322287,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=128890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1390,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=146269,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=179,
+ ["unit"]=0
+ }
+ },
+ [1797]={
+ ["next_chapter"]=1798,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1915,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=325502,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=129890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1400,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=146269,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=179,
+ ["unit"]=0
+ }
+ },
+ [1798]={
+ ["next_chapter"]=1799,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1934,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=328739,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=130890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1410,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=146269,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=179,
+ ["unit"]=0
+ }
+ },
+ [1799]={
+ ["next_chapter"]=1800,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1953,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=331997,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=131890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1420,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=146269,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=179,
+ ["unit"]=0
+ }
+ },
+ [1800]={
+ ["next_chapter"]=1801,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=1972,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=335278,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=132890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1430,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=160569,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=180,
+ ["unit"]=0
+ }
+ },
+ [1801]={
+ ["next_chapter"]=1802,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1992,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=338581,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=133890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1440,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=160569,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=180,
+ ["unit"]=0
+ }
+ },
+ [1802]={
+ ["next_chapter"]=1803,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2011,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=341905,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=134890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1450,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=160569,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=180,
+ ["unit"]=0
+ }
+ },
+ [1803]={
+ ["next_chapter"]=1804,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2031,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=345252,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=135890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1460,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=160569,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=180,
+ ["unit"]=0
+ }
+ },
+ [1804]={
+ ["next_chapter"]=1805,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2051,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=348621,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=136890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1470,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=160569,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=180,
+ ["unit"]=0
+ }
+ },
+ [1805]={
+ ["next_chapter"]=1806,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2071,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=352012,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=137890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1480,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=160569,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=180,
+ ["unit"]=0
+ }
+ },
+ [1806]={
+ ["next_chapter"]=1807,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2091,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=355425,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=138890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1490,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=160569,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=180,
+ ["unit"]=0
+ }
+ },
+ [1807]={
+ ["next_chapter"]=1808,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2111,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=358861,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=139890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1500,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=160569,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=180,
+ ["unit"]=0
+ }
+ },
+ [1808]={
+ ["next_chapter"]=1809,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2131,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=362319,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=140890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1520,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=160569,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=180,
+ ["unit"]=0
+ }
+ },
+ [1809]={
+ ["next_chapter"]=1810,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2152,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=365800,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=141890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1540,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=160569,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=180,
+ ["unit"]=0
+ }
+ },
+ [1810]={
+ ["next_chapter"]=1811,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=2172,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=369303,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=142890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1560,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=176169,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=181,
+ ["unit"]=0
+ }
+ },
+ [1811]={
+ ["next_chapter"]=1812,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2193,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=372829,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=143890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1580,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=176169,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=181,
+ ["unit"]=0
+ }
+ },
+ [1812]={
+ ["next_chapter"]=1813,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2214,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=376378,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=144890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1600,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=176169,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=181,
+ ["unit"]=0
+ }
+ },
+ [1813]={
+ ["next_chapter"]=1814,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2235,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=379950,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=145890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1620,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=176169,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=181,
+ ["unit"]=0
+ }
+ },
+ [1814]={
+ ["next_chapter"]=1815,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2256,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=383544,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=146890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1640,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=176169,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=181,
+ ["unit"]=0
+ }
+ },
+ [1815]={
+ ["next_chapter"]=1816,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2277,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=387162,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=147890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1660,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=176169,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=181,
+ ["unit"]=0
+ }
+ },
+ [1816]={
+ ["next_chapter"]=1817,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2299,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=390802,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=148890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1680,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=176169,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=181,
+ ["unit"]=0
+ }
+ },
+ [1817]={
+ ["next_chapter"]=1818,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2320,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=394466,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=149890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1700,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=176169,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=181,
+ ["unit"]=0
+ }
+ },
+ [1818]={
+ ["next_chapter"]=1819,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2342,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=398153,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=150890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1720,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=176169,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=181,
+ ["unit"]=0
+ }
+ },
+ [1819]={
+ ["next_chapter"]=1820,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2364,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=401863,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=151890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1740,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=176169,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=181,
+ ["unit"]=0
+ }
+ },
+ [1820]={
+ ["next_chapter"]=1821,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=2386,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=405596,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=152890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1760,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=193769,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=182,
+ ["unit"]=0
+ }
+ },
+ [1821]={
+ ["next_chapter"]=1822,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2408,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=409353,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=153890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1780,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=193769,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=182,
+ ["unit"]=0
+ }
+ },
+ [1822]={
+ ["next_chapter"]=1823,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2430,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=413133,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=154890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1800,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=193769,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=182,
+ ["unit"]=0
+ }
+ },
+ [1823]={
+ ["next_chapter"]=1824,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2453,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=416937,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=155890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1820,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=193769,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=182,
+ ["unit"]=0
+ }
+ },
+ [1824]={
+ ["next_chapter"]=1825,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2475,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=420764,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=156890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1840,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=193769,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=182,
+ ["unit"]=0
+ }
+ },
+ [1825]={
+ ["next_chapter"]=1826,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2498,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=424616,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=157890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1860,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=193769,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=182,
+ ["unit"]=0
+ }
+ },
+ [1826]={
+ ["next_chapter"]=1827,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2521,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=428490,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=158890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1880,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=193769,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=182,
+ ["unit"]=0
+ }
+ },
+ [1827]={
+ ["next_chapter"]=1828,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2543,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=432389,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=159890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1900,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=193769,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=182,
+ ["unit"]=0
+ }
+ },
+ [1828]={
+ ["next_chapter"]=1829,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2567,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=436312,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=160890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1920,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=193769,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=182,
+ ["unit"]=0
+ }
+ },
+ [1829]={
+ ["next_chapter"]=1830,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2590,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=440259,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=161890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1940,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=193769,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=182,
+ ["unit"]=0
+ }
+ },
+ [1830]={
+ ["next_chapter"]=1831,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=2613,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=444229,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=162890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1960,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=213369,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=183,
+ ["unit"]=0
+ }
+ },
+ [1831]={
+ ["next_chapter"]=1832,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2637,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=448224,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=163890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=1980,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=213369,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=183,
+ ["unit"]=0
+ }
+ },
+ [1832]={
+ ["next_chapter"]=1833,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2660,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=452243,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=165890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=2000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=213369,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=183,
+ ["unit"]=0
+ }
+ },
+ [1833]={
+ ["next_chapter"]=1834,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2684,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=456287,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=167890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=2020,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=213369,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=183,
+ ["unit"]=0
+ }
+ },
+ [1834]={
+ ["next_chapter"]=1835,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2708,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=460355,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=169890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=2040,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=213369,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=183,
+ ["unit"]=0
+ }
+ },
+ [1835]={
+ ["next_chapter"]=1836,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2732,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=464447,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=171890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=2060,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=213369,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=183,
+ ["unit"]=0
+ }
+ },
+ [1836]={
+ ["next_chapter"]=1837,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2756,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=468563,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=173890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=2080,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=213369,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=183,
+ ["unit"]=0
+ }
+ },
+ [1837]={
+ ["next_chapter"]=1838,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2781,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=472705,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=175890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=2100,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=213369,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=183,
+ ["unit"]=0
+ }
+ },
+ [1838]={
+ ["next_chapter"]=1839,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2805,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=476871,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=177890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=2120,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=213369,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=183,
+ ["unit"]=0
+ }
+ },
+ [1839]={
+ ["next_chapter"]=1840,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2830,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=481061,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=179890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=2140,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=213369,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=183,
+ ["unit"]=0
+ }
+ },
+ [1840]={
+ ["next_chapter"]=1841,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=2855,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=485277,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=181890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=2160,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=234969,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=184,
+ ["unit"]=0
+ }
+ },
+ [1841]={
+ ["next_chapter"]=1842,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2880,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=489517,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=183890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=2180,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=234969,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=184,
+ ["unit"]=0
+ }
+ },
+ [1842]={
+ ["next_chapter"]=1843,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2905,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=493782,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=185890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=2200,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=234969,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=184,
+ ["unit"]=0
+ }
+ },
+ [1843]={
+ ["next_chapter"]=1844,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2930,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=498072,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=187890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=2220,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=234969,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=184,
+ ["unit"]=0
+ }
+ },
+ [1844]={
+ ["next_chapter"]=1845,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2955,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=502388,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=189890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=2240,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=234969,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=184,
+ ["unit"]=0
+ }
+ },
+ [1845]={
+ ["next_chapter"]=1846,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2981,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=506728,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=191890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=2260,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=234969,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=184,
+ ["unit"]=0
+ }
+ },
+ [1846]={
+ ["next_chapter"]=1847,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3006,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=511094,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=193890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=2280,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=234969,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=184,
+ ["unit"]=0
+ }
+ },
+ [1847]={
+ ["next_chapter"]=1848,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3032,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=515485,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=195890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=2300,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=234969,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=184,
+ ["unit"]=0
+ }
+ },
+ [1848]={
+ ["next_chapter"]=1849,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3058,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=519902,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=197890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=2320,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=234969,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=184,
+ ["unit"]=0
+ }
+ },
+ [1849]={
+ ["next_chapter"]=1850,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3084,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=524343,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=199890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=2340,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=234969,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=184,
+ ["unit"]=0
+ }
+ },
+ [1850]={
+ ["next_chapter"]=1851,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=3111,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=528811,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=201890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=2360,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=258569,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=185,
+ ["unit"]=0
+ }
+ },
+ [1851]={
+ ["next_chapter"]=1852,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3137,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=533304,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=203890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=2380,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=258569,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=185,
+ ["unit"]=0
+ }
+ },
+ [1852]={
+ ["next_chapter"]=1853,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3164,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=537823,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=205890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=2400,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=258569,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=185,
+ ["unit"]=0
+ }
+ },
+ [1853]={
+ ["next_chapter"]=1854,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3190,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=542367,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=207890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=2420,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=258569,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=185,
+ ["unit"]=0
+ }
+ },
+ [1854]={
+ ["next_chapter"]=1855,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3217,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=546937,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=209890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=2440,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=258569,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=185,
+ ["unit"]=0
+ }
+ },
+ [1855]={
+ ["next_chapter"]=1856,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3244,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=551533,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=211890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=2460,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=258569,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=185,
+ ["unit"]=0
+ }
+ },
+ [1856]={
+ ["next_chapter"]=1857,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3272,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=556156,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=213890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=2480,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=258569,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=185,
+ ["unit"]=0
+ }
+ },
+ [1857]={
+ ["next_chapter"]=1858,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3299,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=560804,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=215890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=2500,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=258569,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=185,
+ ["unit"]=0
+ }
+ },
+ [1858]={
+ ["next_chapter"]=1859,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3326,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=565478,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=217890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=2530,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=258569,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=185,
+ ["unit"]=0
+ }
+ },
+ [1859]={
+ ["next_chapter"]=1860,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3354,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=570178,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=219890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=2560,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=258569,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=185,
+ ["unit"]=0
+ }
+ },
+ [1860]={
+ ["next_chapter"]=1861,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=3382,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=574905,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=221890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=2590,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=46,
+ ["grasp_gold_reward"]={
+ ["value"]=284469,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=186,
+ ["unit"]=0
+ }
+ },
+ [1861]={
+ ["next_chapter"]=1862,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3410,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=579658,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=223890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=2620,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=284469,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=186,
+ ["unit"]=0
+ }
+ },
+ [1862]={
+ ["next_chapter"]=1863,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3438,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=584438,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=225890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=2650,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=284469,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=186,
+ ["unit"]=0
+ }
+ },
+ [1863]={
+ ["next_chapter"]=1864,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3466,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=589244,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=227890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=2680,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=284469,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=186,
+ ["unit"]=0
+ }
+ },
+ [1864]={
+ ["next_chapter"]=1865,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3495,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=594076,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=229890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=2710,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=284469,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=186,
+ ["unit"]=0
+ }
+ },
+ [1865]={
+ ["next_chapter"]=1866,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3523,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=598935,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=231890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=2740,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=284469,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=186,
+ ["unit"]=0
+ }
+ },
+ [1866]={
+ ["next_chapter"]=1867,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3552,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=603821,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=233890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=2770,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=284469,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=186,
+ ["unit"]=0
+ }
+ },
+ [1867]={
+ ["next_chapter"]=1868,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3581,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=608734,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=235890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=2800,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=284469,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=186,
+ ["unit"]=0
+ }
+ },
+ [1868]={
+ ["next_chapter"]=1869,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3610,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=613673,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=237890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=2830,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=284469,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=186,
+ ["unit"]=0
+ }
+ },
+ [1869]={
+ ["next_chapter"]=1870,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3639,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=618639,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=239890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=2860,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=284469,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=186,
+ ["unit"]=0
+ }
+ },
+ [1870]={
+ ["next_chapter"]=1871,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=3668,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=623633,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=241890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=2890,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=313369,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=187,
+ ["unit"]=0
+ }
+ },
+ [1871]={
+ ["next_chapter"]=1872,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3698,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=628653,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=243890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=2920,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=313369,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=187,
+ ["unit"]=0
+ }
+ },
+ [1872]={
+ ["next_chapter"]=1873,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3728,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=633701,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=245890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=2950,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=313369,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=187,
+ ["unit"]=0
+ }
+ },
+ [1873]={
+ ["next_chapter"]=1874,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3758,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=638775,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=247890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=2980,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=313369,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=187,
+ ["unit"]=0
+ }
+ },
+ [1874]={
+ ["next_chapter"]=1875,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3788,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=643877,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=250890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=3010,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=313369,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=187,
+ ["unit"]=0
+ }
+ },
+ [1875]={
+ ["next_chapter"]=1876,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3818,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=649007,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=253890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=3040,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=313369,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=187,
+ ["unit"]=0
+ }
+ },
+ [1876]={
+ ["next_chapter"]=1877,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3848,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=654164,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=256890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=3070,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=313369,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=187,
+ ["unit"]=0
+ }
+ },
+ [1877]={
+ ["next_chapter"]=1878,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3879,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=659348,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=259890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=3100,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=313369,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=187,
+ ["unit"]=0
+ }
+ },
+ [1878]={
+ ["next_chapter"]=1879,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3909,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=664560,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=262890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=3130,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=313369,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=187,
+ ["unit"]=0
+ }
+ },
+ [1879]={
+ ["next_chapter"]=1880,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3940,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=669799,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=265890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=3160,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=313369,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=187,
+ ["unit"]=0
+ }
+ },
+ [1880]={
+ ["next_chapter"]=1881,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=3971,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=675067,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=268890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=3190,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=345269,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=188,
+ ["unit"]=0
+ }
+ },
+ [1881]={
+ ["next_chapter"]=1882,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4002,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=680362,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=271890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=3220,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=345269,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=188,
+ ["unit"]=0
+ }
+ },
+ [1882]={
+ ["next_chapter"]=1883,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4033,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=685685,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=274890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=3250,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=345269,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=188,
+ ["unit"]=0
+ }
+ },
+ [1883]={
+ ["next_chapter"]=1884,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4065,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=691036,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=277890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=3280,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=345269,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=188,
+ ["unit"]=0
+ }
+ },
+ [1884]={
+ ["next_chapter"]=1885,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4097,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=696415,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=280890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=3310,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=345269,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=188,
+ ["unit"]=0
+ }
+ },
+ [1885]={
+ ["next_chapter"]=1886,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4128,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=701822,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=283890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=3340,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=345269,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=188,
+ ["unit"]=0
+ }
+ },
+ [1886]={
+ ["next_chapter"]=1887,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4160,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=707257,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=286890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=3370,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=345269,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=188,
+ ["unit"]=0
+ }
+ },
+ [1887]={
+ ["next_chapter"]=1888,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4192,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=712720,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=289890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=3400,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=345269,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=188,
+ ["unit"]=0
+ }
+ },
+ [1888]={
+ ["next_chapter"]=1889,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4225,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=718212,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=292890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=3430,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=345269,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=188,
+ ["unit"]=0
+ }
+ },
+ [1889]={
+ ["next_chapter"]=1890,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4257,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=723732,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=295890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=3460,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=345269,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=188,
+ ["unit"]=0
+ }
+ },
+ [1890]={
+ ["next_chapter"]=1891,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=4290,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=729280,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=298890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=3490,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=380169,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=189,
+ ["unit"]=0
+ }
+ },
+ [1891]={
+ ["next_chapter"]=1892,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4323,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=734857,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=301890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=3520,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=380169,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=189,
+ ["unit"]=0
+ }
+ },
+ [1892]={
+ ["next_chapter"]=1893,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4356,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=740463,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=304890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=3560,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=380169,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=189,
+ ["unit"]=0
+ }
+ },
+ [1893]={
+ ["next_chapter"]=1894,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4389,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=746097,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=307890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=3600,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=380169,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=189,
+ ["unit"]=0
+ }
+ },
+ [1894]={
+ ["next_chapter"]=1895,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4422,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=751760,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=310890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=3640,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=380169,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=189,
+ ["unit"]=0
+ }
+ },
+ [1895]={
+ ["next_chapter"]=1896,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4456,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=757452,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=313890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=3680,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=380169,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=189,
+ ["unit"]=0
+ }
+ },
+ [1896]={
+ ["next_chapter"]=1897,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4489,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=763173,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=316890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=3720,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=380169,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=189,
+ ["unit"]=0
+ }
+ },
+ [1897]={
+ ["next_chapter"]=1898,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4523,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=768923,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=319890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=3760,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=380169,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=189,
+ ["unit"]=0
+ }
+ },
+ [1898]={
+ ["next_chapter"]=1899,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4557,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=774702,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=322890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=3800,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=380169,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=189,
+ ["unit"]=0
+ }
+ },
+ [1899]={
+ ["next_chapter"]=1900,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4591,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=780509,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=325890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=3840,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=380169,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=189,
+ ["unit"]=0
+ }
+ },
+ [1900]={
+ ["next_chapter"]=1901,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=4626,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=786347,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=328890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=3880,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=418969,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=190,
+ ["unit"]=0
+ }
+ },
+ [1901]={
+ ["next_chapter"]=1902,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4660,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=792213,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=331890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=3920,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=418969,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=190,
+ ["unit"]=0
+ }
+ },
+ [1902]={
+ ["next_chapter"]=1903,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4695,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=798109,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=334890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=3960,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=418969,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=190,
+ ["unit"]=0
+ }
+ },
+ [1903]={
+ ["next_chapter"]=1904,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4730,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=804034,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=338890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=4000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=418969,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=190,
+ ["unit"]=0
+ }
+ },
+ [1904]={
+ ["next_chapter"]=1905,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4765,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=809988,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=342890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=4040,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=418969,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=190,
+ ["unit"]=0
+ }
+ },
+ [1905]={
+ ["next_chapter"]=1906,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4800,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=815972,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=346890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=4080,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=418969,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=190,
+ ["unit"]=0
+ }
+ },
+ [1906]={
+ ["next_chapter"]=1907,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4835,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=821986,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=350890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=4120,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=418969,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=190,
+ ["unit"]=0
+ }
+ },
+ [1907]={
+ ["next_chapter"]=1908,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4871,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=828029,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=354890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=4160,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=418969,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=190,
+ ["unit"]=0
+ }
+ },
+ [1908]={
+ ["next_chapter"]=1909,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4906,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=834103,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=358890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=4200,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=418969,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=190,
+ ["unit"]=0
+ }
+ },
+ [1909]={
+ ["next_chapter"]=1910,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4942,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=840206,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=362890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=4240,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=418969,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=190,
+ ["unit"]=0
+ }
+ },
+ [1910]={
+ ["next_chapter"]=1911,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=4978,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=846339,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=366890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=4280,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=461769,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=191,
+ ["unit"]=0
+ }
+ },
+ [1911]={
+ ["next_chapter"]=1912,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5015,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=852502,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=370890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=4320,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=461769,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=191,
+ ["unit"]=0
+ }
+ },
+ [1912]={
+ ["next_chapter"]=1913,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5051,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=858695,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=374890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=4360,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=461769,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=191,
+ ["unit"]=0
+ }
+ },
+ [1913]={
+ ["next_chapter"]=1914,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5088,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=864918,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=378890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=4400,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=461769,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=191,
+ ["unit"]=0
+ }
+ },
+ [1914]={
+ ["next_chapter"]=1915,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5125,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=871171,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=382890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=4440,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=461769,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=191,
+ ["unit"]=0
+ }
+ },
+ [1915]={
+ ["next_chapter"]=1916,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5161,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=877455,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=386890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=4480,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=461769,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=191,
+ ["unit"]=0
+ }
+ },
+ [1916]={
+ ["next_chapter"]=1917,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5199,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=883769,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=390890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=4520,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=461769,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=191,
+ ["unit"]=0
+ }
+ },
+ [1917]={
+ ["next_chapter"]=1918,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5236,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=890113,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=394890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=4570,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=461769,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=191,
+ ["unit"]=0
+ }
+ },
+ [1918]={
+ ["next_chapter"]=1919,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5273,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=896488,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=398890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=4620,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=461769,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=191,
+ ["unit"]=0
+ }
+ },
+ [1919]={
+ ["next_chapter"]=1920,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5311,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=902894,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=402890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=4670,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=461769,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=191,
+ ["unit"]=0
+ }
+ },
+ [1920]={
+ ["next_chapter"]=1921,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=5349,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=909330,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=406890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=4720,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=508969,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=192,
+ ["unit"]=0
+ }
+ },
+ [1921]={
+ ["next_chapter"]=1922,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5387,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=915797,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=410890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=4770,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=508969,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=192,
+ ["unit"]=0
+ }
+ },
+ [1922]={
+ ["next_chapter"]=1923,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5425,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=922294,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=414890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=4820,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=508969,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=192,
+ ["unit"]=0
+ }
+ },
+ [1923]={
+ ["next_chapter"]=1924,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5464,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=928823,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=418890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=4870,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=508969,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=192,
+ ["unit"]=0
+ }
+ },
+ [1924]={
+ ["next_chapter"]=1925,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5502,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=935382,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=422890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=4920,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=508969,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=192,
+ ["unit"]=0
+ }
+ },
+ [1925]={
+ ["next_chapter"]=1926,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5541,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=941973,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=426890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=4970,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=508969,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=192,
+ ["unit"]=0
+ }
+ },
+ [1926]={
+ ["next_chapter"]=1927,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5580,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=948594,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=431890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=5020,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=508969,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=192,
+ ["unit"]=0
+ }
+ },
+ [1927]={
+ ["next_chapter"]=1928,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5619,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=955247,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=436890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=5070,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=508969,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=192,
+ ["unit"]=0
+ }
+ },
+ [1928]={
+ ["next_chapter"]=1929,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5658,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=961931,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=441890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=5120,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=508969,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=192,
+ ["unit"]=0
+ }
+ },
+ [1929]={
+ ["next_chapter"]=1930,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5698,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=968646,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=446890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=5170,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=508969,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=192,
+ ["unit"]=0
+ }
+ },
+ [1930]={
+ ["next_chapter"]=1931,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=5738,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=975393,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=451890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=5220,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=561169,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=193,
+ ["unit"]=0
+ }
+ },
+ [1931]={
+ ["next_chapter"]=1932,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5777,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=982171,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=456890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=5270,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=561169,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=193,
+ ["unit"]=0
+ }
+ },
+ [1932]={
+ ["next_chapter"]=1933,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5818,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=988981,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=461890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=5320,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=561169,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=193,
+ ["unit"]=0
+ }
+ },
+ [1933]={
+ ["next_chapter"]=1934,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5858,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=995822,
+ ["unit"]=5
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=466890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=5370,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=561169,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=193,
+ ["unit"]=0
+ }
+ },
+ [1934]={
+ ["next_chapter"]=1935,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5898,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1003,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=471890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=5420,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=561169,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=193,
+ ["unit"]=0
+ }
+ },
+ [1935]={
+ ["next_chapter"]=1936,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5939,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1010,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=476890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=5470,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=561169,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=193,
+ ["unit"]=0
+ }
+ },
+ [1936]={
+ ["next_chapter"]=1937,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5980,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1017,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=481890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=5520,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=561169,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=193,
+ ["unit"]=0
+ }
+ },
+ [1937]={
+ ["next_chapter"]=1938,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6021,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1024,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=486890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=5580,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=561169,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=193,
+ ["unit"]=0
+ }
+ },
+ [1938]={
+ ["next_chapter"]=1939,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6062,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1031,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=491890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=5640,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=561169,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=193,
+ ["unit"]=0
+ }
+ },
+ [1939]={
+ ["next_chapter"]=1940,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6103,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1038,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=496890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=5700,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=561169,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=193,
+ ["unit"]=0
+ }
+ },
+ [1940]={
+ ["next_chapter"]=1941,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=6145,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1045,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=501890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=5760,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=47,
+ ["grasp_gold_reward"]={
+ ["value"]=618769,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=194,
+ ["unit"]=0
+ }
+ },
+ [1941]={
+ ["next_chapter"]=1942,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6186,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1052,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=506890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=5820,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=618769,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=194,
+ ["unit"]=0
+ }
+ },
+ [1942]={
+ ["next_chapter"]=1943,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6228,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1059,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=511890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=5880,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=618769,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=194,
+ ["unit"]=0
+ }
+ },
+ [1943]={
+ ["next_chapter"]=1944,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6271,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1066,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=516890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=5940,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=618769,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=194,
+ ["unit"]=0
+ }
+ },
+ [1944]={
+ ["next_chapter"]=1945,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6313,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1073,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=522890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=6000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=618769,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=194,
+ ["unit"]=0
+ }
+ },
+ [1945]={
+ ["next_chapter"]=1946,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6355,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1080,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=528890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=6060,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=618769,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=194,
+ ["unit"]=0
+ }
+ },
+ [1946]={
+ ["next_chapter"]=1947,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6398,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1088,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=534890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=6120,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=618769,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=194,
+ ["unit"]=0
+ }
+ },
+ [1947]={
+ ["next_chapter"]=1948,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6441,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1095,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=540890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=6180,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=618769,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=194,
+ ["unit"]=0
+ }
+ },
+ [1948]={
+ ["next_chapter"]=1949,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6484,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1102,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=546890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=6240,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=618769,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=194,
+ ["unit"]=0
+ }
+ },
+ [1949]={
+ ["next_chapter"]=1950,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6527,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1110,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=552890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=6300,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=618769,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=194,
+ ["unit"]=0
+ }
+ },
+ [1950]={
+ ["next_chapter"]=1951,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=6571,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1117,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=558890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=6360,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=682369,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=195,
+ ["unit"]=0
+ }
+ },
+ [1951]={
+ ["next_chapter"]=1952,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6614,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1124,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=564890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=6420,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=682369,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=195,
+ ["unit"]=0
+ }
+ },
+ [1952]={
+ ["next_chapter"]=1953,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6658,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1132,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=570890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=6480,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=682369,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=195,
+ ["unit"]=0
+ }
+ },
+ [1953]={
+ ["next_chapter"]=1954,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6702,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1139,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=576890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=6540,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=682369,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=195,
+ ["unit"]=0
+ }
+ },
+ [1954]={
+ ["next_chapter"]=1955,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6747,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1147,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=582890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=6610,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=682369,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=195,
+ ["unit"]=0
+ }
+ },
+ [1955]={
+ ["next_chapter"]=1956,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6791,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1154,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=588890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=6680,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=682369,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=195,
+ ["unit"]=0
+ }
+ },
+ [1956]={
+ ["next_chapter"]=1957,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6836,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1162,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=594890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=6750,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=682369,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=195,
+ ["unit"]=0
+ }
+ },
+ [1957]={
+ ["next_chapter"]=1958,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6880,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1170,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=600890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=6820,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=682369,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=195,
+ ["unit"]=0
+ }
+ },
+ [1958]={
+ ["next_chapter"]=1959,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6926,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1177,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=606890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=6890,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=682369,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=195,
+ ["unit"]=0
+ }
+ },
+ [1959]={
+ ["next_chapter"]=1960,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6971,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1185,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=612890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=6960,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=682369,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=195,
+ ["unit"]=0
+ }
+ },
+ [1960]={
+ ["next_chapter"]=1961,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=7016,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1193,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=619890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=7030,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=752669,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=196,
+ ["unit"]=0
+ }
+ },
+ [1961]={
+ ["next_chapter"]=1962,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7062,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1201,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=626890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=7100,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=752669,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=196,
+ ["unit"]=0
+ }
+ },
+ [1962]={
+ ["next_chapter"]=1963,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7108,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1208,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=633890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=7170,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=752669,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=196,
+ ["unit"]=0
+ }
+ },
+ [1963]={
+ ["next_chapter"]=1964,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7154,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1216,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=640890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=7240,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=752669,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=196,
+ ["unit"]=0
+ }
+ },
+ [1964]={
+ ["next_chapter"]=1965,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7200,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1224,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=647890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=7310,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=752669,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=196,
+ ["unit"]=0
+ }
+ },
+ [1965]={
+ ["next_chapter"]=1966,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7246,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1232,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=654890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=7380,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=752669,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=196,
+ ["unit"]=0
+ }
+ },
+ [1966]={
+ ["next_chapter"]=1967,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7293,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1240,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=661890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=7450,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=752669,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=196,
+ ["unit"]=0
+ }
+ },
+ [1967]={
+ ["next_chapter"]=1968,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7340,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1248,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=668890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=7520,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=752669,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=196,
+ ["unit"]=0
+ }
+ },
+ [1968]={
+ ["next_chapter"]=1969,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7387,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1256,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=675890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=7600,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=752669,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=196,
+ ["unit"]=0
+ }
+ },
+ [1969]={
+ ["next_chapter"]=1970,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7434,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1264,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=682890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=7680,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=752669,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=196,
+ ["unit"]=0
+ }
+ },
+ [1970]={
+ ["next_chapter"]=1971,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=7481,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1272,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=689890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=7760,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=830269,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=197,
+ ["unit"]=0
+ }
+ },
+ [1971]={
+ ["next_chapter"]=1972,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7529,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1280,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=696890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=7840,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=830269,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=197,
+ ["unit"]=0
+ }
+ },
+ [1972]={
+ ["next_chapter"]=1973,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7577,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1288,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=703890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=7920,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=830269,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=197,
+ ["unit"]=0
+ }
+ },
+ [1973]={
+ ["next_chapter"]=1974,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7625,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1296,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=711890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=8000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=830269,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=197,
+ ["unit"]=0
+ }
+ },
+ [1974]={
+ ["next_chapter"]=1975,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7673,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1304,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=719890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=8080,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=830269,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=197,
+ ["unit"]=0
+ }
+ },
+ [1975]={
+ ["next_chapter"]=1976,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7722,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1313,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=727890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=8160,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=830269,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=197,
+ ["unit"]=0
+ }
+ },
+ [1976]={
+ ["next_chapter"]=1977,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7770,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1321,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=735890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=8240,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=830269,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=197,
+ ["unit"]=0
+ }
+ },
+ [1977]={
+ ["next_chapter"]=1978,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7819,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1329,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=743890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=8320,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=830269,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=197,
+ ["unit"]=0
+ }
+ },
+ [1978]={
+ ["next_chapter"]=1979,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7868,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1338,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=751890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=8400,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=830269,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=197,
+ ["unit"]=0
+ }
+ },
+ [1979]={
+ ["next_chapter"]=1980,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7917,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1346,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=759890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=8480,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=830269,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=197,
+ ["unit"]=0
+ }
+ },
+ [1980]={
+ ["next_chapter"]=1981,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=7967,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1354,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=767890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=8560,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=915869,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=198,
+ ["unit"]=0
+ }
+ },
+ [1981]={
+ ["next_chapter"]=1982,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8016,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1363,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=775890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=8650,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=915869,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=198,
+ ["unit"]=0
+ }
+ },
+ [1982]={
+ ["next_chapter"]=1983,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8066,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1371,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=783890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=8740,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=915869,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=198,
+ ["unit"]=0
+ }
+ },
+ [1983]={
+ ["next_chapter"]=1984,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8116,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1380,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=791890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=8830,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=915869,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=198,
+ ["unit"]=0
+ }
+ },
+ [1984]={
+ ["next_chapter"]=1985,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8167,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1388,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=799890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=8920,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=915869,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=198,
+ ["unit"]=0
+ }
+ },
+ [1985]={
+ ["next_chapter"]=1986,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8217,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1397,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=808890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=9010,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=915869,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=198,
+ ["unit"]=0
+ }
+ },
+ [1986]={
+ ["next_chapter"]=1987,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8268,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1406,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=817890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=9100,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=915869,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=198,
+ ["unit"]=0
+ }
+ },
+ [1987]={
+ ["next_chapter"]=1988,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8319,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1414,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=826890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=9190,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=915869,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=198,
+ ["unit"]=0
+ }
+ },
+ [1988]={
+ ["next_chapter"]=1989,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8370,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1423,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=835890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=9280,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=915869,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=198,
+ ["unit"]=0
+ }
+ },
+ [1989]={
+ ["next_chapter"]=1990,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8421,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1432,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=844890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=9370,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=915869,
+ ["unit"]=2
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=198,
+ ["unit"]=0
+ }
+ },
+ [1990]={
+ ["next_chapter"]=1991,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=8473,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1440,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=853890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=9460,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=1010,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=199,
+ ["unit"]=0
+ }
+ },
+ [1991]={
+ ["next_chapter"]=1992,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8525,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1449,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=862890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=9550,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=1010,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=199,
+ ["unit"]=0
+ }
+ },
+ [1992]={
+ ["next_chapter"]=1993,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8577,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1458,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=871890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=9650,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=1010,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=199,
+ ["unit"]=0
+ }
+ },
+ [1993]={
+ ["next_chapter"]=1994,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8629,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1467,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=880890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=9750,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=1010,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=199,
+ ["unit"]=0
+ }
+ },
+ [1994]={
+ ["next_chapter"]=1995,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8681,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1476,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=889890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=9850,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=1010,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=199,
+ ["unit"]=0
+ }
+ },
+ [1995]={
+ ["next_chapter"]=1996,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8734,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1485,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=898890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=9950,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=1010,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=199,
+ ["unit"]=0
+ }
+ },
+ [1996]={
+ ["next_chapter"]=1997,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8787,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1494,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=908890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=10050,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=1010,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=199,
+ ["unit"]=0
+ }
+ },
+ [1997]={
+ ["next_chapter"]=1998,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8840,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1503,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=918890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=10200,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=1010,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=199,
+ ["unit"]=0
+ }
+ },
+ [1998]={
+ ["next_chapter"]=1999,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8893,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1512,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=928890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=10300,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=1010,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=199,
+ ["unit"]=0
+ }
+ },
+ [1999]={
+ ["next_chapter"]=2000,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8946,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1521,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=938890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=10400,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=1010,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=199,
+ ["unit"]=0
+ }
+ },
+ [2000]={
+ ["next_chapter"]=2001,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=9000,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1620,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=948890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=10500,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=1115,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ },
+ [2001]={
+ ["next_chapter"]=2002,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9000,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1620,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=958890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=10600,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=1115,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ },
+ [2002]={
+ ["next_chapter"]=2003,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9000,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1620,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=968890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=10700,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=1115,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ },
+ [2003]={
+ ["next_chapter"]=2004,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9000,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1620,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=978890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=10800,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=1115,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ },
+ [2004]={
+ ["next_chapter"]=2005,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9000,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1620,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=988890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=10900,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=1115,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ },
+ [2005]={
+ ["next_chapter"]=2006,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9000,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1620,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=998890,
+ ["unit"]=2
+ },
+ ["idle_gold"]={
+ ["value"]=11000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=1115,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ },
+ [2006]={
+ ["next_chapter"]=2007,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9001,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1620,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1009,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=11100,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=1115,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ },
+ [2007]={
+ ["next_chapter"]=2008,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9001,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1620,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1019,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=11200,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=1115,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ },
+ [2008]={
+ ["next_chapter"]=2009,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9002,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1620,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1029,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=11300,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=1115,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ },
+ [2009]={
+ ["next_chapter"]=2010,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9003,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1620,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1039,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=11400,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=1115,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=200,
+ ["unit"]=0
+ }
+ },
+ [2010]={
+ ["next_chapter"]=2011,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=9004,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1621,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1049,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=11500,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=1230,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=201,
+ ["unit"]=0
+ }
+ },
+ [2011]={
+ ["next_chapter"]=2012,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9005,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1621,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1059,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=11600,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=1230,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=201,
+ ["unit"]=0
+ }
+ },
+ [2012]={
+ ["next_chapter"]=2013,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9006,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1621,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1069,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=11700,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=1230,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=201,
+ ["unit"]=0
+ }
+ },
+ [2013]={
+ ["next_chapter"]=2014,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9008,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1621,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1079,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=11800,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=1230,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=201,
+ ["unit"]=0
+ }
+ },
+ [2014]={
+ ["next_chapter"]=2015,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9010,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1622,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1089,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=11900,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=1230,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=201,
+ ["unit"]=0
+ }
+ },
+ [2015]={
+ ["next_chapter"]=2016,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9012,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1622,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1099,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=12000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=1230,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=201,
+ ["unit"]=0
+ }
+ },
+ [2016]={
+ ["next_chapter"]=2017,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9014,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1623,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1109,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=12100,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=1230,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=201,
+ ["unit"]=0
+ }
+ },
+ [2017]={
+ ["next_chapter"]=2018,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9017,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1623,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1119,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=12200,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=1230,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=201,
+ ["unit"]=0
+ }
+ },
+ [2018]={
+ ["next_chapter"]=2019,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9021,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1624,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1129,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=12300,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=1230,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=201,
+ ["unit"]=0
+ }
+ },
+ [2019]={
+ ["next_chapter"]=2020,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9024,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1624,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1139,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=12400,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=1230,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=201,
+ ["unit"]=0
+ }
+ },
+ [2020]={
+ ["next_chapter"]=2021,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=9028,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1625,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1149,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=12500,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=48,
+ ["grasp_gold_reward"]={
+ ["value"]=1355,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=202,
+ ["unit"]=0
+ }
+ },
+ [2021]={
+ ["next_chapter"]=2022,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9033,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1626,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1159,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=12600,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=1355,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=202,
+ ["unit"]=0
+ }
+ },
+ [2022]={
+ ["next_chapter"]=2023,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9038,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1627,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1169,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=12700,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=1355,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=202,
+ ["unit"]=0
+ }
+ },
+ [2023]={
+ ["next_chapter"]=2024,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9043,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1628,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1179,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=12800,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=1355,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=202,
+ ["unit"]=0
+ }
+ },
+ [2024]={
+ ["next_chapter"]=2025,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9049,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1629,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1189,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=12900,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=1355,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=202,
+ ["unit"]=0
+ }
+ },
+ [2025]={
+ ["next_chapter"]=2026,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9055,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1630,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1199,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=13000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=1355,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=202,
+ ["unit"]=0
+ }
+ },
+ [2026]={
+ ["next_chapter"]=2027,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9062,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1631,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1209,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=13100,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=1355,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=202,
+ ["unit"]=0
+ }
+ },
+ [2027]={
+ ["next_chapter"]=2028,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9069,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1632,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1219,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=13200,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=1355,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=202,
+ ["unit"]=0
+ }
+ },
+ [2028]={
+ ["next_chapter"]=2029,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9077,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1634,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1229,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=13300,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=1355,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=202,
+ ["unit"]=0
+ }
+ },
+ [2029]={
+ ["next_chapter"]=2030,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9086,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1635,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1239,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=13400,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=1355,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=202,
+ ["unit"]=0
+ }
+ },
+ [2030]={
+ ["next_chapter"]=2031,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=9095,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1637,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1249,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=13500,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=1490,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=203,
+ ["unit"]=0
+ }
+ },
+ [2031]={
+ ["next_chapter"]=2032,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9105,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1639,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1259,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=13600,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=1490,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=203,
+ ["unit"]=0
+ }
+ },
+ [2032]={
+ ["next_chapter"]=2033,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9116,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1641,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1269,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=13700,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=1490,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=203,
+ ["unit"]=0
+ }
+ },
+ [2033]={
+ ["next_chapter"]=2034,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9127,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1643,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1279,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=13800,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=1490,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=203,
+ ["unit"]=0
+ }
+ },
+ [2034]={
+ ["next_chapter"]=2035,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9139,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1645,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1289,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=13900,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=1490,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=203,
+ ["unit"]=0
+ }
+ },
+ [2035]={
+ ["next_chapter"]=2036,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9151,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1647,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1299,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=14000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=1490,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=203,
+ ["unit"]=0
+ }
+ },
+ [2036]={
+ ["next_chapter"]=2037,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9165,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1650,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1309,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=14100,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=1490,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=203,
+ ["unit"]=0
+ }
+ },
+ [2037]={
+ ["next_chapter"]=2038,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9179,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1652,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1319,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=14200,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=1490,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=203,
+ ["unit"]=0
+ }
+ },
+ [2038]={
+ ["next_chapter"]=2039,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9194,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1655,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1329,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=14300,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=1490,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=203,
+ ["unit"]=0
+ }
+ },
+ [2039]={
+ ["next_chapter"]=2040,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9209,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1658,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1339,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=14400,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=1490,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=203,
+ ["unit"]=0
+ }
+ },
+ [2040]={
+ ["next_chapter"]=2041,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=9226,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1661,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1349,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=14500,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=1635,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=204,
+ ["unit"]=0
+ }
+ },
+ [2041]={
+ ["next_chapter"]=2042,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9243,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1664,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1359,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=14600,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=1635,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=204,
+ ["unit"]=0
+ }
+ },
+ [2042]={
+ ["next_chapter"]=2043,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9261,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1667,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1369,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=14700,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=1635,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=204,
+ ["unit"]=0
+ }
+ },
+ [2043]={
+ ["next_chapter"]=2044,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9281,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1670,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1379,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=14800,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=1635,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=204,
+ ["unit"]=0
+ }
+ },
+ [2044]={
+ ["next_chapter"]=2045,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9301,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1674,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1389,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=14900,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=1635,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=204,
+ ["unit"]=0
+ }
+ },
+ [2045]={
+ ["next_chapter"]=2046,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9321,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1678,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1399,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=15000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=1635,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=204,
+ ["unit"]=0
+ }
+ },
+ [2046]={
+ ["next_chapter"]=2047,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9343,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1682,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1409,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=15200,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=1635,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=204,
+ ["unit"]=0
+ }
+ },
+ [2047]={
+ ["next_chapter"]=2048,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9366,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1686,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1419,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=15400,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=1635,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=204,
+ ["unit"]=0
+ }
+ },
+ [2048]={
+ ["next_chapter"]=2049,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9390,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1690,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1429,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=15600,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=1635,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=204,
+ ["unit"]=0
+ }
+ },
+ [2049]={
+ ["next_chapter"]=2050,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9415,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1695,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1439,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=15800,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=1635,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=204,
+ ["unit"]=0
+ }
+ },
+ [2050]={
+ ["next_chapter"]=2051,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=9441,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1699,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1449,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=16000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=1795,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=205,
+ ["unit"]=0
+ }
+ },
+ [2051]={
+ ["next_chapter"]=2052,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9468,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1704,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1459,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=16200,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=1795,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=205,
+ ["unit"]=0
+ }
+ },
+ [2052]={
+ ["next_chapter"]=2053,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9496,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1709,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1469,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=16400,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=1795,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=205,
+ ["unit"]=0
+ }
+ },
+ [2053]={
+ ["next_chapter"]=2054,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9525,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1715,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1479,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=16600,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=1795,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=205,
+ ["unit"]=0
+ }
+ },
+ [2054]={
+ ["next_chapter"]=2055,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9556,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1720,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1489,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=16800,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=1795,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=205,
+ ["unit"]=0
+ }
+ },
+ [2055]={
+ ["next_chapter"]=2056,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9587,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1726,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1499,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=17000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=1795,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=205,
+ ["unit"]=0
+ }
+ },
+ [2056]={
+ ["next_chapter"]=2057,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9620,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1732,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1509,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=17200,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=1795,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=205,
+ ["unit"]=0
+ }
+ },
+ [2057]={
+ ["next_chapter"]=2058,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9653,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1738,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1519,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=17400,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=1795,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=205,
+ ["unit"]=0
+ }
+ },
+ [2058]={
+ ["next_chapter"]=2059,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9688,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1744,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1529,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=17600,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=1795,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=205,
+ ["unit"]=0
+ }
+ },
+ [2059]={
+ ["next_chapter"]=2060,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9725,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1750,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1539,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=17800,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=1795,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=205,
+ ["unit"]=0
+ }
+ },
+ [2060]={
+ ["next_chapter"]=2061,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=9762,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1757,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1549,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=18000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=1975,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=206,
+ ["unit"]=0
+ }
+ },
+ [2061]={
+ ["next_chapter"]=2062,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9801,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1764,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1559,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=18200,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=1975,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=206,
+ ["unit"]=0
+ }
+ },
+ [2062]={
+ ["next_chapter"]=2063,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9841,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1771,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1569,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=18400,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=1975,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=206,
+ ["unit"]=0
+ }
+ },
+ [2063]={
+ ["next_chapter"]=2064,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9882,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1779,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1579,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=18600,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=1975,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=206,
+ ["unit"]=0
+ }
+ },
+ [2064]={
+ ["next_chapter"]=2065,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9925,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1786,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1589,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=18800,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=1975,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=206,
+ ["unit"]=0
+ }
+ },
+ [2065]={
+ ["next_chapter"]=2066,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9969,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1794,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1599,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=19000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=1975,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=206,
+ ["unit"]=0
+ }
+ },
+ [2066]={
+ ["next_chapter"]=2067,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10014,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1803,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1609,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=19200,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=1975,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=206,
+ ["unit"]=0
+ }
+ },
+ [2067]={
+ ["next_chapter"]=2068,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10061,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1811,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1619,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=19400,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=1975,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=206,
+ ["unit"]=0
+ }
+ },
+ [2068]={
+ ["next_chapter"]=2069,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10109,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1820,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1629,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=19600,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=1975,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=206,
+ ["unit"]=0
+ }
+ },
+ [2069]={
+ ["next_chapter"]=2070,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10159,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1829,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1639,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=19800,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=1975,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=206,
+ ["unit"]=0
+ }
+ },
+ [2070]={
+ ["next_chapter"]=2071,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=10210,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1838,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1659,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=20000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=2175,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=207,
+ ["unit"]=0
+ }
+ },
+ [2071]={
+ ["next_chapter"]=2072,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10263,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1847,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1679,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=20200,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=2175,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=207,
+ ["unit"]=0
+ }
+ },
+ [2072]={
+ ["next_chapter"]=2073,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10317,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1857,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1699,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=20400,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=2175,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=207,
+ ["unit"]=0
+ }
+ },
+ [2073]={
+ ["next_chapter"]=2074,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10372,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1867,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1719,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=20600,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=2175,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=207,
+ ["unit"]=0
+ }
+ },
+ [2074]={
+ ["next_chapter"]=2075,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10430,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1877,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1739,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=20800,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=2175,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=207,
+ ["unit"]=0
+ }
+ },
+ [2075]={
+ ["next_chapter"]=2076,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10488,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1888,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1759,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=21000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=2175,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=207,
+ ["unit"]=0
+ }
+ },
+ [2076]={
+ ["next_chapter"]=2077,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10549,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1899,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1779,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=21200,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=2175,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=207,
+ ["unit"]=0
+ }
+ },
+ [2077]={
+ ["next_chapter"]=2078,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10611,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1910,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1799,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=21400,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=2175,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=207,
+ ["unit"]=0
+ }
+ },
+ [2078]={
+ ["next_chapter"]=2079,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10674,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1921,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1819,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=21600,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=2175,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=207,
+ ["unit"]=0
+ }
+ },
+ [2079]={
+ ["next_chapter"]=2080,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10739,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1933,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1839,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=21800,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=2175,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=207,
+ ["unit"]=0
+ }
+ },
+ [2080]={
+ ["next_chapter"]=2081,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=10806,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1945,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1859,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=22000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=2395,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=208,
+ ["unit"]=0
+ }
+ },
+ [2081]={
+ ["next_chapter"]=2082,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10875,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1957,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1879,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=22200,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=2395,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=208,
+ ["unit"]=0
+ }
+ },
+ [2082]={
+ ["next_chapter"]=2083,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10945,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1970,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1899,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=22400,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=2395,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=208,
+ ["unit"]=0
+ }
+ },
+ [2083]={
+ ["next_chapter"]=2084,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11017,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1983,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1919,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=22600,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=2395,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=208,
+ ["unit"]=0
+ }
+ },
+ [2084]={
+ ["next_chapter"]=2085,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11091,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=1996,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1939,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=22800,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=2395,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=208,
+ ["unit"]=0
+ }
+ },
+ [2085]={
+ ["next_chapter"]=2086,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11167,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=2010,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1959,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=23000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=2395,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=208,
+ ["unit"]=0
+ }
+ },
+ [2086]={
+ ["next_chapter"]=2087,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11244,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=2024,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1979,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=23200,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=2395,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=208,
+ ["unit"]=0
+ }
+ },
+ [2087]={
+ ["next_chapter"]=2088,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11323,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=2038,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1999,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=23400,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=2395,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=208,
+ ["unit"]=0
+ }
+ },
+ [2088]={
+ ["next_chapter"]=2089,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11404,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=2053,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2019,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=23600,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=2395,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=208,
+ ["unit"]=0
+ }
+ },
+ [2089]={
+ ["next_chapter"]=2090,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11487,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=2068,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2039,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=23800,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=2395,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=208,
+ ["unit"]=0
+ }
+ },
+ [2090]={
+ ["next_chapter"]=2091,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=11572,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=2083,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2059,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=24000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=2635,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=209,
+ ["unit"]=0
+ }
+ },
+ [2091]={
+ ["next_chapter"]=2092,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11659,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=2099,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2079,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=24200,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=2635,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=209,
+ ["unit"]=0
+ }
+ },
+ [2092]={
+ ["next_chapter"]=2093,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11747,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=2114,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2099,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=24400,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=2635,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=209,
+ ["unit"]=0
+ }
+ },
+ [2093]={
+ ["next_chapter"]=2094,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11838,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=2131,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2119,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=24600,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=2635,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=209,
+ ["unit"]=0
+ }
+ },
+ [2094]={
+ ["next_chapter"]=2095,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11930,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=2147,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2139,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=24800,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=2635,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=209,
+ ["unit"]=0
+ }
+ },
+ [2095]={
+ ["next_chapter"]=2096,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12025,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=2164,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2159,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=25000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=2635,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=209,
+ ["unit"]=0
+ }
+ },
+ [2096]={
+ ["next_chapter"]=2097,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12121,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=2182,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2179,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=25300,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=2635,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=209,
+ ["unit"]=0
+ }
+ },
+ [2097]={
+ ["next_chapter"]=2098,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12220,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=2200,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2199,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=25600,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=2635,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=209,
+ ["unit"]=0
+ }
+ },
+ [2098]={
+ ["next_chapter"]=2099,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12321,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=2218,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2219,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=25900,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=2635,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=209,
+ ["unit"]=0
+ }
+ },
+ [2099]={
+ ["next_chapter"]=2100,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12423,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=2236,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2239,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=26200,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=2635,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=209,
+ ["unit"]=0
+ }
+ },
+ [2100]={
+ ["next_chapter"]=2101,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=12528,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=2255,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2259,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=26500,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=49,
+ ["grasp_gold_reward"]={
+ ["value"]=2900,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=210,
+ ["unit"]=0
+ }
+ },
+ [2101]={
+ ["next_chapter"]=2102,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12635,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=2274,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2279,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=26800,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=2900,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=210,
+ ["unit"]=0
+ }
+ },
+ [2102]={
+ ["next_chapter"]=2103,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12744,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=2294,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2299,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=27100,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=2900,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=210,
+ ["unit"]=0
+ }
+ },
+ [2103]={
+ ["next_chapter"]=2104,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12855,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=2314,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2319,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=27400,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=2900,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=210,
+ ["unit"]=0
+ }
+ },
+ [2104]={
+ ["next_chapter"]=2105,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12969,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=2334,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2339,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=27700,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=2900,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=210,
+ ["unit"]=0
+ }
+ },
+ [2105]={
+ ["next_chapter"]=2106,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13084,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=2355,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2359,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=28000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=2900,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=210,
+ ["unit"]=0
+ }
+ },
+ [2106]={
+ ["next_chapter"]=2107,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13202,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=2376,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2379,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=28300,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=2900,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=210,
+ ["unit"]=0
+ }
+ },
+ [2107]={
+ ["next_chapter"]=2108,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13322,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=2398,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2399,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=28600,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=2900,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=210,
+ ["unit"]=0
+ }
+ },
+ [2108]={
+ ["next_chapter"]=2109,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13444,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=2420,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2419,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=28900,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=2900,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=210,
+ ["unit"]=0
+ }
+ },
+ [2109]={
+ ["next_chapter"]=2110,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13569,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=2442,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2439,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=29200,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=2900,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=210,
+ ["unit"]=0
+ }
+ },
+ [2110]={
+ ["next_chapter"]=2111,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=13696,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=2465,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2459,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=29500,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3195,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=211,
+ ["unit"]=0
+ }
+ },
+ [2111]={
+ ["next_chapter"]=2112,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13825,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=2489,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2479,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=29800,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3195,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=211,
+ ["unit"]=0
+ }
+ },
+ [2112]={
+ ["next_chapter"]=2113,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13957,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=2512,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2509,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=30100,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3195,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=211,
+ ["unit"]=0
+ }
+ },
+ [2113]={
+ ["next_chapter"]=2114,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14091,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=2536,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2539,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=30400,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3195,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=211,
+ ["unit"]=0
+ }
+ },
+ [2114]={
+ ["next_chapter"]=2115,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14227,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=2561,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2569,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=30700,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3195,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=211,
+ ["unit"]=0
+ }
+ },
+ [2115]={
+ ["next_chapter"]=2116,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14366,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=2586,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2599,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=31000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3195,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=211,
+ ["unit"]=0
+ }
+ },
+ [2116]={
+ ["next_chapter"]=2117,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14507,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=2611,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2629,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=31300,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3195,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=211,
+ ["unit"]=0
+ }
+ },
+ [2117]={
+ ["next_chapter"]=2118,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14650,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=2637,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2659,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=31600,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3195,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=211,
+ ["unit"]=0
+ }
+ },
+ [2118]={
+ ["next_chapter"]=2119,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14797,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=2663,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2689,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=31900,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3195,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=211,
+ ["unit"]=0
+ }
+ },
+ [2119]={
+ ["next_chapter"]=2120,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14945,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=2690,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2719,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=32200,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3195,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=211,
+ ["unit"]=0
+ }
+ },
+ [2120]={
+ ["next_chapter"]=2121,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=15096,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=2717,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2749,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=32500,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3520,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=212,
+ ["unit"]=0
+ }
+ },
+ [2121]={
+ ["next_chapter"]=2122,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15250,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=2745,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2779,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=32800,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3520,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=212,
+ ["unit"]=0
+ }
+ },
+ [2122]={
+ ["next_chapter"]=2123,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15406,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=2773,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2809,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=33100,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3520,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=212,
+ ["unit"]=0
+ }
+ },
+ [2123]={
+ ["next_chapter"]=2124,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15565,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=2802,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2839,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=33400,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3520,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=212,
+ ["unit"]=0
+ }
+ },
+ [2124]={
+ ["next_chapter"]=2125,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15727,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=2831,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2869,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=33700,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3520,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=212,
+ ["unit"]=0
+ }
+ },
+ [2125]={
+ ["next_chapter"]=2126,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15891,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=2860,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2899,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=34000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3520,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=212,
+ ["unit"]=0
+ }
+ },
+ [2126]={
+ ["next_chapter"]=2127,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16057,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=2890,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2929,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=34300,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3520,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=212,
+ ["unit"]=0
+ }
+ },
+ [2127]={
+ ["next_chapter"]=2128,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16227,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=2921,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2959,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=34600,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3520,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=212,
+ ["unit"]=0
+ }
+ },
+ [2128]={
+ ["next_chapter"]=2129,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16399,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=2952,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2989,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=34900,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3520,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=212,
+ ["unit"]=0
+ }
+ },
+ [2129]={
+ ["next_chapter"]=2130,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16574,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=2983,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3019,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=35200,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3520,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=212,
+ ["unit"]=0
+ }
+ },
+ [2130]={
+ ["next_chapter"]=2131,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=16751,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=3015,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3049,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=35600,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3876,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=213,
+ ["unit"]=0
+ }
+ },
+ [2131]={
+ ["next_chapter"]=2132,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16931,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=3048,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3079,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=36000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3876,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=213,
+ ["unit"]=0
+ }
+ },
+ [2132]={
+ ["next_chapter"]=2133,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17114,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=3081,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3109,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=36400,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3876,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=213,
+ ["unit"]=0
+ }
+ },
+ [2133]={
+ ["next_chapter"]=2134,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17300,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=3114,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3139,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=36800,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3876,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=213,
+ ["unit"]=0
+ }
+ },
+ [2134]={
+ ["next_chapter"]=2135,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17489,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=3148,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3169,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=37200,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3876,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=213,
+ ["unit"]=0
+ }
+ },
+ [2135]={
+ ["next_chapter"]=2136,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17680,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=3182,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3199,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=37600,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3876,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=213,
+ ["unit"]=0
+ }
+ },
+ [2136]={
+ ["next_chapter"]=2137,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17875,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=3217,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3229,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=38000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3876,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=213,
+ ["unit"]=0
+ }
+ },
+ [2137]={
+ ["next_chapter"]=2138,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18072,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=3253,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3259,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=38400,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3876,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=213,
+ ["unit"]=0
+ }
+ },
+ [2138]={
+ ["next_chapter"]=2139,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18272,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=3289,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3289,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=38800,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3876,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=213,
+ ["unit"]=0
+ }
+ },
+ [2139]={
+ ["next_chapter"]=2140,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18475,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=3325,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3319,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=39200,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3876,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=213,
+ ["unit"]=0
+ }
+ },
+ [2140]={
+ ["next_chapter"]=2141,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=18681,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=3363,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3349,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=39600,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=4272,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=214,
+ ["unit"]=0
+ }
+ },
+ [2141]={
+ ["next_chapter"]=2142,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18890,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=3400,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3389,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=40000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=4272,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=214,
+ ["unit"]=0
+ }
+ },
+ [2142]={
+ ["next_chapter"]=2143,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19102,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=3438,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3429,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=40400,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=4272,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=214,
+ ["unit"]=0
+ }
+ },
+ [2143]={
+ ["next_chapter"]=2144,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19317,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=3477,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3469,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=40800,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=4272,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=214,
+ ["unit"]=0
+ }
+ },
+ [2144]={
+ ["next_chapter"]=2145,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19535,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=3516,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3509,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=41200,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=4272,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=214,
+ ["unit"]=0
+ }
+ },
+ [2145]={
+ ["next_chapter"]=2146,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19756,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=3556,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3549,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=41600,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=4272,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=214,
+ ["unit"]=0
+ }
+ },
+ [2146]={
+ ["next_chapter"]=2147,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19980,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=3596,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3589,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=42000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=4272,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=214,
+ ["unit"]=0
+ }
+ },
+ [2147]={
+ ["next_chapter"]=2148,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20207,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=3637,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3629,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=42400,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=4272,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=214,
+ ["unit"]=0
+ }
+ },
+ [2148]={
+ ["next_chapter"]=2149,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20437,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=3679,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3669,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=42800,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=4272,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=214,
+ ["unit"]=0
+ }
+ },
+ [2149]={
+ ["next_chapter"]=2150,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20670,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=3721,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3709,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=43200,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=4272,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=214,
+ ["unit"]=0
+ }
+ },
+ [2150]={
+ ["next_chapter"]=2151,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=20907,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=3763,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3749,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=43600,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=4708,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=215,
+ ["unit"]=0
+ }
+ },
+ [2151]={
+ ["next_chapter"]=2152,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21147,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=3806,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3789,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=44000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=4708,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=215,
+ ["unit"]=0
+ }
+ },
+ [2152]={
+ ["next_chapter"]=2153,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21390,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=3850,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3829,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=44400,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=4708,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=215,
+ ["unit"]=0
+ }
+ },
+ [2153]={
+ ["next_chapter"]=2154,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21636,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=3894,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3869,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=44800,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=4708,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=215,
+ ["unit"]=0
+ }
+ },
+ [2154]={
+ ["next_chapter"]=2155,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21885,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=3939,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3909,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=45200,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=4708,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=215,
+ ["unit"]=0
+ }
+ },
+ [2155]={
+ ["next_chapter"]=2156,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22138,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=3985,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3949,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=45700,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=4708,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=215,
+ ["unit"]=0
+ }
+ },
+ [2156]={
+ ["next_chapter"]=2157,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22394,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=4031,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3989,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=46200,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=4708,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=215,
+ ["unit"]=0
+ }
+ },
+ [2157]={
+ ["next_chapter"]=2158,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22653,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=4078,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4029,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=46700,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=4708,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=215,
+ ["unit"]=0
+ }
+ },
+ [2158]={
+ ["next_chapter"]=2159,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22916,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=4125,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4069,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=47200,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=4708,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=215,
+ ["unit"]=0
+ }
+ },
+ [2159]={
+ ["next_chapter"]=2160,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23181,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=4173,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4109,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=47700,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=4708,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=215,
+ ["unit"]=0
+ }
+ },
+ [2160]={
+ ["next_chapter"]=2161,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=23451,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=4221,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4149,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=48200,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=5190,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=216,
+ ["unit"]=0
+ }
+ },
+ [2161]={
+ ["next_chapter"]=2162,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23723,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=4270,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4189,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=48700,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=5190,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=216,
+ ["unit"]=0
+ }
+ },
+ [2162]={
+ ["next_chapter"]=2163,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23999,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=4320,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4229,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=49200,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=5190,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=216,
+ ["unit"]=0
+ }
+ },
+ [2163]={
+ ["next_chapter"]=2164,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24279,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=4370,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4269,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=49700,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=5190,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=216,
+ ["unit"]=0
+ }
+ },
+ [2164]={
+ ["next_chapter"]=2165,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24562,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=4421,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4319,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=50200,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=5190,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=216,
+ ["unit"]=0
+ }
+ },
+ [2165]={
+ ["next_chapter"]=2166,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24848,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=4473,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4369,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=50700,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=5190,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=216,
+ ["unit"]=0
+ }
+ },
+ [2166]={
+ ["next_chapter"]=2167,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25138,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=4525,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4419,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=51200,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=5190,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=216,
+ ["unit"]=0
+ }
+ },
+ [2167]={
+ ["next_chapter"]=2168,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25432,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=4578,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4469,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=51700,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=5190,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=216,
+ ["unit"]=0
+ }
+ },
+ [2168]={
+ ["next_chapter"]=2169,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25728,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=4631,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4519,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=52200,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=5190,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=216,
+ ["unit"]=0
+ }
+ },
+ [2169]={
+ ["next_chapter"]=2170,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26029,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=4685,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4569,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=52700,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=5190,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=216,
+ ["unit"]=0
+ }
+ },
+ [2170]={
+ ["next_chapter"]=2171,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=26333,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=4740,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4619,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=53200,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=5722,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=217,
+ ["unit"]=0
+ }
+ },
+ [2171]={
+ ["next_chapter"]=2172,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26641,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=4795,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4669,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=53700,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=5722,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=217,
+ ["unit"]=0
+ }
+ },
+ [2172]={
+ ["next_chapter"]=2173,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26952,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=4851,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4719,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=54200,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=5722,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=217,
+ ["unit"]=0
+ }
+ },
+ [2173]={
+ ["next_chapter"]=2174,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27267,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=4908,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4769,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=54700,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=5722,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=217,
+ ["unit"]=0
+ }
+ },
+ [2174]={
+ ["next_chapter"]=2175,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27586,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=4965,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4819,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=55200,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=5722,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=217,
+ ["unit"]=0
+ }
+ },
+ [2175]={
+ ["next_chapter"]=2176,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27908,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=5023,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4869,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=55800,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=5722,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=217,
+ ["unit"]=0
+ }
+ },
+ [2176]={
+ ["next_chapter"]=2177,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28234,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=5082,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4919,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=56400,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=5722,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=217,
+ ["unit"]=0
+ }
+ },
+ [2177]={
+ ["next_chapter"]=2178,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28564,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=5141,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4969,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=57000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=5722,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=217,
+ ["unit"]=0
+ }
+ },
+ [2178]={
+ ["next_chapter"]=2179,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28897,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=5201,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5019,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=57600,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=5722,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=217,
+ ["unit"]=0
+ }
+ },
+ [2179]={
+ ["next_chapter"]=2180,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29234,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=5262,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5069,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=58200,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=5722,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=217,
+ ["unit"]=0
+ }
+ },
+ [2180]={
+ ["next_chapter"]=2181,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=29575,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=5324,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5119,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=58800,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=6310,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=218,
+ ["unit"]=0
+ }
+ },
+ [2181]={
+ ["next_chapter"]=2182,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29920,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=5386,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5169,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=59400,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=6310,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=218,
+ ["unit"]=0
+ }
+ },
+ [2182]={
+ ["next_chapter"]=2183,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30269,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=5448,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5229,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=60000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=6310,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=218,
+ ["unit"]=0
+ }
+ },
+ [2183]={
+ ["next_chapter"]=2184,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30621,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=5512,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5289,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=60600,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=6310,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=218,
+ ["unit"]=0
+ }
+ },
+ [2184]={
+ ["next_chapter"]=2185,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30978,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=5576,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5349,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=61200,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=6310,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=218,
+ ["unit"]=0
+ }
+ },
+ [2185]={
+ ["next_chapter"]=2186,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=31338,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=5641,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5409,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=61800,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=6310,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=218,
+ ["unit"]=0
+ }
+ },
+ [2186]={
+ ["next_chapter"]=2187,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=31702,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=5706,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5469,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=62400,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=6310,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=218,
+ ["unit"]=0
+ }
+ },
+ [2187]={
+ ["next_chapter"]=2188,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=32070,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=5773,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5529,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=63000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=6310,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=218,
+ ["unit"]=0
+ }
+ },
+ [2188]={
+ ["next_chapter"]=2189,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=32442,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=5840,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5589,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=63600,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=6310,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=218,
+ ["unit"]=0
+ }
+ },
+ [2189]={
+ ["next_chapter"]=2190,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=32818,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=5907,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5649,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=64200,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=6310,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=218,
+ ["unit"]=0
+ }
+ },
+ [2190]={
+ ["next_chapter"]=2191,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=33199,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=5976,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5709,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=64800,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=6958,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=219,
+ ["unit"]=0
+ }
+ },
+ [2191]={
+ ["next_chapter"]=2192,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=33583,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=6045,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5769,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=65400,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=6958,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=219,
+ ["unit"]=0
+ }
+ },
+ [2192]={
+ ["next_chapter"]=2193,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=33971,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=6115,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5829,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=66100,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=6958,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=219,
+ ["unit"]=0
+ }
+ },
+ [2193]={
+ ["next_chapter"]=2194,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=34363,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=6185,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=66800,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=6958,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=219,
+ ["unit"]=0
+ }
+ },
+ [2194]={
+ ["next_chapter"]=2195,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=34759,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=6257,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5949,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=67500,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=6958,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=219,
+ ["unit"]=0
+ }
+ },
+ [2195]={
+ ["next_chapter"]=2196,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=35160,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=6329,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6009,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=68200,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=6958,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=219,
+ ["unit"]=0
+ }
+ },
+ [2196]={
+ ["next_chapter"]=2197,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=35564,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=6402,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6069,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=68900,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=6958,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=219,
+ ["unit"]=0
+ }
+ },
+ [2197]={
+ ["next_chapter"]=2198,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=35973,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=6475,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6129,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=69600,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=6958,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=219,
+ ["unit"]=0
+ }
+ },
+ [2198]={
+ ["next_chapter"]=2199,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=36386,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=6549,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6199,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=70300,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=6958,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=219,
+ ["unit"]=0
+ }
+ },
+ [2199]={
+ ["next_chapter"]=2200,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=36803,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=6624,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6269,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=71000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=6958,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=219,
+ ["unit"]=0
+ }
+ },
+ [2200]={
+ ["next_chapter"]=2201,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=37224,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=6700,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6339,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=71700,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=7675,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=220,
+ ["unit"]=0
+ }
+ },
+ [2201]={
+ ["next_chapter"]=2202,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=37649,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=6777,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6409,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=72400,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=7675,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=220,
+ ["unit"]=0
+ }
+ },
+ [2202]={
+ ["next_chapter"]=2203,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=38079,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=6854,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6479,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=73100,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=7675,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=220,
+ ["unit"]=0
+ }
+ },
+ [2203]={
+ ["next_chapter"]=2204,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=38513,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=6932,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6549,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=73800,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=7675,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=220,
+ ["unit"]=0
+ }
+ },
+ [2204]={
+ ["next_chapter"]=2205,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=38952,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=7011,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6619,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=74500,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=7675,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=220,
+ ["unit"]=0
+ }
+ },
+ [2205]={
+ ["next_chapter"]=2206,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=39394,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=7091,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6689,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=75200,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=7675,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=220,
+ ["unit"]=0
+ }
+ },
+ [2206]={
+ ["next_chapter"]=2207,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=39841,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=7171,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6759,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=76000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=7675,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=220,
+ ["unit"]=0
+ }
+ },
+ [2207]={
+ ["next_chapter"]=2208,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=40292,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=7253,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6829,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=76800,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=7675,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=220,
+ ["unit"]=0
+ }
+ },
+ [2208]={
+ ["next_chapter"]=2209,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=40748,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=7335,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6899,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=77600,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=7675,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=220,
+ ["unit"]=0
+ }
+ },
+ [2209]={
+ ["next_chapter"]=2210,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=41208,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=7417,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6969,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=78400,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=7675,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=220,
+ ["unit"]=0
+ }
+ },
+ [2210]={
+ ["next_chapter"]=2211,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=41673,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=7501,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7039,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=79200,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=8467,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=221,
+ ["unit"]=0
+ }
+ },
+ [2211]={
+ ["next_chapter"]=2212,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=42142,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=7586,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7119,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=80000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=8467,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=221,
+ ["unit"]=0
+ }
+ },
+ [2212]={
+ ["next_chapter"]=2213,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=42615,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=7671,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7199,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=80800,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=8467,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=221,
+ ["unit"]=0
+ }
+ },
+ [2213]={
+ ["next_chapter"]=2214,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=43093,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=7757,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7279,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=81600,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=8467,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=221,
+ ["unit"]=0
+ }
+ },
+ [2214]={
+ ["next_chapter"]=2215,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=43576,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=7844,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7359,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=82400,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=8467,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=221,
+ ["unit"]=0
+ }
+ },
+ [2215]={
+ ["next_chapter"]=2216,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=44063,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=7931,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7439,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=83200,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=8467,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=221,
+ ["unit"]=0
+ }
+ },
+ [2216]={
+ ["next_chapter"]=2217,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=44554,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=8020,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7519,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=84000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=8467,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=221,
+ ["unit"]=0
+ }
+ },
+ [2217]={
+ ["next_chapter"]=2218,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=45050,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=8109,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7599,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=84800,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=8467,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=221,
+ ["unit"]=0
+ }
+ },
+ [2218]={
+ ["next_chapter"]=2219,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=45551,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=8199,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7679,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=85600,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=8467,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=221,
+ ["unit"]=0
+ }
+ },
+ [2219]={
+ ["next_chapter"]=2220,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=46056,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=8290,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7759,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=86500,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=8467,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=221,
+ ["unit"]=0
+ }
+ },
+ [2220]={
+ ["next_chapter"]=2221,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=46566,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=8382,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7839,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=87400,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=9341,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=222,
+ ["unit"]=0
+ }
+ },
+ [2221]={
+ ["next_chapter"]=2222,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=47081,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=8475,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7919,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=88300,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=9341,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=222,
+ ["unit"]=0
+ }
+ },
+ [2222]={
+ ["next_chapter"]=2223,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=47600,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=8568,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7999,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=89200,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=9341,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=222,
+ ["unit"]=0
+ }
+ },
+ [2223]={
+ ["next_chapter"]=2224,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=48124,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=8662,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8089,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=90100,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=9341,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=222,
+ ["unit"]=0
+ }
+ },
+ [2224]={
+ ["next_chapter"]=2225,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=48653,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=8757,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8179,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=91000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=9341,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=222,
+ ["unit"]=0
+ }
+ },
+ [2225]={
+ ["next_chapter"]=2226,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=49186,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=8854,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8269,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=91900,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=9341,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=222,
+ ["unit"]=0
+ }
+ },
+ [2226]={
+ ["next_chapter"]=2227,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=49724,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=8950,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8359,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=92800,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=9341,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=222,
+ ["unit"]=0
+ }
+ },
+ [2227]={
+ ["next_chapter"]=2228,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=50267,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=9048,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8449,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=93700,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=9341,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=222,
+ ["unit"]=0
+ }
+ },
+ [2228]={
+ ["next_chapter"]=2229,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=50815,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=9147,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8539,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=94600,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=9341,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=222,
+ ["unit"]=0
+ }
+ },
+ [2229]={
+ ["next_chapter"]=2230,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=51368,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=9246,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8629,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=95500,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=9341,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=222,
+ ["unit"]=0
+ }
+ },
+ [2230]={
+ ["next_chapter"]=2231,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=51925,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=9347,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8719,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=96500,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=10306,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=223,
+ ["unit"]=0
+ }
+ },
+ [2231]={
+ ["next_chapter"]=2232,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=52488,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=9448,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8809,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=97500,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=10306,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=223,
+ ["unit"]=0
+ }
+ },
+ [2232]={
+ ["next_chapter"]=2233,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=53055,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=9550,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8899,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=98500,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=10306,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=223,
+ ["unit"]=0
+ }
+ },
+ [2233]={
+ ["next_chapter"]=2234,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=53627,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=9653,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8989,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=99500,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=10306,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=223,
+ ["unit"]=0
+ }
+ },
+ [2234]={
+ ["next_chapter"]=2235,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=54204,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=9757,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9089,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=100500,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=10306,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=223,
+ ["unit"]=0
+ }
+ },
+ [2235]={
+ ["next_chapter"]=2236,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=54786,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=9861,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9189,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=102000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=10306,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=223,
+ ["unit"]=0
+ }
+ },
+ [2236]={
+ ["next_chapter"]=2237,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=55373,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=9967,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9289,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=103000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=10306,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=223,
+ ["unit"]=0
+ }
+ },
+ [2237]={
+ ["next_chapter"]=2238,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=55965,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=10074,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9389,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=104000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=10306,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=223,
+ ["unit"]=0
+ }
+ },
+ [2238]={
+ ["next_chapter"]=2239,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=56562,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=10181,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9489,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=105000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=10306,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=223,
+ ["unit"]=0
+ }
+ },
+ [2239]={
+ ["next_chapter"]=2240,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=57164,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=10290,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9589,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=106000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=10306,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=223,
+ ["unit"]=0
+ }
+ },
+ [2240]={
+ ["next_chapter"]=2241,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=57771,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=10399,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9689,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=107000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=11376,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=224,
+ ["unit"]=0
+ }
+ },
+ [2241]={
+ ["next_chapter"]=2242,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=58383,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=10509,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9789,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=108000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=11376,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=224,
+ ["unit"]=0
+ }
+ },
+ [2242]={
+ ["next_chapter"]=2243,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=59001,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=10620,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=109000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=11376,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=224,
+ ["unit"]=0
+ }
+ },
+ [2243]={
+ ["next_chapter"]=2244,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=59623,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=10732,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9989,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=110000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=11376,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=224,
+ ["unit"]=0
+ }
+ },
+ [2244]={
+ ["next_chapter"]=2245,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60250,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=10845,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10089,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=111000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=11376,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=224,
+ ["unit"]=0
+ }
+ },
+ [2245]={
+ ["next_chapter"]=2246,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60883,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=10959,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10189,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=112000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=11376,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=224,
+ ["unit"]=0
+ }
+ },
+ [2246]={
+ ["next_chapter"]=2247,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=61521,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=11074,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10289,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=113000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=11376,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=224,
+ ["unit"]=0
+ }
+ },
+ [2247]={
+ ["next_chapter"]=2248,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=62164,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=11190,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10389,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=114000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=11376,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=224,
+ ["unit"]=0
+ }
+ },
+ [2248]={
+ ["next_chapter"]=2249,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=62813,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=11306,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10489,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=115000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=11376,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=224,
+ ["unit"]=0
+ }
+ },
+ [2249]={
+ ["next_chapter"]=2250,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=63466,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=11424,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10589,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=116000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=11376,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=224,
+ ["unit"]=0
+ }
+ },
+ [2250]={
+ ["next_chapter"]=2251,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=64125,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=11543,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10689,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=117000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=12546,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=225,
+ ["unit"]=0
+ }
+ },
+ [2251]={
+ ["next_chapter"]=2252,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=64789,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=11662,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10789,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=118000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=12546,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=225,
+ ["unit"]=0
+ }
+ },
+ [2252]={
+ ["next_chapter"]=2253,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=65459,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=11783,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=119000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=12546,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=225,
+ ["unit"]=0
+ }
+ },
+ [2253]={
+ ["next_chapter"]=2254,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=66133,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=11904,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10989,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=120000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=12546,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=225,
+ ["unit"]=0
+ }
+ },
+ [2254]={
+ ["next_chapter"]=2255,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=66814,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=12026,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11089,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=121000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=12546,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=225,
+ ["unit"]=0
+ }
+ },
+ [2255]={
+ ["next_chapter"]=2256,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=67499,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=12150,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11189,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=122000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=12546,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=225,
+ ["unit"]=0
+ }
+ },
+ [2256]={
+ ["next_chapter"]=2257,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=68190,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=12274,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11289,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=123000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=12546,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=225,
+ ["unit"]=0
+ }
+ },
+ [2257]={
+ ["next_chapter"]=2258,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=68886,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=12400,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11389,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=124000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=12546,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=225,
+ ["unit"]=0
+ }
+ },
+ [2258]={
+ ["next_chapter"]=2259,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=69588,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=12526,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11489,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=125000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=12546,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=225,
+ ["unit"]=0
+ }
+ },
+ [2259]={
+ ["next_chapter"]=2260,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=70295,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=12653,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11589,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=126000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=12546,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=225,
+ ["unit"]=0
+ }
+ },
+ [2260]={
+ ["next_chapter"]=2261,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=71008,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=12781,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11689,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=127000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=13816,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=226,
+ ["unit"]=0
+ }
+ },
+ [2261]={
+ ["next_chapter"]=2262,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=71726,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=12911,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11789,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=128000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=13816,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=226,
+ ["unit"]=0
+ }
+ },
+ [2262]={
+ ["next_chapter"]=2263,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=72450,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=13041,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=129000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=13816,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=226,
+ ["unit"]=0
+ }
+ },
+ [2263]={
+ ["next_chapter"]=2264,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=73179,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=13172,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11989,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=130000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=13816,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=226,
+ ["unit"]=0
+ }
+ },
+ [2264]={
+ ["next_chapter"]=2265,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=73914,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=13305,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12089,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=131000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=13816,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=226,
+ ["unit"]=0
+ }
+ },
+ [2265]={
+ ["next_chapter"]=2266,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=74655,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=13438,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12189,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=132000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=13816,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=226,
+ ["unit"]=0
+ }
+ },
+ [2266]={
+ ["next_chapter"]=2267,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=75401,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=13572,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12289,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=133000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=13816,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=226,
+ ["unit"]=0
+ }
+ },
+ [2267]={
+ ["next_chapter"]=2268,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=76153,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=13707,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12389,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=134000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=13816,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=226,
+ ["unit"]=0
+ }
+ },
+ [2268]={
+ ["next_chapter"]=2269,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=76910,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=13844,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12489,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=135000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=13816,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=226,
+ ["unit"]=0
+ }
+ },
+ [2269]={
+ ["next_chapter"]=2270,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=77673,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=13981,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12589,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=136000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=13816,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=226,
+ ["unit"]=0
+ }
+ },
+ [2270]={
+ ["next_chapter"]=2271,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=78442,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=14119,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12689,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=137000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=15186,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=227,
+ ["unit"]=0
+ }
+ },
+ [2271]={
+ ["next_chapter"]=2272,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=79216,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=14259,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12789,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=138000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=15186,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=227,
+ ["unit"]=0
+ }
+ },
+ [2272]={
+ ["next_chapter"]=2273,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=79996,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=14399,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=139000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=15186,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=227,
+ ["unit"]=0
+ }
+ },
+ [2273]={
+ ["next_chapter"]=2274,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=80782,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=14541,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12989,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=140000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=15186,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=227,
+ ["unit"]=0
+ }
+ },
+ [2274]={
+ ["next_chapter"]=2275,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=81574,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=14683,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13089,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=141000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=15186,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=227,
+ ["unit"]=0
+ }
+ },
+ [2275]={
+ ["next_chapter"]=2276,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=82371,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=14827,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13189,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=142000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=15186,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=227,
+ ["unit"]=0
+ }
+ },
+ [2276]={
+ ["next_chapter"]=2277,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=83175,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=14971,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13289,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=143000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=15186,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=227,
+ ["unit"]=0
+ }
+ },
+ [2277]={
+ ["next_chapter"]=2278,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=83984,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=15117,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13389,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=144000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=15186,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=227,
+ ["unit"]=0
+ }
+ },
+ [2278]={
+ ["next_chapter"]=2279,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=84799,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=15264,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13489,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=145000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=15186,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=227,
+ ["unit"]=0
+ }
+ },
+ [2279]={
+ ["next_chapter"]=2280,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=85620,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=15412,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13589,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=146000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=15186,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=227,
+ ["unit"]=0
+ }
+ },
+ [2280]={
+ ["next_chapter"]=2281,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=86447,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=15560,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13689,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=147000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=16656,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=228,
+ ["unit"]=0
+ }
+ },
+ [2281]={
+ ["next_chapter"]=2282,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=87279,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=15710,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13789,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=148000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=16656,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=228,
+ ["unit"]=0
+ }
+ },
+ [2282]={
+ ["next_chapter"]=2283,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=88118,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=15861,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=149000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=16656,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=228,
+ ["unit"]=0
+ }
+ },
+ [2283]={
+ ["next_chapter"]=2284,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=88963,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=16013,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13989,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=150000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=16656,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=228,
+ ["unit"]=0
+ }
+ },
+ [2284]={
+ ["next_chapter"]=2285,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=89813,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=16166,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14089,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=152000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=16656,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=228,
+ ["unit"]=0
+ }
+ },
+ [2285]={
+ ["next_chapter"]=2286,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=90670,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=16321,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14189,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=154000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=16656,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=228,
+ ["unit"]=0
+ }
+ },
+ [2286]={
+ ["next_chapter"]=2287,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=91533,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=16476,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14289,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=156000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=16656,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=228,
+ ["unit"]=0
+ }
+ },
+ [2287]={
+ ["next_chapter"]=2288,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=92402,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=16632,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14389,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=158000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=16656,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=228,
+ ["unit"]=0
+ }
+ },
+ [2288]={
+ ["next_chapter"]=2289,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=93276,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=16790,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14489,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=160000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=16656,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=228,
+ ["unit"]=0
+ }
+ },
+ [2289]={
+ ["next_chapter"]=2290,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=94157,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=16948,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14589,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=162000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=16656,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=228,
+ ["unit"]=0
+ }
+ },
+ [2290]={
+ ["next_chapter"]=2291,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=95044,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=17108,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14689,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=164000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=18296,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=229,
+ ["unit"]=0
+ }
+ },
+ [2291]={
+ ["next_chapter"]=2292,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=95938,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=17269,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14789,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=166000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=18296,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=229,
+ ["unit"]=0
+ }
+ },
+ [2292]={
+ ["next_chapter"]=2293,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=96837,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=17431,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=168000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=18296,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=229,
+ ["unit"]=0
+ }
+ },
+ [2293]={
+ ["next_chapter"]=2294,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=97742,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=17594,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14989,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=170000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=18296,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=229,
+ ["unit"]=0
+ }
+ },
+ [2294]={
+ ["next_chapter"]=2295,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=98654,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=17758,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15089,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=172000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=18296,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=229,
+ ["unit"]=0
+ }
+ },
+ [2295]={
+ ["next_chapter"]=2296,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=99572,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=17923,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15189,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=174000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=18296,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=229,
+ ["unit"]=0
+ }
+ },
+ [2296]={
+ ["next_chapter"]=2297,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=100496,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=18089,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15289,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=176000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=18296,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=229,
+ ["unit"]=0
+ }
+ },
+ [2297]={
+ ["next_chapter"]=2298,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=101427,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=18257,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15389,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=178000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=18296,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=229,
+ ["unit"]=0
+ }
+ },
+ [2298]={
+ ["next_chapter"]=2299,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=102364,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=18425,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15489,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=180000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=18296,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=229,
+ ["unit"]=0
+ }
+ },
+ [2299]={
+ ["next_chapter"]=2300,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=103307,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=18595,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15589,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=182000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=18296,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=229,
+ ["unit"]=0
+ }
+ },
+ [2300]={
+ ["next_chapter"]=2301,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=104256,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=18766,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15689,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=184000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=20136,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=230,
+ ["unit"]=0
+ }
+ },
+ [2301]={
+ ["next_chapter"]=2302,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=105212,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=18938,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15789,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=186000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=20136,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=230,
+ ["unit"]=0
+ }
+ },
+ [2302]={
+ ["next_chapter"]=2303,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=106174,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=19111,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=188000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=20136,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=230,
+ ["unit"]=0
+ }
+ },
+ [2303]={
+ ["next_chapter"]=2304,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=107142,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=19286,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15989,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=190000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=20136,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=230,
+ ["unit"]=0
+ }
+ },
+ [2304]={
+ ["next_chapter"]=2305,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=108117,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=19461,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16089,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=192000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=20136,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=230,
+ ["unit"]=0
+ }
+ },
+ [2305]={
+ ["next_chapter"]=2306,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=109099,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=19638,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16189,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=194000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=20136,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=230,
+ ["unit"]=0
+ }
+ },
+ [2306]={
+ ["next_chapter"]=2307,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=110086,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=19816,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16289,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=196000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=20136,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=230,
+ ["unit"]=0
+ }
+ },
+ [2307]={
+ ["next_chapter"]=2308,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=111081,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=19995,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16389,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=198000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=20136,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=230,
+ ["unit"]=0
+ }
+ },
+ [2308]={
+ ["next_chapter"]=2309,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=112081,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=20175,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16589,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=200000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=20136,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=230,
+ ["unit"]=0
+ }
+ },
+ [2309]={
+ ["next_chapter"]=2310,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=113089,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=20356,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16789,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=202000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=20136,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=230,
+ ["unit"]=0
+ }
+ },
+ [2310]={
+ ["next_chapter"]=2311,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=114103,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=20538,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16989,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=204000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=22176,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=231,
+ ["unit"]=0
+ }
+ },
+ [2311]={
+ ["next_chapter"]=2312,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=115123,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=20722,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17189,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=206000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=22176,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=231,
+ ["unit"]=0
+ }
+ },
+ [2312]={
+ ["next_chapter"]=2313,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=116150,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=20907,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17389,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=208000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=22176,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=231,
+ ["unit"]=0
+ }
+ },
+ [2313]={
+ ["next_chapter"]=2314,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=117184,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=21093,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17589,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=210000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=22176,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=231,
+ ["unit"]=0
+ }
+ },
+ [2314]={
+ ["next_chapter"]=2315,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=118224,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=21280,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17789,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=212000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=22176,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=231,
+ ["unit"]=0
+ }
+ },
+ [2315]={
+ ["next_chapter"]=2316,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=119271,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=21469,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17989,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=214000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=22176,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=231,
+ ["unit"]=0
+ }
+ },
+ [2316]={
+ ["next_chapter"]=2317,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120324,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=21658,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18189,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=216000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=22176,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=231,
+ ["unit"]=0
+ }
+ },
+ [2317]={
+ ["next_chapter"]=2318,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=121384,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=21849,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18389,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=218000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=22176,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=231,
+ ["unit"]=0
+ }
+ },
+ [2318]={
+ ["next_chapter"]=2319,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=122451,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=22041,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18589,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=220000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=22176,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=231,
+ ["unit"]=0
+ }
+ },
+ [2319]={
+ ["next_chapter"]=2320,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=123525,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=22235,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18789,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=222000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=22176,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=231,
+ ["unit"]=0
+ }
+ },
+ [2320]={
+ ["next_chapter"]=2321,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=124606,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=22429,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18989,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=224000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=24416,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=232,
+ ["unit"]=0
+ }
+ },
+ [2321]={
+ ["next_chapter"]=2322,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=125693,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=22625,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19189,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=226000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=24416,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=232,
+ ["unit"]=0
+ }
+ },
+ [2322]={
+ ["next_chapter"]=2323,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=126787,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=22822,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19389,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=228000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=24416,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=232,
+ ["unit"]=0
+ }
+ },
+ [2323]={
+ ["next_chapter"]=2324,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=127887,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=23020,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19589,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=230000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=24416,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=232,
+ ["unit"]=0
+ }
+ },
+ [2324]={
+ ["next_chapter"]=2325,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=128995,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=23219,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19789,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=232000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=24416,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=232,
+ ["unit"]=0
+ }
+ },
+ [2325]={
+ ["next_chapter"]=2326,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=130110,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=23420,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19989,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=234000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=24416,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=232,
+ ["unit"]=0
+ }
+ },
+ [2326]={
+ ["next_chapter"]=2327,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=131231,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=23622,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20189,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=236000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=24416,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=232,
+ ["unit"]=0
+ }
+ },
+ [2327]={
+ ["next_chapter"]=2328,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=132359,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=23825,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20389,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=238000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=24416,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=232,
+ ["unit"]=0
+ }
+ },
+ [2328]={
+ ["next_chapter"]=2329,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=133494,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=24029,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20589,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=240000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=24416,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=232,
+ ["unit"]=0
+ }
+ },
+ [2329]={
+ ["next_chapter"]=2330,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=134637,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=24235,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20789,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=242000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=24416,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=232,
+ ["unit"]=0
+ }
+ },
+ [2330]={
+ ["next_chapter"]=2331,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=135786,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=24441,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20989,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=244000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=26856,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=233,
+ ["unit"]=0
+ }
+ },
+ [2331]={
+ ["next_chapter"]=2332,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=136942,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=24650,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21189,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=246000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=26856,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=233,
+ ["unit"]=0
+ }
+ },
+ [2332]={
+ ["next_chapter"]=2333,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=138105,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=24859,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21389,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=248000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=26856,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=233,
+ ["unit"]=0
+ }
+ },
+ [2333]={
+ ["next_chapter"]=2334,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=139275,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=25070,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21589,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=250000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=26856,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=233,
+ ["unit"]=0
+ }
+ },
+ [2334]={
+ ["next_chapter"]=2335,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=140452,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=25281,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21789,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=253000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=26856,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=233,
+ ["unit"]=0
+ }
+ },
+ [2335]={
+ ["next_chapter"]=2336,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=141636,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=25495,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21989,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=256000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=26856,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=233,
+ ["unit"]=0
+ }
+ },
+ [2336]={
+ ["next_chapter"]=2337,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=142828,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=25709,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22189,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=259000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=26856,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=233,
+ ["unit"]=0
+ }
+ },
+ [2337]={
+ ["next_chapter"]=2338,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=144026,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=25925,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22389,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=262000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=26856,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=233,
+ ["unit"]=0
+ }
+ },
+ [2338]={
+ ["next_chapter"]=2339,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=145232,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=26142,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22589,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=265000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=26856,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=233,
+ ["unit"]=0
+ }
+ },
+ [2339]={
+ ["next_chapter"]=2340,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=146445,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=26360,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22789,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=268000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=26856,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=233,
+ ["unit"]=0
+ }
+ },
+ [2340]={
+ ["next_chapter"]=2341,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=147665,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=26580,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22989,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=271000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=29566,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=234,
+ ["unit"]=0
+ }
+ },
+ [2341]={
+ ["next_chapter"]=2342,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=148892,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=26800,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23189,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=274000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=29566,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=234,
+ ["unit"]=0
+ }
+ },
+ [2342]={
+ ["next_chapter"]=2343,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150126,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=27023,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23389,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=277000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=29566,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=234,
+ ["unit"]=0
+ }
+ },
+ [2343]={
+ ["next_chapter"]=2344,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=151368,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=27246,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23589,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=280000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=29566,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=234,
+ ["unit"]=0
+ }
+ },
+ [2344]={
+ ["next_chapter"]=2345,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=152616,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=27471,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23789,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=283000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=29566,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=234,
+ ["unit"]=0
+ }
+ },
+ [2345]={
+ ["next_chapter"]=2346,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=153872,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=27697,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23989,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=286000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=29566,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=234,
+ ["unit"]=0
+ }
+ },
+ [2346]={
+ ["next_chapter"]=2347,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=155136,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=27924,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24189,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=289000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=29566,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=234,
+ ["unit"]=0
+ }
+ },
+ [2347]={
+ ["next_chapter"]=2348,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=156407,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=28153,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24389,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=292000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=29566,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=234,
+ ["unit"]=0
+ }
+ },
+ [2348]={
+ ["next_chapter"]=2349,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=157685,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=28383,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24589,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=295000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=29566,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=234,
+ ["unit"]=0
+ }
+ },
+ [2349]={
+ ["next_chapter"]=2350,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=158970,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=28615,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24789,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=298000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=29566,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=234,
+ ["unit"]=0
+ }
+ },
+ [2350]={
+ ["next_chapter"]=2351,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=160263,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=28847,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25089,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=301000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=32576,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=235,
+ ["unit"]=0
+ }
+ },
+ [2351]={
+ ["next_chapter"]=2352,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=161563,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=29081,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25389,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=304000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=32576,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=235,
+ ["unit"]=0
+ }
+ },
+ [2352]={
+ ["next_chapter"]=2353,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=162871,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=29317,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25689,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=307000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=32576,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=235,
+ ["unit"]=0
+ }
+ },
+ [2353]={
+ ["next_chapter"]=2354,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=164186,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=29553,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25989,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=310000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=32576,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=235,
+ ["unit"]=0
+ }
+ },
+ [2354]={
+ ["next_chapter"]=2355,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=165509,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=29792,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26289,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=313000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=32576,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=235,
+ ["unit"]=0
+ }
+ },
+ [2355]={
+ ["next_chapter"]=2356,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=166839,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=30031,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26589,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=316000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=32576,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=235,
+ ["unit"]=0
+ }
+ },
+ [2356]={
+ ["next_chapter"]=2357,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=168176,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=30272,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=319000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=32576,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=235,
+ ["unit"]=0
+ }
+ },
+ [2357]={
+ ["next_chapter"]=2358,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=169522,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=30514,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27189,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=322000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=32576,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=235,
+ ["unit"]=0
+ }
+ },
+ [2358]={
+ ["next_chapter"]=2359,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=170874,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=30757,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27489,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=325000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=32576,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=235,
+ ["unit"]=0
+ }
+ },
+ [2359]={
+ ["next_chapter"]=2360,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=172234,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=31002,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27789,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=328000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=32576,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=235,
+ ["unit"]=0
+ }
+ },
+ [2360]={
+ ["next_chapter"]=2361,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=173602,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=31248,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28089,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=331000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=35886,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=236,
+ ["unit"]=0
+ }
+ },
+ [2361]={
+ ["next_chapter"]=2362,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=174978,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=31496,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28389,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=334000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=35886,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=236,
+ ["unit"]=0
+ }
+ },
+ [2362]={
+ ["next_chapter"]=2363,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=176361,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=31745,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28689,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=337000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=35886,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=236,
+ ["unit"]=0
+ }
+ },
+ [2363]={
+ ["next_chapter"]=2364,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=177752,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=31995,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28989,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=340000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=35886,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=236,
+ ["unit"]=0
+ }
+ },
+ [2364]={
+ ["next_chapter"]=2365,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=179150,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=32247,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29289,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=343000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=35886,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=236,
+ ["unit"]=0
+ }
+ },
+ [2365]={
+ ["next_chapter"]=2366,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=180556,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=32500,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29589,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=346000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=35886,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=236,
+ ["unit"]=0
+ }
+ },
+ [2366]={
+ ["next_chapter"]=2367,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=181970,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=32755,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=349000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=35886,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=236,
+ ["unit"]=0
+ }
+ },
+ [2367]={
+ ["next_chapter"]=2368,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=183392,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=33011,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30189,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=352000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=35886,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=236,
+ ["unit"]=0
+ }
+ },
+ [2368]={
+ ["next_chapter"]=2369,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=184822,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=33268,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30489,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=356000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=35886,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=236,
+ ["unit"]=0
+ }
+ },
+ [2369]={
+ ["next_chapter"]=2370,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=186259,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=33527,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30789,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=360000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=35886,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=236,
+ ["unit"]=0
+ }
+ },
+ [2370]={
+ ["next_chapter"]=2371,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=187704,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=33787,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31089,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=364000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=39526,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=237,
+ ["unit"]=0
+ }
+ },
+ [2371]={
+ ["next_chapter"]=2372,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=189157,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=34048,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31389,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=368000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=39526,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=237,
+ ["unit"]=0
+ }
+ },
+ [2372]={
+ ["next_chapter"]=2373,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=190617,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=34311,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31689,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=372000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=39526,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=237,
+ ["unit"]=0
+ }
+ },
+ [2373]={
+ ["next_chapter"]=2374,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=192086,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=34575,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31989,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=376000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=39526,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=237,
+ ["unit"]=0
+ }
+ },
+ [2374]={
+ ["next_chapter"]=2375,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=193562,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=34841,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32289,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=380000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=39526,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=237,
+ ["unit"]=0
+ }
+ },
+ [2375]={
+ ["next_chapter"]=2376,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=195047,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=35108,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32589,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=384000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=39526,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=237,
+ ["unit"]=0
+ }
+ },
+ [2376]={
+ ["next_chapter"]=2377,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=196539,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=35377,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=388000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=39526,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=237,
+ ["unit"]=0
+ }
+ },
+ [2377]={
+ ["next_chapter"]=2378,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=198040,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=35647,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33189,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=392000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=39526,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=237,
+ ["unit"]=0
+ }
+ },
+ [2378]={
+ ["next_chapter"]=2379,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=199548,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=35919,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33489,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=396000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=39526,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=237,
+ ["unit"]=0
+ }
+ },
+ [2379]={
+ ["next_chapter"]=2380,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=201064,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=36192,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=400000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=39526,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=237,
+ ["unit"]=0
+ }
+ },
+ [2380]={
+ ["next_chapter"]=2381,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=202588,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=36466,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34289,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=404000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=43566,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=238,
+ ["unit"]=0
+ }
+ },
+ [2381]={
+ ["next_chapter"]=2382,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=204121,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=36742,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34689,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=408000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=43566,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=238,
+ ["unit"]=0
+ }
+ },
+ [2382]={
+ ["next_chapter"]=2383,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=205661,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=37019,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35089,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=412000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=43566,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=238,
+ ["unit"]=0
+ }
+ },
+ [2383]={
+ ["next_chapter"]=2384,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=207210,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=37298,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35489,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=416000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=43566,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=238,
+ ["unit"]=0
+ }
+ },
+ [2384]={
+ ["next_chapter"]=2385,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=208766,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=37578,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=420000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=43566,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=238,
+ ["unit"]=0
+ }
+ },
+ [2385]={
+ ["next_chapter"]=2386,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=210331,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=37860,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36289,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=424000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=43566,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=238,
+ ["unit"]=0
+ }
+ },
+ [2386]={
+ ["next_chapter"]=2387,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=211904,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=38143,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36689,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=428000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=43566,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=238,
+ ["unit"]=0
+ }
+ },
+ [2387]={
+ ["next_chapter"]=2388,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=213485,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=38427,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37089,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=432000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=43566,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=238,
+ ["unit"]=0
+ }
+ },
+ [2388]={
+ ["next_chapter"]=2389,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=215074,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=38713,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37489,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=436000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=43566,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=238,
+ ["unit"]=0
+ }
+ },
+ [2389]={
+ ["next_chapter"]=2390,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=216672,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=39001,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=440000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=43566,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=238,
+ ["unit"]=0
+ }
+ },
+ [2390]={
+ ["next_chapter"]=2391,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=218277,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=39290,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=38289,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=444000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=48006,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=239,
+ ["unit"]=0
+ }
+ },
+ [2391]={
+ ["next_chapter"]=2392,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=219891,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=39580,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=38689,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=448000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=48006,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=239,
+ ["unit"]=0
+ }
+ },
+ [2392]={
+ ["next_chapter"]=2393,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=221514,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=39872,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39089,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=452000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=48006,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=239,
+ ["unit"]=0
+ }
+ },
+ [2393]={
+ ["next_chapter"]=2394,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=223144,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=40166,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39489,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=457000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=48006,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=239,
+ ["unit"]=0
+ }
+ },
+ [2394]={
+ ["next_chapter"]=2395,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=224783,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=40461,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=462000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=48006,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=239,
+ ["unit"]=0
+ }
+ },
+ [2395]={
+ ["next_chapter"]=2396,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=226430,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=40757,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=40289,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=467000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=48006,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=239,
+ ["unit"]=0
+ }
+ },
+ [2396]={
+ ["next_chapter"]=2397,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=228086,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=41055,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=40689,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=472000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=48006,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=239,
+ ["unit"]=0
+ }
+ },
+ [2397]={
+ ["next_chapter"]=2398,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=229750,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=41355,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41089,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=477000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=48006,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=239,
+ ["unit"]=0
+ }
+ },
+ [2398]={
+ ["next_chapter"]=2399,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=231422,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=41656,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41489,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=482000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=48006,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=239,
+ ["unit"]=0
+ }
+ },
+ [2399]={
+ ["next_chapter"]=2400,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=233103,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=41959,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=487000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=48006,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=239,
+ ["unit"]=0
+ }
+ },
+ [2400]={
+ ["next_chapter"]=2401,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=234792,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=42263,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=42289,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=492000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=52926,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=240,
+ ["unit"]=0
+ }
+ },
+ [2401]={
+ ["next_chapter"]=2402,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=236490,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=42568,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=42689,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=497000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=52926,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=240,
+ ["unit"]=0
+ }
+ },
+ [2402]={
+ ["next_chapter"]=2403,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=238196,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=42875,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=43189,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=502000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=52926,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=240,
+ ["unit"]=0
+ }
+ },
+ [2403]={
+ ["next_chapter"]=2404,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=239911,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=43184,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=43689,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=507000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=52926,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=240,
+ ["unit"]=0
+ }
+ },
+ [2404]={
+ ["next_chapter"]=2405,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=241634,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=43494,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=44189,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=512000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=52926,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=240,
+ ["unit"]=0
+ }
+ },
+ [2405]={
+ ["next_chapter"]=2406,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=243365,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=43806,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=44689,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=517000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=52926,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=240,
+ ["unit"]=0
+ }
+ },
+ [2406]={
+ ["next_chapter"]=2407,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=245106,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=44119,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=45189,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=522000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=52926,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=240,
+ ["unit"]=0
+ }
+ },
+ [2407]={
+ ["next_chapter"]=2408,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=246855,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=44434,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=45689,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=527000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=52926,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=240,
+ ["unit"]=0
+ }
+ },
+ [2408]={
+ ["next_chapter"]=2409,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=248612,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=44750,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=46189,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=532000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=52926,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=240,
+ ["unit"]=0
+ }
+ },
+ [2409]={
+ ["next_chapter"]=2410,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=250378,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=45068,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=46689,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=537000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=52926,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=240,
+ ["unit"]=0
+ }
+ },
+ [2410]={
+ ["next_chapter"]=2411,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=252153,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=45388,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=47189,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=542000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=58346,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=241,
+ ["unit"]=0
+ }
+ },
+ [2411]={
+ ["next_chapter"]=2412,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=253937,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=45709,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=47689,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=547000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=58346,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=241,
+ ["unit"]=0
+ }
+ },
+ [2412]={
+ ["next_chapter"]=2413,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=255729,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=46031,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=48189,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=552000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=58346,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=241,
+ ["unit"]=0
+ }
+ },
+ [2413]={
+ ["next_chapter"]=2414,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=257530,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=46355,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=48689,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=558000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=58346,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=241,
+ ["unit"]=0
+ }
+ },
+ [2414]={
+ ["next_chapter"]=2415,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=259340,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=46681,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=49189,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=564000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=58346,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=241,
+ ["unit"]=0
+ }
+ },
+ [2415]={
+ ["next_chapter"]=2416,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=261158,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=47008,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=49689,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=570000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=58346,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=241,
+ ["unit"]=0
+ }
+ },
+ [2416]={
+ ["next_chapter"]=2417,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=262985,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=47337,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=50189,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=576000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=58346,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=241,
+ ["unit"]=0
+ }
+ },
+ [2417]={
+ ["next_chapter"]=2418,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=264821,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=47668,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=50689,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=582000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=58346,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=241,
+ ["unit"]=0
+ }
+ },
+ [2418]={
+ ["next_chapter"]=2419,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=266666,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=48000,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=51189,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=588000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=58346,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=241,
+ ["unit"]=0
+ }
+ },
+ [2419]={
+ ["next_chapter"]=2420,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=268520,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=48334,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=51689,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=594000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=58346,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=241,
+ ["unit"]=0
+ }
+ },
+ [2420]={
+ ["next_chapter"]=2421,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=270382,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=48669,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=52289,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=600000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=64346,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=242,
+ ["unit"]=0
+ }
+ },
+ [2421]={
+ ["next_chapter"]=2422,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=272254,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=49006,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=52889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=606000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=64346,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=242,
+ ["unit"]=0
+ }
+ },
+ [2422]={
+ ["next_chapter"]=2423,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=274134,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=49344,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=53489,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=612000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=64346,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=242,
+ ["unit"]=0
+ }
+ },
+ [2423]={
+ ["next_chapter"]=2424,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=276024,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=49684,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=54089,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=618000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=64346,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=242,
+ ["unit"]=0
+ }
+ },
+ [2424]={
+ ["next_chapter"]=2425,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=277922,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=50026,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=54689,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=624000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=64346,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=242,
+ ["unit"]=0
+ }
+ },
+ [2425]={
+ ["next_chapter"]=2426,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=279829,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=50369,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=55289,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=630000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=64346,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=242,
+ ["unit"]=0
+ }
+ },
+ [2426]={
+ ["next_chapter"]=2427,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=281745,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=50714,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=55889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=636000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=64346,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=242,
+ ["unit"]=0
+ }
+ },
+ [2427]={
+ ["next_chapter"]=2428,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=283671,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=51061,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=56489,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=642000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=64346,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=242,
+ ["unit"]=0
+ }
+ },
+ [2428]={
+ ["next_chapter"]=2429,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=285605,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=51409,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=57089,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=648000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=64346,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=242,
+ ["unit"]=0
+ }
+ },
+ [2429]={
+ ["next_chapter"]=2430,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=287548,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=51759,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=57689,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=654000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=64346,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=242,
+ ["unit"]=0
+ }
+ },
+ [2430]={
+ ["next_chapter"]=2431,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=289501,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=52110,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=58289,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=661000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=70956,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=243,
+ ["unit"]=0
+ }
+ },
+ [2431]={
+ ["next_chapter"]=2432,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=291462,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=52463,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=58889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=668000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=70956,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=243,
+ ["unit"]=0
+ }
+ },
+ [2432]={
+ ["next_chapter"]=2433,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=293433,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=52818,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=59489,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=675000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=70956,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=243,
+ ["unit"]=0
+ }
+ },
+ [2433]={
+ ["next_chapter"]=2434,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=295413,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=53174,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=60089,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=682000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=70956,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=243,
+ ["unit"]=0
+ }
+ },
+ [2434]={
+ ["next_chapter"]=2435,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=297402,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=53532,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=60689,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=689000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=70956,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=243,
+ ["unit"]=0
+ }
+ },
+ [2435]={
+ ["next_chapter"]=2436,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=299400,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=53892,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=61289,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=696000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=70956,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=243,
+ ["unit"]=0
+ }
+ },
+ [2436]={
+ ["next_chapter"]=2437,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=301407,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=54253,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=61989,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=703000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=70956,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=243,
+ ["unit"]=0
+ }
+ },
+ [2437]={
+ ["next_chapter"]=2438,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=303424,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=54616,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=62689,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=710000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=70956,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=243,
+ ["unit"]=0
+ }
+ },
+ [2438]={
+ ["next_chapter"]=2439,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=305450,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=54981,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=63389,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=717000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=70956,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=243,
+ ["unit"]=0
+ }
+ },
+ [2439]={
+ ["next_chapter"]=2440,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=307485,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=55347,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=64089,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=724000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=70956,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=243,
+ ["unit"]=0
+ }
+ },
+ [2440]={
+ ["next_chapter"]=2441,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=309529,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=55715,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=64789,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=731000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=78266,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=244,
+ ["unit"]=0
+ }
+ },
+ [2441]={
+ ["next_chapter"]=2442,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=311583,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=56085,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=65489,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=738000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=78266,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=244,
+ ["unit"]=0
+ }
+ },
+ [2442]={
+ ["next_chapter"]=2443,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=313646,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=56456,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=66189,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=745000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=78266,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=244,
+ ["unit"]=0
+ }
+ },
+ [2443]={
+ ["next_chapter"]=2444,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=315718,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=56829,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=66889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=752000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=78266,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=244,
+ ["unit"]=0
+ }
+ },
+ [2444]={
+ ["next_chapter"]=2445,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=317800,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=57204,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=67589,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=760000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=78266,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=244,
+ ["unit"]=0
+ }
+ },
+ [2445]={
+ ["next_chapter"]=2446,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=319891,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=57580,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=68289,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=768000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=78266,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=244,
+ ["unit"]=0
+ }
+ },
+ [2446]={
+ ["next_chapter"]=2447,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=321992,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=57959,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=68989,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=776000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=78266,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=244,
+ ["unit"]=0
+ }
+ },
+ [2447]={
+ ["next_chapter"]=2448,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=324102,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=58338,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=69689,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=784000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=78266,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=244,
+ ["unit"]=0
+ }
+ },
+ [2448]={
+ ["next_chapter"]=2449,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=326222,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=58720,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=70389,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=792000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=78266,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=244,
+ ["unit"]=0
+ }
+ },
+ [2449]={
+ ["next_chapter"]=2450,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=328350,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=59103,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=71189,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=800000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=78266,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=244,
+ ["unit"]=0
+ }
+ },
+ [2450]={
+ ["next_chapter"]=2451,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=330489,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=59488,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=71989,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=808000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=86346,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=245,
+ ["unit"]=0
+ }
+ },
+ [2451]={
+ ["next_chapter"]=2452,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=332637,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=59875,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=72789,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=816000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=86346,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=245,
+ ["unit"]=0
+ }
+ },
+ [2452]={
+ ["next_chapter"]=2453,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=334795,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=60263,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=73589,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=824000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=86346,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=245,
+ ["unit"]=0
+ }
+ },
+ [2453]={
+ ["next_chapter"]=2454,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=336962,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=60653,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=74389,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=832000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=86346,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=245,
+ ["unit"]=0
+ }
+ },
+ [2454]={
+ ["next_chapter"]=2455,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=339138,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=61045,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=75189,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=840000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=86346,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=245,
+ ["unit"]=0
+ }
+ },
+ [2455]={
+ ["next_chapter"]=2456,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=341325,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=61438,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=75989,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=848000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=86346,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=245,
+ ["unit"]=0
+ }
+ },
+ [2456]={
+ ["next_chapter"]=2457,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=343521,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=61834,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=76789,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=856000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=86346,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=245,
+ ["unit"]=0
+ }
+ },
+ [2457]={
+ ["next_chapter"]=2458,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=345726,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=62231,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=77589,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=865000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=86346,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=245,
+ ["unit"]=0
+ }
+ },
+ [2458]={
+ ["next_chapter"]=2459,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=347942,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=62630,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=78389,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=874000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=86346,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=245,
+ ["unit"]=0
+ }
+ },
+ [2459]={
+ ["next_chapter"]=2460,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350167,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=63030,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=79189,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=883000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=86346,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=245,
+ ["unit"]=0
+ }
+ },
+ [2460]={
+ ["next_chapter"]=2461,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=352401,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=63432,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=79989,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=892000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=95266,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=246,
+ ["unit"]=0
+ }
+ },
+ [2461]={
+ ["next_chapter"]=2462,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=354646,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=63836,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=900000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=80889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=901000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=95266,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=246,
+ ["unit"]=0
+ }
+ },
+ [2462]={
+ ["next_chapter"]=2463,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=356900,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=64242,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=900000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=81789,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=910000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=95266,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=246,
+ ["unit"]=0
+ }
+ },
+ [2463]={
+ ["next_chapter"]=2464,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=359164,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=64650,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=900000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=82689,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=919000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=95266,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=246,
+ ["unit"]=0
+ }
+ },
+ [2464]={
+ ["next_chapter"]=2465,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=361438,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=65059,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=900000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=83589,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=928000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=95266,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=246,
+ ["unit"]=0
+ }
+ },
+ [2465]={
+ ["next_chapter"]=2466,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=363721,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=65470,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=900000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=84489,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=937000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=95266,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=246,
+ ["unit"]=0
+ }
+ },
+ [2466]={
+ ["next_chapter"]=2467,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=366015,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=65883,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=900000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=85389,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=946000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=95266,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=246,
+ ["unit"]=0
+ }
+ },
+ [2467]={
+ ["next_chapter"]=2468,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=368318,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=66297,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=900000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=86289,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=955000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=95266,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=246,
+ ["unit"]=0
+ }
+ },
+ [2468]={
+ ["next_chapter"]=2469,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=370631,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=66714,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=900000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=87189,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=965000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=95266,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=246,
+ ["unit"]=0
+ }
+ },
+ [2469]={
+ ["next_chapter"]=2470,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=372955,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=67132,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=900000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=88089,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=975000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=95266,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=246,
+ ["unit"]=0
+ }
+ },
+ [2470]={
+ ["next_chapter"]=2471,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=375288,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=67552,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=900000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=88989,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=985000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=105116,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=247,
+ ["unit"]=0
+ }
+ },
+ [2471]={
+ ["next_chapter"]=2472,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=377631,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=67973,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=900000,
+ ["unit"]=2
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=89889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=995000,
+ ["unit"]=2
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=105116,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=247,
+ ["unit"]=0
+ }
+ },
+ [2472]={
+ ["next_chapter"]=2473,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=379983,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=68397,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=90889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1005,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=105116,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=247,
+ ["unit"]=0
+ }
+ },
+ [2473]={
+ ["next_chapter"]=2474,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=382346,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=68822,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=91889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1020,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=105116,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=247,
+ ["unit"]=0
+ }
+ },
+ [2474]={
+ ["next_chapter"]=2475,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=384719,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=69249,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=92889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1030,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=105116,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=247,
+ ["unit"]=0
+ }
+ },
+ [2475]={
+ ["next_chapter"]=2476,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=387102,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=69678,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=93889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1040,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=105116,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=247,
+ ["unit"]=0
+ }
+ },
+ [2476]={
+ ["next_chapter"]=2477,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=389495,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=70109,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=94889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1050,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=105116,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=247,
+ ["unit"]=0
+ }
+ },
+ [2477]={
+ ["next_chapter"]=2478,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=391899,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=70542,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=95889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1060,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=105116,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=247,
+ ["unit"]=0
+ }
+ },
+ [2478]={
+ ["next_chapter"]=2479,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=394312,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=70976,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=96889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1070,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=105116,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=247,
+ ["unit"]=0
+ }
+ },
+ [2479]={
+ ["next_chapter"]=2480,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=396735,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=71412,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=97889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1080,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=105116,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=247,
+ ["unit"]=0
+ }
+ },
+ [2480]={
+ ["next_chapter"]=2481,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=399169,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=71850,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=98889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1090,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=116016,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=248,
+ ["unit"]=0
+ }
+ },
+ [2481]={
+ ["next_chapter"]=2482,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=401612,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=72290,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=99889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1100,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=116016,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=248,
+ ["unit"]=0
+ }
+ },
+ [2482]={
+ ["next_chapter"]=2483,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=404066,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=72732,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=100889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1110,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=116016,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=248,
+ ["unit"]=0
+ }
+ },
+ [2483]={
+ ["next_chapter"]=2484,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=406530,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=73175,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=101889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1120,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=116016,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=248,
+ ["unit"]=0
+ }
+ },
+ [2484]={
+ ["next_chapter"]=2485,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=409004,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=73621,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=102889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1130,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=116016,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=248,
+ ["unit"]=0
+ }
+ },
+ [2485]={
+ ["next_chapter"]=2486,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=411489,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=74068,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=103889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1140,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=116016,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=248,
+ ["unit"]=0
+ }
+ },
+ [2486]={
+ ["next_chapter"]=2487,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=413984,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=74517,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=104889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1150,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=116016,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=248,
+ ["unit"]=0
+ }
+ },
+ [2487]={
+ ["next_chapter"]=2488,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=416489,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=74968,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=105889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1160,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=116016,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=248,
+ ["unit"]=0
+ }
+ },
+ [2488]={
+ ["next_chapter"]=2489,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=419004,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=75421,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=106889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1170,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=116016,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=248,
+ ["unit"]=0
+ }
+ },
+ [2489]={
+ ["next_chapter"]=2490,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=421530,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=75875,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=107889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1180,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=116016,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=248,
+ ["unit"]=0
+ }
+ },
+ [2490]={
+ ["next_chapter"]=2491,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=424066,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=76332,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=108889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1190,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=127916,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=249,
+ ["unit"]=0
+ }
+ },
+ [2491]={
+ ["next_chapter"]=2492,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=426612,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=76790,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=109889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1200,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=127916,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=249,
+ ["unit"]=0
+ }
+ },
+ [2492]={
+ ["next_chapter"]=2493,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=429169,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=77250,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=110889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1210,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=127916,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=249,
+ ["unit"]=0
+ }
+ },
+ [2493]={
+ ["next_chapter"]=2494,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=431736,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=77712,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=111889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1220,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=127916,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=249,
+ ["unit"]=0
+ }
+ },
+ [2494]={
+ ["next_chapter"]=2495,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=434314,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=78176,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=112889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1230,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=127916,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=249,
+ ["unit"]=0
+ }
+ },
+ [2495]={
+ ["next_chapter"]=2496,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=436902,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=78642,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=113889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1240,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=127916,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=249,
+ ["unit"]=0
+ }
+ },
+ [2496]={
+ ["next_chapter"]=2497,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=439500,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=79110,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=114889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1250,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=127916,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=249,
+ ["unit"]=0
+ }
+ },
+ [2497]={
+ ["next_chapter"]=2498,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=442110,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=79580,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=115889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1260,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=127916,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=249,
+ ["unit"]=0
+ }
+ },
+ [2498]={
+ ["next_chapter"]=2499,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=444729,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=80051,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=116889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1270,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=127916,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=249,
+ ["unit"]=0
+ }
+ },
+ [2499]={
+ ["next_chapter"]=2500,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=447359,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=80525,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=117889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1280,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=127916,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=249,
+ ["unit"]=0
+ }
+ },
+ [2500]={
+ ["next_chapter"]=2501,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=450000,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=85500,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=118889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1290,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=140816,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=250,
+ ["unit"]=0
+ }
+ },
+ [2501]={
+ ["next_chapter"]=2502,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=450000,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=85500,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=119889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1300,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=140816,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=250,
+ ["unit"]=0
+ }
+ },
+ [2502]={
+ ["next_chapter"]=2503,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=450001,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=85500,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=120889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1310,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=140816,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=250,
+ ["unit"]=0
+ }
+ },
+ [2503]={
+ ["next_chapter"]=2504,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=450002,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=85500,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=121889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1320,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=140816,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=250,
+ ["unit"]=0
+ }
+ },
+ [2504]={
+ ["next_chapter"]=2505,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=450005,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=85501,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=122889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1330,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=140816,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=250,
+ ["unit"]=0
+ }
+ },
+ [2505]={
+ ["next_chapter"]=2506,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=450010,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=85502,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=123889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1340,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=140816,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=250,
+ ["unit"]=0
+ }
+ },
+ [2506]={
+ ["next_chapter"]=2507,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=450017,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=85503,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=124889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1350,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=140816,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=250,
+ ["unit"]=0
+ }
+ },
+ [2507]={
+ ["next_chapter"]=2508,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=450026,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=85505,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=125889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1360,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=140816,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=250,
+ ["unit"]=0
+ }
+ },
+ [2508]={
+ ["next_chapter"]=2509,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=450039,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=85507,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=126889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1370,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=140816,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=250,
+ ["unit"]=0
+ }
+ },
+ [2509]={
+ ["next_chapter"]=2510,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=450056,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=85511,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=127889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1380,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=140816,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=250,
+ ["unit"]=0
+ }
+ },
+ [2510]={
+ ["next_chapter"]=2511,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=450076,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=85515,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=128889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1390,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=154716,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=251,
+ ["unit"]=0
+ }
+ },
+ [2511]={
+ ["next_chapter"]=2512,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=450102,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=85519,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=129889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1400,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=154716,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=251,
+ ["unit"]=0
+ }
+ },
+ [2512]={
+ ["next_chapter"]=2513,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=450132,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=85525,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=130889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1410,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=154716,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=251,
+ ["unit"]=0
+ }
+ },
+ [2513]={
+ ["next_chapter"]=2514,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=450168,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=85532,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=131889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1420,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=154716,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=251,
+ ["unit"]=0
+ }
+ },
+ [2514]={
+ ["next_chapter"]=2515,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=450210,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=85540,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=132889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1430,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=154716,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=251,
+ ["unit"]=0
+ }
+ },
+ [2515]={
+ ["next_chapter"]=2516,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=450258,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=85549,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=133889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1440,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=154716,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=251,
+ ["unit"]=0
+ }
+ },
+ [2516]={
+ ["next_chapter"]=2517,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=450313,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=85559,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=134889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1450,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=154716,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=251,
+ ["unit"]=0
+ }
+ },
+ [2517]={
+ ["next_chapter"]=2518,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=450375,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=85571,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=135889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1460,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=154716,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=251,
+ ["unit"]=0
+ }
+ },
+ [2518]={
+ ["next_chapter"]=2519,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=450446,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=85585,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=136889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1470,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=154716,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=251,
+ ["unit"]=0
+ }
+ },
+ [2519]={
+ ["next_chapter"]=2520,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=450524,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=85600,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=137889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1480,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=154716,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=251,
+ ["unit"]=0
+ }
+ },
+ [2520]={
+ ["next_chapter"]=2521,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=450611,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=85616,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=138889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1490,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=169616,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=252,
+ ["unit"]=0
+ }
+ },
+ [2521]={
+ ["next_chapter"]=2522,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=450708,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=85634,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=139889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1500,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=169616,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=252,
+ ["unit"]=0
+ }
+ },
+ [2522]={
+ ["next_chapter"]=2523,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=450814,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=85655,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=140889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1520,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=169616,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=252,
+ ["unit"]=0
+ }
+ },
+ [2523]={
+ ["next_chapter"]=2524,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=450930,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=85677,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=141889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1540,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=169616,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=252,
+ ["unit"]=0
+ }
+ },
+ [2524]={
+ ["next_chapter"]=2525,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=451056,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=85701,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=142889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1560,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=169616,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=252,
+ ["unit"]=0
+ }
+ },
+ [2525]={
+ ["next_chapter"]=2526,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=451194,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=85727,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=143889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1580,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=169616,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=252,
+ ["unit"]=0
+ }
+ },
+ [2526]={
+ ["next_chapter"]=2527,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=451343,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=85755,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=144889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1600,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=169616,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=252,
+ ["unit"]=0
+ }
+ },
+ [2527]={
+ ["next_chapter"]=2528,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=451504,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=85786,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=145889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1620,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=169616,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=252,
+ ["unit"]=0
+ }
+ },
+ [2528]={
+ ["next_chapter"]=2529,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=451677,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=85819,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=146889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1640,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=169616,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=252,
+ ["unit"]=0
+ }
+ },
+ [2529]={
+ ["next_chapter"]=2530,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=451863,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=85854,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=147889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1660,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=169616,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=252,
+ ["unit"]=0
+ }
+ },
+ [2530]={
+ ["next_chapter"]=2531,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=452063,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=85892,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=148889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1680,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=186416,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=253,
+ ["unit"]=0
+ }
+ },
+ [2531]={
+ ["next_chapter"]=2532,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=452276,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=85932,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=149889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1700,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=186416,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=253,
+ ["unit"]=0
+ }
+ },
+ [2532]={
+ ["next_chapter"]=2533,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=452503,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=85976,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=150889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1720,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=186416,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=253,
+ ["unit"]=0
+ }
+ },
+ [2533]={
+ ["next_chapter"]=2534,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=452746,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=86022,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=151889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1740,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=186416,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=253,
+ ["unit"]=0
+ }
+ },
+ [2534]={
+ ["next_chapter"]=2535,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=453003,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=86071,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=152889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1760,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=186416,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=253,
+ ["unit"]=0
+ }
+ },
+ [2535]={
+ ["next_chapter"]=2536,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=453276,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=86122,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=153889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1780,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=186416,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=253,
+ ["unit"]=0
+ }
+ },
+ [2536]={
+ ["next_chapter"]=2537,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=453565,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=86177,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=154889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1800,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=186416,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=253,
+ ["unit"]=0
+ }
+ },
+ [2537]={
+ ["next_chapter"]=2538,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=453870,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=86235,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=155889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1820,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=186416,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=253,
+ ["unit"]=0
+ }
+ },
+ [2538]={
+ ["next_chapter"]=2539,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=454192,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=86297,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=156889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1840,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=186416,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=253,
+ ["unit"]=0
+ }
+ },
+ [2539]={
+ ["next_chapter"]=2540,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=454532,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=86361,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=157889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1860,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=186416,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=253,
+ ["unit"]=0
+ }
+ },
+ [2540]={
+ ["next_chapter"]=2541,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=454890,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=86429,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=158889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1880,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=205216,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=254,
+ ["unit"]=0
+ }
+ },
+ [2541]={
+ ["next_chapter"]=2542,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=455266,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=86500,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=159889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1900,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=205216,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=254,
+ ["unit"]=0
+ }
+ },
+ [2542]={
+ ["next_chapter"]=2543,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=455660,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=86575,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=160889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1920,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=205216,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=254,
+ ["unit"]=0
+ }
+ },
+ [2543]={
+ ["next_chapter"]=2544,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=456074,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=86654,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=161889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1940,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=205216,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=254,
+ ["unit"]=0
+ }
+ },
+ [2544]={
+ ["next_chapter"]=2545,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=456508,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=86737,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=162889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1960,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=205216,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=254,
+ ["unit"]=0
+ }
+ },
+ [2545]={
+ ["next_chapter"]=2546,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=456962,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=86823,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=163889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=1980,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=205216,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=254,
+ ["unit"]=0
+ }
+ },
+ [2546]={
+ ["next_chapter"]=2547,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=457436,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=86913,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=165889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=2000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=205216,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=254,
+ ["unit"]=0
+ }
+ },
+ [2547]={
+ ["next_chapter"]=2548,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=457932,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=87007,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=167889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=2020,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=205216,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=254,
+ ["unit"]=0
+ }
+ },
+ [2548]={
+ ["next_chapter"]=2549,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=458449,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=87105,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=169889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=2040,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=205216,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=254,
+ ["unit"]=0
+ }
+ },
+ [2549]={
+ ["next_chapter"]=2550,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=458988,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=87208,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=171889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=2060,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=205216,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=254,
+ ["unit"]=0
+ }
+ },
+ [2550]={
+ ["next_chapter"]=2551,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=459550,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=87315,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=173889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=2080,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=226016,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=255,
+ ["unit"]=0
+ }
+ },
+ [2551]={
+ ["next_chapter"]=2552,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=460135,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=87426,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=175889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=2100,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=226016,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=255,
+ ["unit"]=0
+ }
+ },
+ [2552]={
+ ["next_chapter"]=2553,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=460742,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=87541,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=177889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=2120,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=226016,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=255,
+ ["unit"]=0
+ }
+ },
+ [2553]={
+ ["next_chapter"]=2554,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=461374,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=87661,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=179889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=2140,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=226016,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=255,
+ ["unit"]=0
+ }
+ },
+ [2554]={
+ ["next_chapter"]=2555,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=462030,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=87786,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=181889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=2160,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=226016,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=255,
+ ["unit"]=0
+ }
+ },
+ [2555]={
+ ["next_chapter"]=2556,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=462711,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=87915,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=183889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=2180,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=226016,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=255,
+ ["unit"]=0
+ }
+ },
+ [2556]={
+ ["next_chapter"]=2557,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=463417,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=88049,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=185889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=2200,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=226016,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=255,
+ ["unit"]=0
+ }
+ },
+ [2557]={
+ ["next_chapter"]=2558,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=464149,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=88188,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=187889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=2220,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=226016,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=255,
+ ["unit"]=0
+ }
+ },
+ [2558]={
+ ["next_chapter"]=2559,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=464907,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=88332,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=189889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=2240,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=226016,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=255,
+ ["unit"]=0
+ }
+ },
+ [2559]={
+ ["next_chapter"]=2560,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=465691,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=88481,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=191889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=2260,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=226016,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=255,
+ ["unit"]=0
+ }
+ },
+ [2560]={
+ ["next_chapter"]=2561,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=466502,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=88635,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=193889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=2280,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=248816,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=256,
+ ["unit"]=0
+ }
+ },
+ [2561]={
+ ["next_chapter"]=2562,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=467341,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=88795,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=195889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=2300,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=248816,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=256,
+ ["unit"]=0
+ }
+ },
+ [2562]={
+ ["next_chapter"]=2563,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=468208,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=88960,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=197889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=2320,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=248816,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=256,
+ ["unit"]=0
+ }
+ },
+ [2563]={
+ ["next_chapter"]=2564,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=469104,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=89130,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=199889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=2340,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=248816,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=256,
+ ["unit"]=0
+ }
+ },
+ [2564]={
+ ["next_chapter"]=2565,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=470028,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=89305,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=201889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=2360,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=248816,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=256,
+ ["unit"]=0
+ }
+ },
+ [2565]={
+ ["next_chapter"]=2566,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=470981,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=89486,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=203889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=2380,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=248816,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=256,
+ ["unit"]=0
+ }
+ },
+ [2566]={
+ ["next_chapter"]=2567,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=471965,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=89673,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=205889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=2400,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=248816,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=256,
+ ["unit"]=0
+ }
+ },
+ [2567]={
+ ["next_chapter"]=2568,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=472978,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=89866,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=207889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=2420,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=248816,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=256,
+ ["unit"]=0
+ }
+ },
+ [2568]={
+ ["next_chapter"]=2569,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=474023,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=90064,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=209889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=2440,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=248816,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=256,
+ ["unit"]=0
+ }
+ },
+ [2569]={
+ ["next_chapter"]=2570,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=475098,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=90269,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=211889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=2460,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=248816,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=256,
+ ["unit"]=0
+ }
+ },
+ [2570]={
+ ["next_chapter"]=2571,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=476205,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=90479,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=213889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=2480,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=273616,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=257,
+ ["unit"]=0
+ }
+ },
+ [2571]={
+ ["next_chapter"]=2572,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=477344,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=90695,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=215889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=2500,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=273616,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=257,
+ ["unit"]=0
+ }
+ },
+ [2572]={
+ ["next_chapter"]=2573,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=478516,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=90918,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=217889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=2530,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=273616,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=257,
+ ["unit"]=0
+ }
+ },
+ [2573]={
+ ["next_chapter"]=2574,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=479721,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=91147,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=219889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=2560,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=273616,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=257,
+ ["unit"]=0
+ }
+ },
+ [2574]={
+ ["next_chapter"]=2575,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=480959,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=91382,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=221889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=2590,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=273616,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=257,
+ ["unit"]=0
+ }
+ },
+ [2575]={
+ ["next_chapter"]=2576,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=482231,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=91624,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=223889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=2620,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=273616,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=257,
+ ["unit"]=0
+ }
+ },
+ [2576]={
+ ["next_chapter"]=2577,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=483538,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=91872,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=225889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=2650,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=273616,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=257,
+ ["unit"]=0
+ }
+ },
+ [2577]={
+ ["next_chapter"]=2578,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=484879,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=92127,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=227889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=2680,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=273616,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=257,
+ ["unit"]=0
+ }
+ },
+ [2578]={
+ ["next_chapter"]=2579,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=486256,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=92389,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=229889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=2710,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=273616,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=257,
+ ["unit"]=0
+ }
+ },
+ [2579]={
+ ["next_chapter"]=2580,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=487668,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=92657,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=231889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=2740,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=273616,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=257,
+ ["unit"]=0
+ }
+ },
+ [2580]={
+ ["next_chapter"]=2581,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=489117,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=92932,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=233889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=2770,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=301316,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=258,
+ ["unit"]=0
+ }
+ },
+ [2581]={
+ ["next_chapter"]=2582,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=490602,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=93214,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=235889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=2800,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=301316,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=258,
+ ["unit"]=0
+ }
+ },
+ [2582]={
+ ["next_chapter"]=2583,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=492125,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=93504,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=237889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=2830,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=301316,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=258,
+ ["unit"]=0
+ }
+ },
+ [2583]={
+ ["next_chapter"]=2584,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=493685,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=93800,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=239889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=2860,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=301316,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=258,
+ ["unit"]=0
+ }
+ },
+ [2584]={
+ ["next_chapter"]=2585,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=495283,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=94104,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=241889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=2890,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=301316,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=258,
+ ["unit"]=0
+ }
+ },
+ [2585]={
+ ["next_chapter"]=2586,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=496919,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=94415,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=243889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=2920,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=301316,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=258,
+ ["unit"]=0
+ }
+ },
+ [2586]={
+ ["next_chapter"]=2587,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=498595,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=94733,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=245889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=2950,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=301316,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=258,
+ ["unit"]=0
+ }
+ },
+ [2587]={
+ ["next_chapter"]=2588,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=500310,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=95059,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=247889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=2980,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=301316,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=258,
+ ["unit"]=0
+ }
+ },
+ [2588]={
+ ["next_chapter"]=2589,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=502064,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=95392,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=250889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=3010,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=301316,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=258,
+ ["unit"]=0
+ }
+ },
+ [2589]={
+ ["next_chapter"]=2590,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=503860,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=95733,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=253889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=3040,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=301316,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=258,
+ ["unit"]=0
+ }
+ },
+ [2590]={
+ ["next_chapter"]=2591,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=505696,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=96082,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=256889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=3070,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=332016,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=259,
+ ["unit"]=0
+ }
+ },
+ [2591]={
+ ["next_chapter"]=2592,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=507573,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=96439,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=259889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=3100,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=332016,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=259,
+ ["unit"]=0
+ }
+ },
+ [2592]={
+ ["next_chapter"]=2593,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=509492,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=96803,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=262889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=3130,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=332016,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=259,
+ ["unit"]=0
+ }
+ },
+ [2593]={
+ ["next_chapter"]=2594,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=511453,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=97176,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=265889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=3160,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=332016,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=259,
+ ["unit"]=0
+ }
+ },
+ [2594]={
+ ["next_chapter"]=2595,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=513457,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=97557,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=268889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=3190,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=332016,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=259,
+ ["unit"]=0
+ }
+ },
+ [2595]={
+ ["next_chapter"]=2596,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=515503,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=97946,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=271889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=3220,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=332016,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=259,
+ ["unit"]=0
+ }
+ },
+ [2596]={
+ ["next_chapter"]=2597,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=517594,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=98343,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=274889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=3250,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=332016,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=259,
+ ["unit"]=0
+ }
+ },
+ [2597]={
+ ["next_chapter"]=2598,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=519728,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=98748,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=277889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=3280,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=332016,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=259,
+ ["unit"]=0
+ }
+ },
+ [2598]={
+ ["next_chapter"]=2599,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=521907,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=99162,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=280889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=3310,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=332016,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=259,
+ ["unit"]=0
+ }
+ },
+ [2599]={
+ ["next_chapter"]=2600,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=524131,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=99585,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=283889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=3340,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=332016,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=259,
+ ["unit"]=0
+ }
+ },
+ [2600]={
+ ["next_chapter"]=2601,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=526400,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=100016,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=286889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=3370,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=365716,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=260,
+ ["unit"]=0
+ }
+ },
+ [2601]={
+ ["next_chapter"]=2602,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=528715,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=100456,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=289889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=3400,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=365716,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=260,
+ ["unit"]=0
+ }
+ },
+ [2602]={
+ ["next_chapter"]=2603,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=531076,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=100904,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=292889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=3430,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=365716,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=260,
+ ["unit"]=0
+ }
+ },
+ [2603]={
+ ["next_chapter"]=2604,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=533484,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=101362,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=295889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=3460,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=365716,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=260,
+ ["unit"]=0
+ }
+ },
+ [2604]={
+ ["next_chapter"]=2605,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=535940,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=101829,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=298889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=3490,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=365716,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=260,
+ ["unit"]=0
+ }
+ },
+ [2605]={
+ ["next_chapter"]=2606,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=538443,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=102304,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=301889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=3520,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=365716,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=260,
+ ["unit"]=0
+ }
+ },
+ [2606]={
+ ["next_chapter"]=2607,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=540994,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=102789,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=304889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=3560,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=365716,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=260,
+ ["unit"]=0
+ }
+ },
+ [2607]={
+ ["next_chapter"]=2608,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=543593,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=103283,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=307889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=3600,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=365716,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=260,
+ ["unit"]=0
+ }
+ },
+ [2608]={
+ ["next_chapter"]=2609,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=546242,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=103786,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=310889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=3640,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=365716,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=260,
+ ["unit"]=0
+ }
+ },
+ [2609]={
+ ["next_chapter"]=2610,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=548940,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=104299,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=313889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=3680,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=365716,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=260,
+ ["unit"]=0
+ }
+ },
+ [2610]={
+ ["next_chapter"]=2611,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=551688,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=104821,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=316889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=3720,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=402916,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=261,
+ ["unit"]=0
+ }
+ },
+ [2611]={
+ ["next_chapter"]=2612,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=554487,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=105353,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=319889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=3760,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=402916,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=261,
+ ["unit"]=0
+ }
+ },
+ [2612]={
+ ["next_chapter"]=2613,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=557336,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=105894,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=322889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=3800,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=402916,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=261,
+ ["unit"]=0
+ }
+ },
+ [2613]={
+ ["next_chapter"]=2614,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=560237,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=106445,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=325889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=3840,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=402916,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=261,
+ ["unit"]=0
+ }
+ },
+ [2614]={
+ ["next_chapter"]=2615,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=563190,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=107006,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=328889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=3880,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=402916,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=261,
+ ["unit"]=0
+ }
+ },
+ [2615]={
+ ["next_chapter"]=2616,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=566195,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=107577,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=331889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=3920,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=402916,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=261,
+ ["unit"]=0
+ }
+ },
+ [2616]={
+ ["next_chapter"]=2617,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=569252,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=108158,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=334889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=3960,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=402916,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=261,
+ ["unit"]=0
+ }
+ },
+ [2617]={
+ ["next_chapter"]=2618,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=572363,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=108749,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=338889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=4000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=402916,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=261,
+ ["unit"]=0
+ }
+ },
+ [2618]={
+ ["next_chapter"]=2619,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=575528,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=109350,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=342889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=4040,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=402916,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=261,
+ ["unit"]=0
+ }
+ },
+ [2619]={
+ ["next_chapter"]=2620,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=578746,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=109962,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=346889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=4080,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=402916,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=261,
+ ["unit"]=0
+ }
+ },
+ [2620]={
+ ["next_chapter"]=2621,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=582019,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=110584,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=350889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=4120,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=444116,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=262,
+ ["unit"]=0
+ }
+ },
+ [2621]={
+ ["next_chapter"]=2622,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=585347,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=111216,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=354889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=4160,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=444116,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=262,
+ ["unit"]=0
+ }
+ },
+ [2622]={
+ ["next_chapter"]=2623,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=588731,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=111859,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=358889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=4200,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=444116,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=262,
+ ["unit"]=0
+ }
+ },
+ [2623]={
+ ["next_chapter"]=2624,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=592170,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=112512,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=362889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=4240,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=444116,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=262,
+ ["unit"]=0
+ }
+ },
+ [2624]={
+ ["next_chapter"]=2625,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=595666,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=113177,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=366889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=4280,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=444116,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=262,
+ ["unit"]=0
+ }
+ },
+ [2625]={
+ ["next_chapter"]=2626,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=599219,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=113852,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=370889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=4320,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=444116,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=262,
+ ["unit"]=0
+ }
+ },
+ [2626]={
+ ["next_chapter"]=2627,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=602829,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=114537,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=374889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=4360,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=444116,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=262,
+ ["unit"]=0
+ }
+ },
+ [2627]={
+ ["next_chapter"]=2628,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=606496,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=115234,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=378889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=4400,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=444116,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=262,
+ ["unit"]=0
+ }
+ },
+ [2628]={
+ ["next_chapter"]=2629,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=610222,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=115942,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=382889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=4440,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=444116,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=262,
+ ["unit"]=0
+ }
+ },
+ [2629]={
+ ["next_chapter"]=2630,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=614007,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=116661,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=386889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=4480,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=444116,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=262,
+ ["unit"]=0
+ }
+ },
+ [2630]={
+ ["next_chapter"]=2631,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=617851,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=117392,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=390889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=4520,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=489316,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=263,
+ ["unit"]=0
+ }
+ },
+ [2631]={
+ ["next_chapter"]=2632,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=621754,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=118133,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=394889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=4570,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=489316,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=263,
+ ["unit"]=0
+ }
+ },
+ [2632]={
+ ["next_chapter"]=2633,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=625718,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=118886,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=398889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=4620,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=489316,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=263,
+ ["unit"]=0
+ }
+ },
+ [2633]={
+ ["next_chapter"]=2634,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=629741,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=119651,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=402889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=4670,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=489316,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=263,
+ ["unit"]=0
+ }
+ },
+ [2634]={
+ ["next_chapter"]=2635,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=633826,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=120427,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=406889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=4720,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=489316,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=263,
+ ["unit"]=0
+ }
+ },
+ [2635]={
+ ["next_chapter"]=2636,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=637973,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=121215,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=410889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=4770,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=489316,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=263,
+ ["unit"]=0
+ }
+ },
+ [2636]={
+ ["next_chapter"]=2637,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=642181,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=122014,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=414889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=4820,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=489316,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=263,
+ ["unit"]=0
+ }
+ },
+ [2637]={
+ ["next_chapter"]=2638,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=646451,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=122826,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=418889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=4870,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=489316,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=263,
+ ["unit"]=0
+ }
+ },
+ [2638]={
+ ["next_chapter"]=2639,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=650785,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=123649,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=422889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=4920,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=489316,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=263,
+ ["unit"]=0
+ }
+ },
+ [2639]={
+ ["next_chapter"]=2640,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=655181,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=124484,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=426889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=4970,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=489316,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=263,
+ ["unit"]=0
+ }
+ },
+ [2640]={
+ ["next_chapter"]=2641,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=659642,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=125332,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=431889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=5020,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=539516,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=264,
+ ["unit"]=0
+ }
+ },
+ [2641]={
+ ["next_chapter"]=2642,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=664166,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=126192,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=436889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=5070,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=539516,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=264,
+ ["unit"]=0
+ }
+ },
+ [2642]={
+ ["next_chapter"]=2643,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=668755,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=127063,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=441889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=5120,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=539516,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=264,
+ ["unit"]=0
+ }
+ },
+ [2643]={
+ ["next_chapter"]=2644,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=673409,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=127948,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=446889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=5170,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=539516,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=264,
+ ["unit"]=0
+ }
+ },
+ [2644]={
+ ["next_chapter"]=2645,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=678129,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=128845,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=451889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=5220,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=539516,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=264,
+ ["unit"]=0
+ }
+ },
+ [2645]={
+ ["next_chapter"]=2646,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=682915,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=129754,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=456889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=5270,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=539516,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=264,
+ ["unit"]=0
+ }
+ },
+ [2646]={
+ ["next_chapter"]=2647,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=687767,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=130676,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=461889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=5320,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=539516,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=264,
+ ["unit"]=0
+ }
+ },
+ [2647]={
+ ["next_chapter"]=2648,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=692686,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=131610,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=466889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=5370,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=539516,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=264,
+ ["unit"]=0
+ }
+ },
+ [2648]={
+ ["next_chapter"]=2649,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=697673,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=132558,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=471889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=5420,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=539516,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=264,
+ ["unit"]=0
+ }
+ },
+ [2649]={
+ ["next_chapter"]=2650,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=702727,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=133518,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=476889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=5470,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=539516,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=264,
+ ["unit"]=0
+ }
+ },
+ [2650]={
+ ["next_chapter"]=2651,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=707850,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=134492,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=481889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=5520,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=594716,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=265,
+ ["unit"]=0
+ }
+ },
+ [2651]={
+ ["next_chapter"]=2652,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=713041,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=135478,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=486889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=5580,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=594716,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=265,
+ ["unit"]=0
+ }
+ },
+ [2652]={
+ ["next_chapter"]=2653,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=718302,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=136477,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=491889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=5640,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=594716,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=265,
+ ["unit"]=0
+ }
+ },
+ [2653]={
+ ["next_chapter"]=2654,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=723632,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=137490,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=496889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=5700,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=594716,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=265,
+ ["unit"]=0
+ }
+ },
+ [2654]={
+ ["next_chapter"]=2655,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=729033,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=138516,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=501889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=5760,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=594716,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=265,
+ ["unit"]=0
+ }
+ },
+ [2655]={
+ ["next_chapter"]=2656,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=734504,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=139556,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=506889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=5820,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=594716,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=265,
+ ["unit"]=0
+ }
+ },
+ [2656]={
+ ["next_chapter"]=2657,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=740046,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=140609,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=511889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=5880,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=594716,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=265,
+ ["unit"]=0
+ }
+ },
+ [2657]={
+ ["next_chapter"]=2658,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=745660,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=141675,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=516889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=5940,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=594716,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=265,
+ ["unit"]=0
+ }
+ },
+ [2658]={
+ ["next_chapter"]=2659,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=751345,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=142756,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=522889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=6000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=594716,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=265,
+ ["unit"]=0
+ }
+ },
+ [2659]={
+ ["next_chapter"]=2660,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=757103,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=143850,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=528889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=6060,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=594716,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=265,
+ ["unit"]=0
+ }
+ },
+ [2660]={
+ ["next_chapter"]=2661,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=762934,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=144958,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=534889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=6120,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=655916,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=266,
+ ["unit"]=0
+ }
+ },
+ [2661]={
+ ["next_chapter"]=2662,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=768839,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=146079,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=540889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=6180,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=655916,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=266,
+ ["unit"]=0
+ }
+ },
+ [2662]={
+ ["next_chapter"]=2663,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=774817,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=147215,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=546889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=6240,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=655916,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=266,
+ ["unit"]=0
+ }
+ },
+ [2663]={
+ ["next_chapter"]=2664,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=780869,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=148365,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=552889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=6300,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=655916,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=266,
+ ["unit"]=0
+ }
+ },
+ [2664]={
+ ["next_chapter"]=2665,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=786996,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=149529,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=558889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=6360,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=655916,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=266,
+ ["unit"]=0
+ }
+ },
+ [2665]={
+ ["next_chapter"]=2666,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=793198,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=150708,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=564889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=6420,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=655916,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=266,
+ ["unit"]=0
+ }
+ },
+ [2666]={
+ ["next_chapter"]=2667,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=799476,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=151900,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=570889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=6480,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=655916,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=266,
+ ["unit"]=0
+ }
+ },
+ [2667]={
+ ["next_chapter"]=2668,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=805830,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=153108,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=576889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=6540,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=655916,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=266,
+ ["unit"]=0
+ }
+ },
+ [2668]={
+ ["next_chapter"]=2669,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=812261,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=154330,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=582889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=6610,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=655916,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=266,
+ ["unit"]=0
+ }
+ },
+ [2669]={
+ ["next_chapter"]=2670,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=818768,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=155566,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=588889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=6680,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=655916,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=266,
+ ["unit"]=0
+ }
+ },
+ [2670]={
+ ["next_chapter"]=2671,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=825353,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=156817,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=594889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=6750,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=723416,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=267,
+ ["unit"]=0
+ }
+ },
+ [2671]={
+ ["next_chapter"]=2672,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=832016,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=158083,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=600889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=6820,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=723416,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=267,
+ ["unit"]=0
+ }
+ },
+ [2672]={
+ ["next_chapter"]=2673,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=838757,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=159364,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=606889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=6890,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=723416,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=267,
+ ["unit"]=0
+ }
+ },
+ [2673]={
+ ["next_chapter"]=2674,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=845578,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=160660,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=612889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=6960,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=723416,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=267,
+ ["unit"]=0
+ }
+ },
+ [2674]={
+ ["next_chapter"]=2675,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=852477,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=161971,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=619889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=7030,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=723416,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=267,
+ ["unit"]=0
+ }
+ },
+ [2675]={
+ ["next_chapter"]=2676,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=859456,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=163297,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=626889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=7100,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=723416,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=267,
+ ["unit"]=0
+ }
+ },
+ [2676]={
+ ["next_chapter"]=2677,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=866516,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=164638,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=633889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=7170,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=723416,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=267,
+ ["unit"]=0
+ }
+ },
+ [2677]={
+ ["next_chapter"]=2678,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=873656,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=165995,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=640889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=7240,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=723416,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=267,
+ ["unit"]=0
+ }
+ },
+ [2678]={
+ ["next_chapter"]=2679,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=880877,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=167367,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=647889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=7310,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=723416,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=267,
+ ["unit"]=0
+ }
+ },
+ [2679]={
+ ["next_chapter"]=2680,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=888180,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=168754,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=654889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=7380,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=723416,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=267,
+ ["unit"]=0
+ }
+ },
+ [2680]={
+ ["next_chapter"]=2681,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=895565,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=170157,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=661889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=7450,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=797916,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=268,
+ ["unit"]=0
+ }
+ },
+ [2681]={
+ ["next_chapter"]=2682,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=903032,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=171576,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=668889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=7520,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=797916,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=268,
+ ["unit"]=0
+ }
+ },
+ [2682]={
+ ["next_chapter"]=2683,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=910583,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=173011,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=675889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=7600,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=797916,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=268,
+ ["unit"]=0
+ }
+ },
+ [2683]={
+ ["next_chapter"]=2684,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=918216,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=174461,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=682889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=7680,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=797916,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=268,
+ ["unit"]=0
+ }
+ },
+ [2684]={
+ ["next_chapter"]=2685,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=925934,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=175927,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=689889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=7760,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=797916,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=268,
+ ["unit"]=0
+ }
+ },
+ [2685]={
+ ["next_chapter"]=2686,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=933736,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=177410,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=696889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=7840,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=797916,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=268,
+ ["unit"]=0
+ }
+ },
+ [2686]={
+ ["next_chapter"]=2687,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=941623,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=178908,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=703889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=7920,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=797916,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=268,
+ ["unit"]=0
+ }
+ },
+ [2687]={
+ ["next_chapter"]=2688,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=949595,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=180423,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=711889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=8000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=797916,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=268,
+ ["unit"]=0
+ }
+ },
+ [2688]={
+ ["next_chapter"]=2689,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=957653,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=181954,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=719889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=8080,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=797916,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=268,
+ ["unit"]=0
+ }
+ },
+ [2689]={
+ ["next_chapter"]=2690,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=965797,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=183501,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=727889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=8160,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=797916,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=268,
+ ["unit"]=0
+ }
+ },
+ [2690]={
+ ["next_chapter"]=2691,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=974028,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=185065,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=735889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=8240,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=880316,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=269,
+ ["unit"]=0
+ }
+ },
+ [2691]={
+ ["next_chapter"]=2692,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=982345,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=186646,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=743889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=8320,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=880316,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=269,
+ ["unit"]=0
+ }
+ },
+ [2692]={
+ ["next_chapter"]=2693,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=990751,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=188243,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=751889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=8400,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=880316,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=269,
+ ["unit"]=0
+ }
+ },
+ [2693]={
+ ["next_chapter"]=2694,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=999244,
+ ["unit"]=5
+ },
+ ["hp_coefficient"]={
+ ["value"]=189856,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=759889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=8480,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=880316,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=269,
+ ["unit"]=0
+ }
+ },
+ [2694]={
+ ["next_chapter"]=2695,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1008,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=191487,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=767889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=8560,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=880316,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=269,
+ ["unit"]=0
+ }
+ },
+ [2695]={
+ ["next_chapter"]=2696,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1016,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=193134,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=775889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=8650,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=880316,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=269,
+ ["unit"]=0
+ }
+ },
+ [2696]={
+ ["next_chapter"]=2697,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1025,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=194799,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=783889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=8740,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=880316,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=269,
+ ["unit"]=0
+ }
+ },
+ [2697]={
+ ["next_chapter"]=2698,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1034,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=196480,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=791889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=8830,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=880316,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=269,
+ ["unit"]=0
+ }
+ },
+ [2698]={
+ ["next_chapter"]=2699,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1043,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=198179,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=799889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=8920,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=880316,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=269,
+ ["unit"]=0
+ }
+ },
+ [2699]={
+ ["next_chapter"]=2700,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1052,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=199895,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=808889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=9010,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=880316,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=269,
+ ["unit"]=0
+ }
+ },
+ [2700]={
+ ["next_chapter"]=2701,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=1061,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=201628,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=817889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=9100,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=971316,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=270,
+ ["unit"]=0
+ }
+ },
+ [2701]={
+ ["next_chapter"]=2702,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1070,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=203379,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=826889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=9190,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=971316,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=270,
+ ["unit"]=0
+ }
+ },
+ [2702]={
+ ["next_chapter"]=2703,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1080,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=205147,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=835889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=9280,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=971316,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=270,
+ ["unit"]=0
+ }
+ },
+ [2703]={
+ ["next_chapter"]=2704,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1089,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=206933,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=844889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=9370,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=971316,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=270,
+ ["unit"]=0
+ }
+ },
+ [2704]={
+ ["next_chapter"]=2705,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1099,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=208736,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=853889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=9460,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=971316,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=270,
+ ["unit"]=0
+ }
+ },
+ [2705]={
+ ["next_chapter"]=2706,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1108,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=210557,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=862889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=9550,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=971316,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=270,
+ ["unit"]=0
+ }
+ },
+ [2706]={
+ ["next_chapter"]=2707,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1118,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=212396,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=871889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=9650,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=971316,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=270,
+ ["unit"]=0
+ }
+ },
+ [2707]={
+ ["next_chapter"]=2708,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1128,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=214253,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=880889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=9750,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=971316,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=270,
+ ["unit"]=0
+ }
+ },
+ [2708]={
+ ["next_chapter"]=2709,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1138,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=216128,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=889889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=9850,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=971316,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=270,
+ ["unit"]=0
+ }
+ },
+ [2709]={
+ ["next_chapter"]=2710,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1147,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=218021,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=898889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=9950,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=971316,
+ ["unit"]=3
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=270,
+ ["unit"]=0
+ }
+ },
+ [2710]={
+ ["next_chapter"]=2711,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=1158,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=219933,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=908889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=10050,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1072,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=271,
+ ["unit"]=0
+ }
+ },
+ [2711]={
+ ["next_chapter"]=2712,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1168,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=221862,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=918889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=10200,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1072,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=271,
+ ["unit"]=0
+ }
+ },
+ [2712]={
+ ["next_chapter"]=2713,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1178,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=223810,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=928889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=10300,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1072,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=271,
+ ["unit"]=0
+ }
+ },
+ [2713]={
+ ["next_chapter"]=2714,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1188,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=225777,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=938889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=10400,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1072,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=271,
+ ["unit"]=0
+ }
+ },
+ [2714]={
+ ["next_chapter"]=2715,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1199,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=227762,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=948889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=10500,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1072,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=271,
+ ["unit"]=0
+ }
+ },
+ [2715]={
+ ["next_chapter"]=2716,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1209,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=229765,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=958889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=10600,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1072,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=271,
+ ["unit"]=0
+ }
+ },
+ [2716]={
+ ["next_chapter"]=2717,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1220,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=231788,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=968889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=10700,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1072,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=271,
+ ["unit"]=0
+ }
+ },
+ [2717]={
+ ["next_chapter"]=2718,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1231,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=233829,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=978889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=10800,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1072,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=271,
+ ["unit"]=0
+ }
+ },
+ [2718]={
+ ["next_chapter"]=2719,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1242,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=235889,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=988889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=10900,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1072,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=271,
+ ["unit"]=0
+ }
+ },
+ [2719]={
+ ["next_chapter"]=2720,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1252,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=237968,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=998889,
+ ["unit"]=3
+ },
+ ["idle_gold"]={
+ ["value"]=11000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1072,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=271,
+ ["unit"]=0
+ }
+ },
+ [2720]={
+ ["next_chapter"]=2721,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=1264,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=240066,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1009,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=11100,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1183,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=272,
+ ["unit"]=0
+ }
+ },
+ [2721]={
+ ["next_chapter"]=2722,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1275,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=242184,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1019,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=11200,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1183,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=272,
+ ["unit"]=0
+ }
+ },
+ [2722]={
+ ["next_chapter"]=2723,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1286,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=244320,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1029,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=11300,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1183,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=272,
+ ["unit"]=0
+ }
+ },
+ [2723]={
+ ["next_chapter"]=2724,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1297,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=246476,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1039,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=11400,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1183,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=272,
+ ["unit"]=0
+ }
+ },
+ [2724]={
+ ["next_chapter"]=2725,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1309,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=248651,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1049,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=11500,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1183,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=272,
+ ["unit"]=0
+ }
+ },
+ [2725]={
+ ["next_chapter"]=2726,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1320,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=250846,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1059,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=11600,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1183,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=272,
+ ["unit"]=0
+ }
+ },
+ [2726]={
+ ["next_chapter"]=2727,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1332,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=253061,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1069,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=11700,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1183,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=272,
+ ["unit"]=0
+ }
+ },
+ [2727]={
+ ["next_chapter"]=2728,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1344,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=255295,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1079,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=11800,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1183,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=272,
+ ["unit"]=0
+ }
+ },
+ [2728]={
+ ["next_chapter"]=2729,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1356,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=257549,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1089,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=11900,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1183,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=272,
+ ["unit"]=0
+ }
+ },
+ [2729]={
+ ["next_chapter"]=2730,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1367,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=259822,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1099,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=12000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1183,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=272,
+ ["unit"]=0
+ }
+ },
+ [2730]={
+ ["next_chapter"]=2731,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=1380,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=262116,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1109,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=12100,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1304,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=273,
+ ["unit"]=0
+ }
+ },
+ [2731]={
+ ["next_chapter"]=2732,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1392,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=264430,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1119,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=12200,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1304,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=273,
+ ["unit"]=0
+ }
+ },
+ [2732]={
+ ["next_chapter"]=2733,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1404,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=266764,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1129,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=12300,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1304,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=273,
+ ["unit"]=0
+ }
+ },
+ [2733]={
+ ["next_chapter"]=2734,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1416,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=269118,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1139,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=12400,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1304,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=273,
+ ["unit"]=0
+ }
+ },
+ [2734]={
+ ["next_chapter"]=2735,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1429,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=271492,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1149,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=12500,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1304,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=273,
+ ["unit"]=0
+ }
+ },
+ [2735]={
+ ["next_chapter"]=2736,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1442,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=273887,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1159,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=12600,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1304,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=273,
+ ["unit"]=0
+ }
+ },
+ [2736]={
+ ["next_chapter"]=2737,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1454,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=276302,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1169,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=12700,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1304,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=273,
+ ["unit"]=0
+ }
+ },
+ [2737]={
+ ["next_chapter"]=2738,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1467,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=278738,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1179,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=12800,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1304,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=273,
+ ["unit"]=0
+ }
+ },
+ [2738]={
+ ["next_chapter"]=2739,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1480,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=281194,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1189,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=12900,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1304,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=273,
+ ["unit"]=0
+ }
+ },
+ [2739]={
+ ["next_chapter"]=2740,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1493,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=283671,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1199,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=13000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1304,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=273,
+ ["unit"]=0
+ }
+ },
+ [2740]={
+ ["next_chapter"]=2741,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=1506,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=286169,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1209,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=13100,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1435,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=274,
+ ["unit"]=0
+ }
+ },
+ [2741]={
+ ["next_chapter"]=2742,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1519,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=288688,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1219,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=13200,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1435,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=274,
+ ["unit"]=0
+ }
+ },
+ [2742]={
+ ["next_chapter"]=2743,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1533,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=291228,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1229,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=13300,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1435,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=274,
+ ["unit"]=0
+ }
+ },
+ [2743]={
+ ["next_chapter"]=2744,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1546,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=293789,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1239,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=13400,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1435,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=274,
+ ["unit"]=0
+ }
+ },
+ [2744]={
+ ["next_chapter"]=2745,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1560,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=296371,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1249,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=13500,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1435,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=274,
+ ["unit"]=0
+ }
+ },
+ [2745]={
+ ["next_chapter"]=2746,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1574,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=298974,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1259,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=13600,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1435,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=274,
+ ["unit"]=0
+ }
+ },
+ [2746]={
+ ["next_chapter"]=2747,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1587,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=301599,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1269,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=13700,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1435,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=274,
+ ["unit"]=0
+ }
+ },
+ [2747]={
+ ["next_chapter"]=2748,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1601,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=304245,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1279,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=13800,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1435,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=274,
+ ["unit"]=0
+ }
+ },
+ [2748]={
+ ["next_chapter"]=2749,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1615,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=306912,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1289,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=13900,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1435,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=274,
+ ["unit"]=0
+ }
+ },
+ [2749]={
+ ["next_chapter"]=2750,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1629,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=309602,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1299,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=14000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1435,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=274,
+ ["unit"]=0
+ }
+ },
+ [2750]={
+ ["next_chapter"]=2751,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=1644,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=312313,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1309,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=14100,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1576,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=275,
+ ["unit"]=0
+ }
+ },
+ [2751]={
+ ["next_chapter"]=2752,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1658,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=315045,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1319,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=14200,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1576,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=275,
+ ["unit"]=0
+ }
+ },
+ [2752]={
+ ["next_chapter"]=2753,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1673,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=317800,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1329,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=14300,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1576,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=275,
+ ["unit"]=0
+ }
+ },
+ [2753]={
+ ["next_chapter"]=2754,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1687,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=320576,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1339,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=14400,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1576,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=275,
+ ["unit"]=0
+ }
+ },
+ [2754]={
+ ["next_chapter"]=2755,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1702,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=323375,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1349,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=14500,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1576,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=275,
+ ["unit"]=0
+ }
+ },
+ [2755]={
+ ["next_chapter"]=2756,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1717,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=326195,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1359,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=14600,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1576,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=275,
+ ["unit"]=0
+ }
+ },
+ [2756]={
+ ["next_chapter"]=2757,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1732,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=329038,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1369,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=14700,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1576,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=275,
+ ["unit"]=0
+ }
+ },
+ [2757]={
+ ["next_chapter"]=2758,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1747,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=331903,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1379,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=14800,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1576,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=275,
+ ["unit"]=0
+ }
+ },
+ [2758]={
+ ["next_chapter"]=2759,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1762,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=334791,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1389,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=14900,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1576,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=275,
+ ["unit"]=0
+ }
+ },
+ [2759]={
+ ["next_chapter"]=2760,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1777,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=337701,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1399,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=15000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1576,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=275,
+ ["unit"]=0
+ }
+ },
+ [2760]={
+ ["next_chapter"]=2761,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=1793,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=340633,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1409,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=15200,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1728,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=276,
+ ["unit"]=0
+ }
+ },
+ [2761]={
+ ["next_chapter"]=2762,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1808,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=343588,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1419,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=15400,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1728,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=276,
+ ["unit"]=0
+ }
+ },
+ [2762]={
+ ["next_chapter"]=2763,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1824,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=346566,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1429,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=15600,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1728,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=276,
+ ["unit"]=0
+ }
+ },
+ [2763]={
+ ["next_chapter"]=2764,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1840,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=349567,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1439,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=15800,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1728,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=276,
+ ["unit"]=0
+ }
+ },
+ [2764]={
+ ["next_chapter"]=2765,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1856,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=352591,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1449,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=16000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1728,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=276,
+ ["unit"]=0
+ }
+ },
+ [2765]={
+ ["next_chapter"]=2766,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1872,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=355637,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1459,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=16200,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1728,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=276,
+ ["unit"]=0
+ }
+ },
+ [2766]={
+ ["next_chapter"]=2767,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1888,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=358707,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1469,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=16400,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1728,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=276,
+ ["unit"]=0
+ }
+ },
+ [2767]={
+ ["next_chapter"]=2768,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1904,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=361800,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1479,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=16600,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1728,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=276,
+ ["unit"]=0
+ }
+ },
+ [2768]={
+ ["next_chapter"]=2769,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1921,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=364916,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1489,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=16800,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1728,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=276,
+ ["unit"]=0
+ }
+ },
+ [2769]={
+ ["next_chapter"]=2770,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1937,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=368056,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1499,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=17000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1728,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=276,
+ ["unit"]=0
+ }
+ },
+ [2770]={
+ ["next_chapter"]=2771,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=1954,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=371218,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1509,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=17200,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1900,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=277,
+ ["unit"]=0
+ }
+ },
+ [2771]={
+ ["next_chapter"]=2772,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1971,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=374405,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1519,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=17400,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1900,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=277,
+ ["unit"]=0
+ }
+ },
+ [2772]={
+ ["next_chapter"]=2773,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1987,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=377615,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1529,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=17600,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1900,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=277,
+ ["unit"]=0
+ }
+ },
+ [2773]={
+ ["next_chapter"]=2774,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2004,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=380849,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1539,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=17800,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1900,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=277,
+ ["unit"]=0
+ }
+ },
+ [2774]={
+ ["next_chapter"]=2775,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2022,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=384106,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1549,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=18000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1900,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=277,
+ ["unit"]=0
+ }
+ },
+ [2775]={
+ ["next_chapter"]=2776,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2039,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=387387,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1559,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=18200,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1900,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=277,
+ ["unit"]=0
+ }
+ },
+ [2776]={
+ ["next_chapter"]=2777,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2056,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=390693,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1569,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=18400,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1900,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=277,
+ ["unit"]=0
+ }
+ },
+ [2777]={
+ ["next_chapter"]=2778,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2074,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=394022,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1579,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=18600,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1900,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=277,
+ ["unit"]=0
+ }
+ },
+ [2778]={
+ ["next_chapter"]=2779,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2091,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=397376,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1589,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=18800,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1900,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=277,
+ ["unit"]=0
+ }
+ },
+ [2779]={
+ ["next_chapter"]=2780,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2109,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=400753,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1599,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=19000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=1900,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=277,
+ ["unit"]=0
+ }
+ },
+ [2780]={
+ ["next_chapter"]=2781,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=2127,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=404155,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1609,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=19200,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=2092,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=278,
+ ["unit"]=0
+ }
+ },
+ [2781]={
+ ["next_chapter"]=2782,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2145,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=407582,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1619,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=19400,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=2092,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=278,
+ ["unit"]=0
+ }
+ },
+ [2782]={
+ ["next_chapter"]=2783,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2163,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=411032,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1629,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=19600,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=2092,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=278,
+ ["unit"]=0
+ }
+ },
+ [2783]={
+ ["next_chapter"]=2784,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2182,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=414508,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1639,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=19800,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=2092,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=278,
+ ["unit"]=0
+ }
+ },
+ [2784]={
+ ["next_chapter"]=2785,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2200,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=418008,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1659,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=20000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=2092,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=278,
+ ["unit"]=0
+ }
+ },
+ [2785]={
+ ["next_chapter"]=2786,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2219,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=421533,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1679,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=20200,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=2092,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=278,
+ ["unit"]=0
+ }
+ },
+ [2786]={
+ ["next_chapter"]=2787,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2237,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=425082,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1699,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=20400,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=2092,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=278,
+ ["unit"]=0
+ }
+ },
+ [2787]={
+ ["next_chapter"]=2788,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2256,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=428657,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1719,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=20600,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=2092,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=278,
+ ["unit"]=0
+ }
+ },
+ [2788]={
+ ["next_chapter"]=2789,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2275,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=432256,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1739,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=20800,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=2092,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=278,
+ ["unit"]=0
+ }
+ },
+ [2789]={
+ ["next_chapter"]=2790,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2294,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=435881,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1759,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=21000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=2092,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=278,
+ ["unit"]=0
+ }
+ },
+ [2790]={
+ ["next_chapter"]=2791,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=2313,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=439531,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1779,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=21200,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=2304,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=279,
+ ["unit"]=0
+ }
+ },
+ [2791]={
+ ["next_chapter"]=2792,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2333,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=443206,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1799,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=21400,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=2304,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=279,
+ ["unit"]=0
+ }
+ },
+ [2792]={
+ ["next_chapter"]=2793,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2352,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=446906,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1819,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=21600,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=2304,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=279,
+ ["unit"]=0
+ }
+ },
+ [2793]={
+ ["next_chapter"]=2794,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2372,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=450632,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1839,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=21800,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=2304,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=279,
+ ["unit"]=0
+ }
+ },
+ [2794]={
+ ["next_chapter"]=2795,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2391,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=454383,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1859,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=22000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=2304,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=279,
+ ["unit"]=0
+ }
+ },
+ [2795]={
+ ["next_chapter"]=2796,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2411,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=458160,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1879,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=22200,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=2304,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=279,
+ ["unit"]=0
+ }
+ },
+ [2796]={
+ ["next_chapter"]=2797,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2431,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=461963,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1899,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=22400,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=2304,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=279,
+ ["unit"]=0
+ }
+ },
+ [2797]={
+ ["next_chapter"]=2798,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2452,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=465791,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1919,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=22600,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=2304,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=279,
+ ["unit"]=0
+ }
+ },
+ [2798]={
+ ["next_chapter"]=2799,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2472,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=469646,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1939,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=22800,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=2304,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=279,
+ ["unit"]=0
+ }
+ },
+ [2799]={
+ ["next_chapter"]=2800,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2492,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=473526,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1959,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=23000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=2304,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=279,
+ ["unit"]=0
+ }
+ },
+ [2800]={
+ ["next_chapter"]=2801,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=2513,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=477432,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1979,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=23200,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=2536,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=280,
+ ["unit"]=0
+ }
+ },
+ [2801]={
+ ["next_chapter"]=2802,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2533,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=481364,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1999,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=23400,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=2536,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=280,
+ ["unit"]=0
+ }
+ },
+ [2802]={
+ ["next_chapter"]=2803,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2554,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=485323,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2019,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=23600,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=2536,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=280,
+ ["unit"]=0
+ }
+ },
+ [2803]={
+ ["next_chapter"]=2804,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2575,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=489308,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2039,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=23800,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=2536,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=280,
+ ["unit"]=0
+ }
+ },
+ [2804]={
+ ["next_chapter"]=2805,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2596,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=493319,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2059,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=24000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=2536,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=280,
+ ["unit"]=0
+ }
+ },
+ [2805]={
+ ["next_chapter"]=2806,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2618,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=497357,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2079,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=24200,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=2536,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=280,
+ ["unit"]=0
+ }
+ },
+ [2806]={
+ ["next_chapter"]=2807,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2639,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=501421,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2099,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=24400,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=2536,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=280,
+ ["unit"]=0
+ }
+ },
+ [2807]={
+ ["next_chapter"]=2808,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2661,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=505512,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2119,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=24600,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=2536,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=280,
+ ["unit"]=0
+ }
+ },
+ [2808]={
+ ["next_chapter"]=2809,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2682,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=509630,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2139,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=24800,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=2536,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=280,
+ ["unit"]=0
+ }
+ },
+ [2809]={
+ ["next_chapter"]=2810,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2704,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=513775,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2159,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=25000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=2536,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=280,
+ ["unit"]=0
+ }
+ },
+ [2810]={
+ ["next_chapter"]=2811,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=2726,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=517946,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2179,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=25300,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=2789,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=281,
+ ["unit"]=0
+ }
+ },
+ [2811]={
+ ["next_chapter"]=2812,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2748,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=522145,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2199,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=25600,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=2789,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=281,
+ ["unit"]=0
+ }
+ },
+ [2812]={
+ ["next_chapter"]=2813,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2770,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=526370,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2219,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=25900,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=2789,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=281,
+ ["unit"]=0
+ }
+ },
+ [2813]={
+ ["next_chapter"]=2814,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2793,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=530623,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2239,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=26200,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=2789,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=281,
+ ["unit"]=0
+ }
+ },
+ [2814]={
+ ["next_chapter"]=2815,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2815,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=534903,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2259,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=26500,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=2789,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=281,
+ ["unit"]=0
+ }
+ },
+ [2815]={
+ ["next_chapter"]=2816,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2838,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=539210,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2279,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=26800,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=2789,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=281,
+ ["unit"]=0
+ }
+ },
+ [2816]={
+ ["next_chapter"]=2817,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2861,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=543545,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2299,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=27100,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=2789,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=281,
+ ["unit"]=0
+ }
+ },
+ [2817]={
+ ["next_chapter"]=2818,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2884,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=547907,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2319,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=27400,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=2789,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=281,
+ ["unit"]=0
+ }
+ },
+ [2818]={
+ ["next_chapter"]=2819,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2907,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=552297,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2339,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=27700,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=2789,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=281,
+ ["unit"]=0
+ }
+ },
+ [2819]={
+ ["next_chapter"]=2820,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2930,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=556715,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2359,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=28000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=2789,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=281,
+ ["unit"]=0
+ }
+ },
+ [2820]={
+ ["next_chapter"]=2821,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=2953,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=561160,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2379,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=28300,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3072,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=282,
+ ["unit"]=0
+ }
+ },
+ [2821]={
+ ["next_chapter"]=2822,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2977,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=565634,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2399,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=28600,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3072,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=282,
+ ["unit"]=0
+ }
+ },
+ [2822]={
+ ["next_chapter"]=2823,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3001,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=570135,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2419,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=28900,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3072,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=282,
+ ["unit"]=0
+ }
+ },
+ [2823]={
+ ["next_chapter"]=2824,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3025,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=574664,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2439,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=29200,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3072,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=282,
+ ["unit"]=0
+ }
+ },
+ [2824]={
+ ["next_chapter"]=2825,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3049,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=579221,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2459,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=29500,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3072,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=282,
+ ["unit"]=0
+ }
+ },
+ [2825]={
+ ["next_chapter"]=2826,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3073,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=583807,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2479,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=29800,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3072,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=282,
+ ["unit"]=0
+ }
+ },
+ [2826]={
+ ["next_chapter"]=2827,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3097,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=588421,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2509,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=30100,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3072,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=282,
+ ["unit"]=0
+ }
+ },
+ [2827]={
+ ["next_chapter"]=2828,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3121,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=593063,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2539,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=30400,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3072,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=282,
+ ["unit"]=0
+ }
+ },
+ [2828]={
+ ["next_chapter"]=2829,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3146,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=597734,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2569,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=30700,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3072,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=282,
+ ["unit"]=0
+ }
+ },
+ [2829]={
+ ["next_chapter"]=2830,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3171,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=602433,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2599,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=31000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3072,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=282,
+ ["unit"]=0
+ }
+ },
+ [2830]={
+ ["next_chapter"]=2831,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=3196,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=607161,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2629,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=31300,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3385,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=283,
+ ["unit"]=0
+ }
+ },
+ [2831]={
+ ["next_chapter"]=2832,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3221,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=611918,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2659,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=31600,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3385,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=283,
+ ["unit"]=0
+ }
+ },
+ [2832]={
+ ["next_chapter"]=2833,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3246,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=616704,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2689,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=31900,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3385,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=283,
+ ["unit"]=0
+ }
+ },
+ [2833]={
+ ["next_chapter"]=2834,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3271,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=621518,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2719,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=32200,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3385,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=283,
+ ["unit"]=0
+ }
+ },
+ [2834]={
+ ["next_chapter"]=2835,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3297,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=626362,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2749,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=32500,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3385,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=283,
+ ["unit"]=0
+ }
+ },
+ [2835]={
+ ["next_chapter"]=2836,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3322,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=631234,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2779,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=32800,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3385,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=283,
+ ["unit"]=0
+ }
+ },
+ [2836]={
+ ["next_chapter"]=2837,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3348,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=636136,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2809,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=33100,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3385,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=283,
+ ["unit"]=0
+ }
+ },
+ [2837]={
+ ["next_chapter"]=2838,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3374,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=641067,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2839,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=33400,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3385,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=283,
+ ["unit"]=0
+ }
+ },
+ [2838]={
+ ["next_chapter"]=2839,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3400,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=646028,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2869,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=33700,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3385,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=283,
+ ["unit"]=0
+ }
+ },
+ [2839]={
+ ["next_chapter"]=2840,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3426,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=651018,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2899,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=34000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3385,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=283,
+ ["unit"]=0
+ }
+ },
+ [2840]={
+ ["next_chapter"]=2841,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=3453,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=656037,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2929,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=34300,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3728,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=284,
+ ["unit"]=0
+ }
+ },
+ [2841]={
+ ["next_chapter"]=2842,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3479,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=661086,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2959,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=34600,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3728,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=284,
+ ["unit"]=0
+ }
+ },
+ [2842]={
+ ["next_chapter"]=2843,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3506,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=666165,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2989,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=34900,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3728,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=284,
+ ["unit"]=0
+ }
+ },
+ [2843]={
+ ["next_chapter"]=2844,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3533,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=671273,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3019,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=35200,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3728,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=284,
+ ["unit"]=0
+ }
+ },
+ [2844]={
+ ["next_chapter"]=2845,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3560,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=676411,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3049,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=35600,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3728,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=284,
+ ["unit"]=0
+ }
+ },
+ [2845]={
+ ["next_chapter"]=2846,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3587,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=681580,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3079,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=36000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3728,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=284,
+ ["unit"]=0
+ }
+ },
+ [2846]={
+ ["next_chapter"]=2847,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3615,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=686778,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3109,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=36400,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3728,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=284,
+ ["unit"]=0
+ }
+ },
+ [2847]={
+ ["next_chapter"]=2848,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3642,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=692006,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3139,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=36800,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3728,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=284,
+ ["unit"]=0
+ }
+ },
+ [2848]={
+ ["next_chapter"]=2849,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3670,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=697265,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3169,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=37200,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3728,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=284,
+ ["unit"]=0
+ }
+ },
+ [2849]={
+ ["next_chapter"]=2850,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3698,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=702554,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3199,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=37600,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=3728,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=284,
+ ["unit"]=0
+ }
+ },
+ [2850]={
+ ["next_chapter"]=2851,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=3726,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=707874,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3229,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=38000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=4108,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=285,
+ ["unit"]=0
+ }
+ },
+ [2851]={
+ ["next_chapter"]=2852,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3754,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=713223,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3259,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=38400,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=4108,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=285,
+ ["unit"]=0
+ }
+ },
+ [2852]={
+ ["next_chapter"]=2853,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3782,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=718604,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3289,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=38800,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=4108,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=285,
+ ["unit"]=0
+ }
+ },
+ [2853]={
+ ["next_chapter"]=2854,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3811,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=724015,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3319,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=39200,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=4108,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=285,
+ ["unit"]=0
+ }
+ },
+ [2854]={
+ ["next_chapter"]=2855,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3839,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=729457,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3349,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=39600,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=4108,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=285,
+ ["unit"]=0
+ }
+ },
+ [2855]={
+ ["next_chapter"]=2856,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3868,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=734930,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3389,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=40000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=4108,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=285,
+ ["unit"]=0
+ }
+ },
+ [2856]={
+ ["next_chapter"]=2857,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3897,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=740433,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3429,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=40400,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=4108,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=285,
+ ["unit"]=0
+ }
+ },
+ [2857]={
+ ["next_chapter"]=2858,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3926,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=745968,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3469,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=40800,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=4108,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=285,
+ ["unit"]=0
+ }
+ },
+ [2858]={
+ ["next_chapter"]=2859,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3955,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=751533,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3509,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=41200,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=4108,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=285,
+ ["unit"]=0
+ }
+ },
+ [2859]={
+ ["next_chapter"]=2860,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3985,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=757130,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3549,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=41600,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=4108,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=285,
+ ["unit"]=0
+ }
+ },
+ [2860]={
+ ["next_chapter"]=2861,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=4015,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=762758,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3589,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=42000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=4528,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=286,
+ ["unit"]=0
+ }
+ },
+ [2861]={
+ ["next_chapter"]=2862,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4044,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=768418,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3629,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=42400,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=4528,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=286,
+ ["unit"]=0
+ }
+ },
+ [2862]={
+ ["next_chapter"]=2863,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4074,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=774109,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3669,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=42800,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=4528,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=286,
+ ["unit"]=0
+ }
+ },
+ [2863]={
+ ["next_chapter"]=2864,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4104,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=779831,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3709,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=43200,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=4528,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=286,
+ ["unit"]=0
+ }
+ },
+ [2864]={
+ ["next_chapter"]=2865,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4135,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=785586,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3749,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=43600,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=4528,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=286,
+ ["unit"]=0
+ }
+ },
+ [2865]={
+ ["next_chapter"]=2866,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4165,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=791371,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3789,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=44000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=4528,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=286,
+ ["unit"]=0
+ }
+ },
+ [2866]={
+ ["next_chapter"]=2867,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4196,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=797189,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3829,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=44400,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=4528,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=286,
+ ["unit"]=0
+ }
+ },
+ [2867]={
+ ["next_chapter"]=2868,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4227,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=803038,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3869,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=44800,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=4528,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=286,
+ ["unit"]=0
+ }
+ },
+ [2868]={
+ ["next_chapter"]=2869,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4257,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=808920,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3909,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=45200,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=4528,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=286,
+ ["unit"]=0
+ }
+ },
+ [2869]={
+ ["next_chapter"]=2870,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4289,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=814833,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3949,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=45700,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=4528,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=286,
+ ["unit"]=0
+ }
+ },
+ [2870]={
+ ["next_chapter"]=2871,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=4320,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=820779,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3989,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=46200,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=4990,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=287,
+ ["unit"]=0
+ }
+ },
+ [2871]={
+ ["next_chapter"]=2872,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4351,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=826757,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4029,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=46700,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=4990,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=287,
+ ["unit"]=0
+ }
+ },
+ [2872]={
+ ["next_chapter"]=2873,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4383,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=832767,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4069,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=47200,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=4990,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=287,
+ ["unit"]=0
+ }
+ },
+ [2873]={
+ ["next_chapter"]=2874,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4415,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=838810,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4109,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=47700,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=4990,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=287,
+ ["unit"]=0
+ }
+ },
+ [2874]={
+ ["next_chapter"]=2875,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4447,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=844885,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4149,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=48200,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=4990,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=287,
+ ["unit"]=0
+ }
+ },
+ [2875]={
+ ["next_chapter"]=2876,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4479,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=850992,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4189,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=48700,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=4990,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=287,
+ ["unit"]=0
+ }
+ },
+ [2876]={
+ ["next_chapter"]=2877,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4511,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=857132,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4229,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=49200,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=4990,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=287,
+ ["unit"]=0
+ }
+ },
+ [2877]={
+ ["next_chapter"]=2878,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4544,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=863306,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4269,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=49700,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=4990,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=287,
+ ["unit"]=0
+ }
+ },
+ [2878]={
+ ["next_chapter"]=2879,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4576,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=869511,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4319,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=50200,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=4990,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=287,
+ ["unit"]=0
+ }
+ },
+ [2879]={
+ ["next_chapter"]=2880,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4609,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=875750,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4369,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=50700,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=4990,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=287,
+ ["unit"]=0
+ }
+ },
+ [2880]={
+ ["next_chapter"]=2881,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=4642,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=882022,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4419,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=51200,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=5502,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=288,
+ ["unit"]=0
+ }
+ },
+ [2881]={
+ ["next_chapter"]=2882,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4675,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=888327,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4469,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=51700,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=5502,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=288,
+ ["unit"]=0
+ }
+ },
+ [2882]={
+ ["next_chapter"]=2883,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4709,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=894665,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4519,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=52200,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=5502,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=288,
+ ["unit"]=0
+ }
+ },
+ [2883]={
+ ["next_chapter"]=2884,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4742,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=901036,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4569,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=52700,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=5502,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=288,
+ ["unit"]=0
+ }
+ },
+ [2884]={
+ ["next_chapter"]=2885,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4776,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=907441,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4619,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=53200,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=5502,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=288,
+ ["unit"]=0
+ }
+ },
+ [2885]={
+ ["next_chapter"]=2886,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4810,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=913879,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4669,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=53700,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=5502,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=288,
+ ["unit"]=0
+ }
+ },
+ [2886]={
+ ["next_chapter"]=2887,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4844,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=920351,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4719,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=54200,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=5502,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=288,
+ ["unit"]=0
+ }
+ },
+ [2887]={
+ ["next_chapter"]=2888,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4878,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=926856,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4769,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=54700,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=5502,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=288,
+ ["unit"]=0
+ }
+ },
+ [2888]={
+ ["next_chapter"]=2889,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4913,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=933395,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4819,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=55200,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=5502,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=288,
+ ["unit"]=0
+ }
+ },
+ [2889]={
+ ["next_chapter"]=2890,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4947,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=939968,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4869,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=55800,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=5502,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=288,
+ ["unit"]=0
+ }
+ },
+ [2890]={
+ ["next_chapter"]=2891,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=4982,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=946575,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4919,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=56400,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=6066,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=289,
+ ["unit"]=0
+ }
+ },
+ [2891]={
+ ["next_chapter"]=2892,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5017,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=953215,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4969,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=57000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=6066,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=289,
+ ["unit"]=0
+ }
+ },
+ [2892]={
+ ["next_chapter"]=2893,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5052,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=959890,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5019,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=57600,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=6066,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=289,
+ ["unit"]=0
+ }
+ },
+ [2893]={
+ ["next_chapter"]=2894,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5087,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=966599,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5069,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=58200,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=6066,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=289,
+ ["unit"]=0
+ }
+ },
+ [2894]={
+ ["next_chapter"]=2895,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5123,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=973342,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5119,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=58800,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=6066,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=289,
+ ["unit"]=0
+ }
+ },
+ [2895]={
+ ["next_chapter"]=2896,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5159,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=980119,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5169,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=59400,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=6066,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=289,
+ ["unit"]=0
+ }
+ },
+ [2896]={
+ ["next_chapter"]=2897,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5194,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=986931,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5229,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=60000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=6066,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=289,
+ ["unit"]=0
+ }
+ },
+ [2897]={
+ ["next_chapter"]=2898,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5230,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=993777,
+ ["unit"]=6
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5289,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=60600,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=6066,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=289,
+ ["unit"]=0
+ }
+ },
+ [2898]={
+ ["next_chapter"]=2899,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5267,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1001,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5349,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=61200,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=6066,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=289,
+ ["unit"]=0
+ }
+ },
+ [2899]={
+ ["next_chapter"]=2900,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5303,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1008,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5409,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=61800,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=6066,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=289,
+ ["unit"]=0
+ }
+ },
+ [2900]={
+ ["next_chapter"]=2901,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=5340,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1015,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5469,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=62400,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=6690,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=290,
+ ["unit"]=0
+ }
+ },
+ [2901]={
+ ["next_chapter"]=2902,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5376,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1022,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5529,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=63000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=6690,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=290,
+ ["unit"]=0
+ }
+ },
+ [2902]={
+ ["next_chapter"]=2903,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5413,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1029,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5589,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=63600,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=6690,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=290,
+ ["unit"]=0
+ }
+ },
+ [2903]={
+ ["next_chapter"]=2904,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5450,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1036,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5649,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=64200,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=6690,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=290,
+ ["unit"]=0
+ }
+ },
+ [2904]={
+ ["next_chapter"]=2905,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5488,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1043,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5709,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=64800,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=6690,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=290,
+ ["unit"]=0
+ }
+ },
+ [2905]={
+ ["next_chapter"]=2906,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5525,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1050,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5769,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=65400,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=6690,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=290,
+ ["unit"]=0
+ }
+ },
+ [2906]={
+ ["next_chapter"]=2907,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5563,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1057,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5829,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=66100,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=6690,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=290,
+ ["unit"]=0
+ }
+ },
+ [2907]={
+ ["next_chapter"]=2908,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5601,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1064,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=66800,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=6690,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=290,
+ ["unit"]=0
+ }
+ },
+ [2908]={
+ ["next_chapter"]=2909,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5639,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1071,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5949,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=67500,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=6690,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=290,
+ ["unit"]=0
+ }
+ },
+ [2909]={
+ ["next_chapter"]=2910,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5677,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1079,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6009,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=68200,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=6690,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=290,
+ ["unit"]=0
+ }
+ },
+ [2910]={
+ ["next_chapter"]=2911,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=5716,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1086,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6069,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=68900,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=7379,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=291,
+ ["unit"]=0
+ }
+ },
+ [2911]={
+ ["next_chapter"]=2912,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5754,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1093,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6129,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=69600,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=7379,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=291,
+ ["unit"]=0
+ }
+ },
+ [2912]={
+ ["next_chapter"]=2913,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5793,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1101,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6199,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=70300,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=7379,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=291,
+ ["unit"]=0
+ }
+ },
+ [2913]={
+ ["next_chapter"]=2914,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5832,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1108,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6269,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=71000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=7379,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=291,
+ ["unit"]=0
+ }
+ },
+ [2914]={
+ ["next_chapter"]=2915,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5871,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1116,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6339,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=71700,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=7379,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=291,
+ ["unit"]=0
+ }
+ },
+ [2915]={
+ ["next_chapter"]=2916,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5911,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1123,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6409,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=72400,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=7379,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=291,
+ ["unit"]=0
+ }
+ },
+ [2916]={
+ ["next_chapter"]=2917,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5950,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1131,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6479,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=73100,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=7379,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=291,
+ ["unit"]=0
+ }
+ },
+ [2917]={
+ ["next_chapter"]=2918,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5990,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1138,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6549,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=73800,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=7379,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=291,
+ ["unit"]=0
+ }
+ },
+ [2918]={
+ ["next_chapter"]=2919,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6030,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1146,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6619,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=74500,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=7379,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=291,
+ ["unit"]=0
+ }
+ },
+ [2919]={
+ ["next_chapter"]=2920,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6070,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1153,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6689,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=75200,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=7379,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=291,
+ ["unit"]=0
+ }
+ },
+ [2920]={
+ ["next_chapter"]=2921,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=6110,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1161,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6759,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=76000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=8139,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=292,
+ ["unit"]=0
+ }
+ },
+ [2921]={
+ ["next_chapter"]=2922,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6151,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1169,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6829,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=76800,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=8139,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=292,
+ ["unit"]=0
+ }
+ },
+ [2922]={
+ ["next_chapter"]=2923,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6192,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1176,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6899,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=77600,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=8139,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=292,
+ ["unit"]=0
+ }
+ },
+ [2923]={
+ ["next_chapter"]=2924,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6232,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1184,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6969,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=78400,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=8139,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=292,
+ ["unit"]=0
+ }
+ },
+ [2924]={
+ ["next_chapter"]=2925,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6274,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1192,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7039,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=79200,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=8139,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=292,
+ ["unit"]=0
+ }
+ },
+ [2925]={
+ ["next_chapter"]=2926,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6315,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1200,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7119,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=80000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=8139,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=292,
+ ["unit"]=0
+ }
+ },
+ [2926]={
+ ["next_chapter"]=2927,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6356,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1208,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7199,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=80800,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=8139,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=292,
+ ["unit"]=0
+ }
+ },
+ [2927]={
+ ["next_chapter"]=2928,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6398,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1216,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7279,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=81600,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=8139,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=292,
+ ["unit"]=0
+ }
+ },
+ [2928]={
+ ["next_chapter"]=2929,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6440,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1224,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7359,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=82400,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=8139,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=292,
+ ["unit"]=0
+ }
+ },
+ [2929]={
+ ["next_chapter"]=2930,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6482,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1232,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7439,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=83200,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=8139,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=292,
+ ["unit"]=0
+ }
+ },
+ [2930]={
+ ["next_chapter"]=2931,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=6524,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1240,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7519,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=84000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=8979,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=293,
+ ["unit"]=0
+ }
+ },
+ [2931]={
+ ["next_chapter"]=2932,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6567,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1248,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7599,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=84800,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=8979,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=293,
+ ["unit"]=0
+ }
+ },
+ [2932]={
+ ["next_chapter"]=2933,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6609,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1256,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7679,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=85600,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=8979,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=293,
+ ["unit"]=0
+ }
+ },
+ [2933]={
+ ["next_chapter"]=2934,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6652,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1264,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7759,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=86500,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=8979,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=293,
+ ["unit"]=0
+ }
+ },
+ [2934]={
+ ["next_chapter"]=2935,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6695,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1272,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7839,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=87400,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=8979,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=293,
+ ["unit"]=0
+ }
+ },
+ [2935]={
+ ["next_chapter"]=2936,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6739,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1280,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7919,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=88300,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=8979,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=293,
+ ["unit"]=0
+ }
+ },
+ [2936]={
+ ["next_chapter"]=2937,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6782,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1289,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7999,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=89200,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=8979,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=293,
+ ["unit"]=0
+ }
+ },
+ [2937]={
+ ["next_chapter"]=2938,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6826,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1297,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8089,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=90100,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=8979,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=293,
+ ["unit"]=0
+ }
+ },
+ [2938]={
+ ["next_chapter"]=2939,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6870,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1305,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8179,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=91000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=8979,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=293,
+ ["unit"]=0
+ }
+ },
+ [2939]={
+ ["next_chapter"]=2940,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6914,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1314,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8269,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=91900,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=8979,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=293,
+ ["unit"]=0
+ }
+ },
+ [2940]={
+ ["next_chapter"]=2941,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=6958,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1322,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8359,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=92800,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=9907,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=294,
+ ["unit"]=0
+ }
+ },
+ [2941]={
+ ["next_chapter"]=2942,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7003,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1330,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8449,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=93700,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=9907,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=294,
+ ["unit"]=0
+ }
+ },
+ [2942]={
+ ["next_chapter"]=2943,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7047,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1339,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8539,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=94600,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=9907,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=294,
+ ["unit"]=0
+ }
+ },
+ [2943]={
+ ["next_chapter"]=2944,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7092,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1347,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8629,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=95500,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=9907,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=294,
+ ["unit"]=0
+ }
+ },
+ [2944]={
+ ["next_chapter"]=2945,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7137,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1356,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8719,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=96500,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=9907,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=294,
+ ["unit"]=0
+ }
+ },
+ [2945]={
+ ["next_chapter"]=2946,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7182,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1365,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8809,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=97500,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=9907,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=294,
+ ["unit"]=0
+ }
+ },
+ [2946]={
+ ["next_chapter"]=2947,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7228,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1373,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8899,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=98500,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=9907,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=294,
+ ["unit"]=0
+ }
+ },
+ [2947]={
+ ["next_chapter"]=2948,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7274,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1382,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8989,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=99500,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=9907,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=294,
+ ["unit"]=0
+ }
+ },
+ [2948]={
+ ["next_chapter"]=2949,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7320,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1391,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9089,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=100500,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=9907,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=294,
+ ["unit"]=0
+ }
+ },
+ [2949]={
+ ["next_chapter"]=2950,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7366,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1399,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9189,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=102000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=9907,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=294,
+ ["unit"]=0
+ }
+ },
+ [2950]={
+ ["next_chapter"]=2951,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=7412,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1408,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9289,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=103000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=10937,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=295,
+ ["unit"]=0
+ }
+ },
+ [2951]={
+ ["next_chapter"]=2952,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7458,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1417,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9389,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=104000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=10937,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=295,
+ ["unit"]=0
+ }
+ },
+ [2952]={
+ ["next_chapter"]=2953,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7505,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1426,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9489,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=105000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=10937,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=295,
+ ["unit"]=0
+ }
+ },
+ [2953]={
+ ["next_chapter"]=2954,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7552,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1435,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9589,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=106000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=10937,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=295,
+ ["unit"]=0
+ }
+ },
+ [2954]={
+ ["next_chapter"]=2955,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7599,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1444,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9689,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=107000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=10937,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=295,
+ ["unit"]=0
+ }
+ },
+ [2955]={
+ ["next_chapter"]=2956,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7647,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1453,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9789,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=108000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=10937,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=295,
+ ["unit"]=0
+ }
+ },
+ [2956]={
+ ["next_chapter"]=2957,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7694,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1462,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=109000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=10937,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=295,
+ ["unit"]=0
+ }
+ },
+ [2957]={
+ ["next_chapter"]=2958,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7742,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1471,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9989,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=110000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=10937,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=295,
+ ["unit"]=0
+ }
+ },
+ [2958]={
+ ["next_chapter"]=2959,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7790,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1480,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10089,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=111000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=10937,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=295,
+ ["unit"]=0
+ }
+ },
+ [2959]={
+ ["next_chapter"]=2960,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7838,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1489,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10189,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=112000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=10937,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=295,
+ ["unit"]=0
+ }
+ },
+ [2960]={
+ ["next_chapter"]=2961,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=7886,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1498,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10289,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=113000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=12067,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=296,
+ ["unit"]=0
+ }
+ },
+ [2961]={
+ ["next_chapter"]=2962,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7935,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1508,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10389,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=114000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=12067,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=296,
+ ["unit"]=0
+ }
+ },
+ [2962]={
+ ["next_chapter"]=2963,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7984,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1517,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10489,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=115000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=12067,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=296,
+ ["unit"]=0
+ }
+ },
+ [2963]={
+ ["next_chapter"]=2964,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8033,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1526,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10589,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=116000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=12067,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=296,
+ ["unit"]=0
+ }
+ },
+ [2964]={
+ ["next_chapter"]=2965,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8082,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1536,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10689,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=117000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=12067,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=296,
+ ["unit"]=0
+ }
+ },
+ [2965]={
+ ["next_chapter"]=2966,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8132,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1545,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10789,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=118000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=12067,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=296,
+ ["unit"]=0
+ }
+ },
+ [2966]={
+ ["next_chapter"]=2967,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8181,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1554,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=119000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=12067,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=296,
+ ["unit"]=0
+ }
+ },
+ [2967]={
+ ["next_chapter"]=2968,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8231,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1564,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10989,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=120000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=12067,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=296,
+ ["unit"]=0
+ }
+ },
+ [2968]={
+ ["next_chapter"]=2969,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8281,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1573,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11089,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=121000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=12067,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=296,
+ ["unit"]=0
+ }
+ },
+ [2969]={
+ ["next_chapter"]=2970,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8332,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1583,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11189,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=122000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=12067,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=296,
+ ["unit"]=0
+ }
+ },
+ [2970]={
+ ["next_chapter"]=2971,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=8382,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1593,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11289,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=123000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=13297,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=297,
+ ["unit"]=0
+ }
+ },
+ [2971]={
+ ["next_chapter"]=2972,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8433,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1602,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11389,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=124000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=13297,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=297,
+ ["unit"]=0
+ }
+ },
+ [2972]={
+ ["next_chapter"]=2973,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8484,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1612,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11489,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=125000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=13297,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=297,
+ ["unit"]=0
+ }
+ },
+ [2973]={
+ ["next_chapter"]=2974,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8535,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1622,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11589,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=126000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=13297,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=297,
+ ["unit"]=0
+ }
+ },
+ [2974]={
+ ["next_chapter"]=2975,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8586,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1631,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11689,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=127000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=13297,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=297,
+ ["unit"]=0
+ }
+ },
+ [2975]={
+ ["next_chapter"]=2976,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8638,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1641,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11789,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=128000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=13297,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=297,
+ ["unit"]=0
+ }
+ },
+ [2976]={
+ ["next_chapter"]=2977,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8690,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1651,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=129000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=13297,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=297,
+ ["unit"]=0
+ }
+ },
+ [2977]={
+ ["next_chapter"]=2978,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8742,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1661,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11989,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=130000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=13297,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=297,
+ ["unit"]=0
+ }
+ },
+ [2978]={
+ ["next_chapter"]=2979,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8794,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1671,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12089,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=131000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=13297,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=297,
+ ["unit"]=0
+ }
+ },
+ [2979]={
+ ["next_chapter"]=2980,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8847,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1681,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12189,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=132000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=13297,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=297,
+ ["unit"]=0
+ }
+ },
+ [2980]={
+ ["next_chapter"]=2981,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=8899,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1691,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12289,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=133000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=14627,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=298,
+ ["unit"]=0
+ }
+ },
+ [2981]={
+ ["next_chapter"]=2982,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8952,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1701,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12389,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=134000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=14627,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=298,
+ ["unit"]=0
+ }
+ },
+ [2982]={
+ ["next_chapter"]=2983,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9005,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1711,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12489,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=135000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=14627,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=298,
+ ["unit"]=0
+ }
+ },
+ [2983]={
+ ["next_chapter"]=2984,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9059,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1721,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12589,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=136000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=14627,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=298,
+ ["unit"]=0
+ }
+ },
+ [2984]={
+ ["next_chapter"]=2985,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9112,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1731,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12689,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=137000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=14627,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=298,
+ ["unit"]=0
+ }
+ },
+ [2985]={
+ ["next_chapter"]=2986,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9166,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1742,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12789,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=138000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=14627,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=298,
+ ["unit"]=0
+ }
+ },
+ [2986]={
+ ["next_chapter"]=2987,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9220,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1752,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=139000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=14627,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=298,
+ ["unit"]=0
+ }
+ },
+ [2987]={
+ ["next_chapter"]=2988,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9274,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1762,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12989,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=140000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=14627,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=298,
+ ["unit"]=0
+ }
+ },
+ [2988]={
+ ["next_chapter"]=2989,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9329,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1772,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13089,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=141000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=14627,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=298,
+ ["unit"]=0
+ }
+ },
+ [2989]={
+ ["next_chapter"]=2990,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9383,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1783,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13189,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=142000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=14627,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=298,
+ ["unit"]=0
+ }
+ },
+ [2990]={
+ ["next_chapter"]=2991,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=9438,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1793,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13289,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=143000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=16057,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=299,
+ ["unit"]=0
+ }
+ },
+ [2991]={
+ ["next_chapter"]=2992,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9494,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1804,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13389,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=144000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=16057,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=299,
+ ["unit"]=0
+ }
+ },
+ [2992]={
+ ["next_chapter"]=2993,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9549,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1814,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13489,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=145000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=16057,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=299,
+ ["unit"]=0
+ }
+ },
+ [2993]={
+ ["next_chapter"]=2994,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9604,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1825,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13589,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=146000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=16057,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=299,
+ ["unit"]=0
+ }
+ },
+ [2994]={
+ ["next_chapter"]=2995,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9660,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1835,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13689,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=147000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=16057,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=299,
+ ["unit"]=0
+ }
+ },
+ [2995]={
+ ["next_chapter"]=2996,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9716,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1846,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13789,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=148000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=16057,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=299,
+ ["unit"]=0
+ }
+ },
+ [2996]={
+ ["next_chapter"]=2997,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9773,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1857,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=149000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=16057,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=299,
+ ["unit"]=0
+ }
+ },
+ [2997]={
+ ["next_chapter"]=2998,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9829,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1868,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13989,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=150000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=16057,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=299,
+ ["unit"]=0
+ }
+ },
+ [2998]={
+ ["next_chapter"]=2999,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9886,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1878,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14089,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=152000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=16057,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=299,
+ ["unit"]=0
+ }
+ },
+ [2999]={
+ ["next_chapter"]=3000,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9943,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=1889,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14189,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=154000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=16057,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=299,
+ ["unit"]=0
+ }
+ },
+ [3000]={
+ ["next_chapter"]=3001,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=10000,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2000,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14289,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=156000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=17617,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=300,
+ ["unit"]=0
+ }
+ },
+ [3001]={
+ ["next_chapter"]=3002,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10000,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2000,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14389,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=158000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=17617,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=300,
+ ["unit"]=0
+ }
+ },
+ [3002]={
+ ["next_chapter"]=3003,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10000,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2000,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14489,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=160000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=17617,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=300,
+ ["unit"]=0
+ }
+ },
+ [3003]={
+ ["next_chapter"]=3004,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10000,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2000,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14589,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=162000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=17617,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=300,
+ ["unit"]=0
+ }
+ },
+ [3004]={
+ ["next_chapter"]=3005,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10000,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2000,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14689,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=164000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=17617,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=300,
+ ["unit"]=0
+ }
+ },
+ [3005]={
+ ["next_chapter"]=3006,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10000,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2000,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14789,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=166000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=17617,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=300,
+ ["unit"]=0
+ }
+ },
+ [3006]={
+ ["next_chapter"]=3007,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10000,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2000,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=168000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=17617,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=300,
+ ["unit"]=0
+ }
+ },
+ [3007]={
+ ["next_chapter"]=3008,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10000,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2000,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14989,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=170000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=17617,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=300,
+ ["unit"]=0
+ }
+ },
+ [3008]={
+ ["next_chapter"]=3009,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10000,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2000,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15089,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=172000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=17617,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=300,
+ ["unit"]=0
+ }
+ },
+ [3009]={
+ ["next_chapter"]=3010,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10001,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2000,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15189,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=174000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=17617,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=300,
+ ["unit"]=0
+ }
+ },
+ [3010]={
+ ["next_chapter"]=3011,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=10001,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2000,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15289,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=176000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=19377,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=301,
+ ["unit"]=0
+ }
+ },
+ [3011]={
+ ["next_chapter"]=3012,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10001,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2000,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15389,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=178000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=19377,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=301,
+ ["unit"]=0
+ }
+ },
+ [3012]={
+ ["next_chapter"]=3013,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10002,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2000,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15489,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=180000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=19377,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=301,
+ ["unit"]=0
+ }
+ },
+ [3013]={
+ ["next_chapter"]=3014,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10002,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2000,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15589,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=182000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=19377,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=301,
+ ["unit"]=0
+ }
+ },
+ [3014]={
+ ["next_chapter"]=3015,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10002,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2000,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15689,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=184000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=19377,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=301,
+ ["unit"]=0
+ }
+ },
+ [3015]={
+ ["next_chapter"]=3016,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10003,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2001,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15789,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=186000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=19377,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=301,
+ ["unit"]=0
+ }
+ },
+ [3016]={
+ ["next_chapter"]=3017,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10004,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2001,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=188000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=19377,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=301,
+ ["unit"]=0
+ }
+ },
+ [3017]={
+ ["next_chapter"]=3018,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10004,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2001,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15989,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=190000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=19377,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=301,
+ ["unit"]=0
+ }
+ },
+ [3018]={
+ ["next_chapter"]=3019,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10005,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2001,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16089,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=192000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=19377,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=301,
+ ["unit"]=0
+ }
+ },
+ [3019]={
+ ["next_chapter"]=3020,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10006,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2001,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16189,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=194000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=19377,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=301,
+ ["unit"]=0
+ }
+ },
+ [3020]={
+ ["next_chapter"]=3021,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=10007,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2001,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16289,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=196000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=21337,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=302,
+ ["unit"]=0
+ }
+ },
+ [3021]={
+ ["next_chapter"]=3022,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10008,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2002,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16389,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=198000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=21337,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=302,
+ ["unit"]=0
+ }
+ },
+ [3022]={
+ ["next_chapter"]=3023,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10009,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2002,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16589,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=200000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=21337,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=302,
+ ["unit"]=0
+ }
+ },
+ [3023]={
+ ["next_chapter"]=3024,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10011,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2002,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16789,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=202000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=21337,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=302,
+ ["unit"]=0
+ }
+ },
+ [3024]={
+ ["next_chapter"]=3025,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10012,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2002,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16989,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=204000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=21337,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=302,
+ ["unit"]=0
+ }
+ },
+ [3025]={
+ ["next_chapter"]=3026,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10014,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2003,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17189,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=206000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=21337,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=302,
+ ["unit"]=0
+ }
+ },
+ [3026]={
+ ["next_chapter"]=3027,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10015,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2003,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17389,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=208000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=21337,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=302,
+ ["unit"]=0
+ }
+ },
+ [3027]={
+ ["next_chapter"]=3028,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10017,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2003,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17589,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=210000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=21337,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=302,
+ ["unit"]=0
+ }
+ },
+ [3028]={
+ ["next_chapter"]=3029,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10019,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2004,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17789,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=212000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=21337,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=302,
+ ["unit"]=0
+ }
+ },
+ [3029]={
+ ["next_chapter"]=3030,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10021,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2004,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17989,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=214000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=21337,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=302,
+ ["unit"]=0
+ }
+ },
+ [3030]={
+ ["next_chapter"]=3031,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=10024,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2005,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18189,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=216000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=23497,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=303,
+ ["unit"]=0
+ }
+ },
+ [3031]={
+ ["next_chapter"]=3032,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10026,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2005,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18389,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=218000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=23497,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=303,
+ ["unit"]=0
+ }
+ },
+ [3032]={
+ ["next_chapter"]=3033,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10029,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2006,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18589,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=220000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=23497,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=303,
+ ["unit"]=0
+ }
+ },
+ [3033]={
+ ["next_chapter"]=3034,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10032,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2006,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18789,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=222000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=23497,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=303,
+ ["unit"]=0
+ }
+ },
+ [3034]={
+ ["next_chapter"]=3035,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10035,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2007,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18989,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=224000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=23497,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=303,
+ ["unit"]=0
+ }
+ },
+ [3035]={
+ ["next_chapter"]=3036,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10038,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2008,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19189,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=226000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=23497,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=303,
+ ["unit"]=0
+ }
+ },
+ [3036]={
+ ["next_chapter"]=3037,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10041,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2008,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19389,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=228000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=23497,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=303,
+ ["unit"]=0
+ }
+ },
+ [3037]={
+ ["next_chapter"]=3038,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10045,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2009,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19589,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=230000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=23497,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=303,
+ ["unit"]=0
+ }
+ },
+ [3038]={
+ ["next_chapter"]=3039,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10048,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2010,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19789,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=232000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=23497,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=303,
+ ["unit"]=0
+ }
+ },
+ [3039]={
+ ["next_chapter"]=3040,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10052,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2010,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19989,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=234000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=23497,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=303,
+ ["unit"]=0
+ }
+ },
+ [3040]={
+ ["next_chapter"]=3041,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=10056,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2011,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20189,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=236000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=25857,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=304,
+ ["unit"]=0
+ }
+ },
+ [3041]={
+ ["next_chapter"]=3042,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10061,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2012,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20389,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=238000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=25857,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=304,
+ ["unit"]=0
+ }
+ },
+ [3042]={
+ ["next_chapter"]=3043,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10065,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2013,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20589,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=240000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=25857,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=304,
+ ["unit"]=0
+ }
+ },
+ [3043]={
+ ["next_chapter"]=3044,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10070,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2014,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20789,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=242000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=25857,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=304,
+ ["unit"]=0
+ }
+ },
+ [3044]={
+ ["next_chapter"]=3045,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10075,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2015,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20989,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=244000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=25857,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=304,
+ ["unit"]=0
+ }
+ },
+ [3045]={
+ ["next_chapter"]=3046,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10080,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2016,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21189,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=246000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=25857,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=304,
+ ["unit"]=0
+ }
+ },
+ [3046]={
+ ["next_chapter"]=3047,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10086,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2017,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21389,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=248000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=25857,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=304,
+ ["unit"]=0
+ }
+ },
+ [3047]={
+ ["next_chapter"]=3048,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10091,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2018,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21589,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=250000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=25857,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=304,
+ ["unit"]=0
+ }
+ },
+ [3048]={
+ ["next_chapter"]=3049,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10097,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2019,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21789,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=253000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=25857,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=304,
+ ["unit"]=0
+ }
+ },
+ [3049]={
+ ["next_chapter"]=3050,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10104,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2021,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21989,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=256000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=25857,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=304,
+ ["unit"]=0
+ }
+ },
+ [3050]={
+ ["next_chapter"]=3051,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=10110,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2022,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22189,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=259000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=28447,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=305,
+ ["unit"]=0
+ }
+ },
+ [3051]={
+ ["next_chapter"]=3052,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10117,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2023,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22389,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=262000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=28447,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=305,
+ ["unit"]=0
+ }
+ },
+ [3052]={
+ ["next_chapter"]=3053,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10124,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2025,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22589,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=265000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=28447,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=305,
+ ["unit"]=0
+ }
+ },
+ [3053]={
+ ["next_chapter"]=3054,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10131,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2026,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22789,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=268000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=28447,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=305,
+ ["unit"]=0
+ }
+ },
+ [3054]={
+ ["next_chapter"]=3055,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10139,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2028,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22989,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=271000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=28447,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=305,
+ ["unit"]=0
+ }
+ },
+ [3055]={
+ ["next_chapter"]=3056,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10146,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2029,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23189,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=274000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=28447,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=305,
+ ["unit"]=0
+ }
+ },
+ [3056]={
+ ["next_chapter"]=3057,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10155,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2031,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23389,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=277000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=28447,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=305,
+ ["unit"]=0
+ }
+ },
+ [3057]={
+ ["next_chapter"]=3058,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10163,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2033,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23589,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=280000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=28447,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=305,
+ ["unit"]=0
+ }
+ },
+ [3058]={
+ ["next_chapter"]=3059,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10172,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2034,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23789,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=283000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=28447,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=305,
+ ["unit"]=0
+ }
+ },
+ [3059]={
+ ["next_chapter"]=3060,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10181,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2036,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23989,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=286000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=28447,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=305,
+ ["unit"]=0
+ }
+ },
+ [3060]={
+ ["next_chapter"]=3061,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=10190,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2038,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24189,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=289000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=31337,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=306,
+ ["unit"]=0
+ }
+ },
+ [3061]={
+ ["next_chapter"]=3062,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10200,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2040,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24389,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=292000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=31337,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=306,
+ ["unit"]=0
+ }
+ },
+ [3062]={
+ ["next_chapter"]=3063,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10210,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2042,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24589,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=295000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=31337,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=306,
+ ["unit"]=0
+ }
+ },
+ [3063]={
+ ["next_chapter"]=3064,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10220,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2044,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24789,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=298000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=31337,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=306,
+ ["unit"]=0
+ }
+ },
+ [3064]={
+ ["next_chapter"]=3065,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10231,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2046,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25089,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=301000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=31337,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=306,
+ ["unit"]=0
+ }
+ },
+ [3065]={
+ ["next_chapter"]=3066,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10242,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2048,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25389,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=304000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=31337,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=306,
+ ["unit"]=0
+ }
+ },
+ [3066]={
+ ["next_chapter"]=3067,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10253,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2051,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25689,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=307000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=31337,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=306,
+ ["unit"]=0
+ }
+ },
+ [3067]={
+ ["next_chapter"]=3068,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10265,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2053,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25989,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=310000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=31337,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=306,
+ ["unit"]=0
+ }
+ },
+ [3068]={
+ ["next_chapter"]=3069,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10277,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2055,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26289,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=313000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=31337,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=306,
+ ["unit"]=0
+ }
+ },
+ [3069]={
+ ["next_chapter"]=3070,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10289,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2058,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26589,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=316000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=31337,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=306,
+ ["unit"]=0
+ }
+ },
+ [3070]={
+ ["next_chapter"]=3071,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=10302,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2060,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=319000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=34527,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=307,
+ ["unit"]=0
+ }
+ },
+ [3071]={
+ ["next_chapter"]=3072,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10315,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2063,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27189,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=322000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=34527,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=307,
+ ["unit"]=0
+ }
+ },
+ [3072]={
+ ["next_chapter"]=3073,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10328,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2066,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27489,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=325000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=34527,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=307,
+ ["unit"]=0
+ }
+ },
+ [3073]={
+ ["next_chapter"]=3074,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10342,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2068,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27789,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=328000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=34527,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=307,
+ ["unit"]=0
+ }
+ },
+ [3074]={
+ ["next_chapter"]=3075,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10357,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2071,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28089,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=331000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=34527,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=307,
+ ["unit"]=0
+ }
+ },
+ [3075]={
+ ["next_chapter"]=3076,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10371,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2074,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28389,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=334000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=34527,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=307,
+ ["unit"]=0
+ }
+ },
+ [3076]={
+ ["next_chapter"]=3077,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10386,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2077,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28689,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=337000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=34527,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=307,
+ ["unit"]=0
+ }
+ },
+ [3077]={
+ ["next_chapter"]=3078,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10402,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2080,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28989,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=340000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=34527,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=307,
+ ["unit"]=0
+ }
+ },
+ [3078]={
+ ["next_chapter"]=3079,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10418,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2084,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29289,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=343000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=34527,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=307,
+ ["unit"]=0
+ }
+ },
+ [3079]={
+ ["next_chapter"]=3080,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10434,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2087,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29589,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=346000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=34527,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=307,
+ ["unit"]=0
+ }
+ },
+ [3080]={
+ ["next_chapter"]=3081,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=10451,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2090,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=349000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=38017,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=308,
+ ["unit"]=0
+ }
+ },
+ [3081]={
+ ["next_chapter"]=3082,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10468,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2094,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30189,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=352000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=38017,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=308,
+ ["unit"]=0
+ }
+ },
+ [3082]={
+ ["next_chapter"]=3083,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10485,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2097,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30489,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=356000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=38017,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=308,
+ ["unit"]=0
+ }
+ },
+ [3083]={
+ ["next_chapter"]=3084,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10503,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2101,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30789,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=360000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=38017,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=308,
+ ["unit"]=0
+ }
+ },
+ [3084]={
+ ["next_chapter"]=3085,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10522,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2104,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31089,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=364000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=38017,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=308,
+ ["unit"]=0
+ }
+ },
+ [3085]={
+ ["next_chapter"]=3086,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10540,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2108,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31389,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=368000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=38017,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=308,
+ ["unit"]=0
+ }
+ },
+ [3086]={
+ ["next_chapter"]=3087,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10560,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2112,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31689,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=372000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=38017,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=308,
+ ["unit"]=0
+ }
+ },
+ [3087]={
+ ["next_chapter"]=3088,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10579,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2116,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31989,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=376000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=38017,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=308,
+ ["unit"]=0
+ }
+ },
+ [3088]={
+ ["next_chapter"]=3089,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10600,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2120,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32289,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=380000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=38017,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=308,
+ ["unit"]=0
+ }
+ },
+ [3089]={
+ ["next_chapter"]=3090,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10620,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2124,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32589,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=384000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=38017,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=308,
+ ["unit"]=0
+ }
+ },
+ [3090]={
+ ["next_chapter"]=3091,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=10642,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2128,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=388000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=41897,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=309,
+ ["unit"]=0
+ }
+ },
+ [3091]={
+ ["next_chapter"]=3092,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10663,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2133,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33189,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=392000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=41897,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=309,
+ ["unit"]=0
+ }
+ },
+ [3092]={
+ ["next_chapter"]=3093,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10685,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2137,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33489,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=396000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=41897,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=309,
+ ["unit"]=0
+ }
+ },
+ [3093]={
+ ["next_chapter"]=3094,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10708,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2142,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=400000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=41897,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=309,
+ ["unit"]=0
+ }
+ },
+ [3094]={
+ ["next_chapter"]=3095,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10731,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2146,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34289,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=404000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=41897,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=309,
+ ["unit"]=0
+ }
+ },
+ [3095]={
+ ["next_chapter"]=3096,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10754,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2151,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34689,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=408000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=41897,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=309,
+ ["unit"]=0
+ }
+ },
+ [3096]={
+ ["next_chapter"]=3097,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10779,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2156,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35089,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=412000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=41897,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=309,
+ ["unit"]=0
+ }
+ },
+ [3097]={
+ ["next_chapter"]=3098,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10803,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2161,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35489,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=416000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=41897,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=309,
+ ["unit"]=0
+ }
+ },
+ [3098]={
+ ["next_chapter"]=3099,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10828,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2166,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=420000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=41897,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=309,
+ ["unit"]=0
+ }
+ },
+ [3099]={
+ ["next_chapter"]=3100,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10854,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2171,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36289,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=424000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=41897,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=309,
+ ["unit"]=0
+ }
+ },
+ [3100]={
+ ["next_chapter"]=3101,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=10880,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2176,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36689,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=428000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=50,
+ ["grasp_gold_reward"]={
+ ["value"]=46177,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=310,
+ ["unit"]=0
+ }
+ },
+ [3101]={
+ ["next_chapter"]=3102,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10907,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2181,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37089,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=432000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=46177,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=310,
+ ["unit"]=0
+ }
+ },
+ [3102]={
+ ["next_chapter"]=3103,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10934,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2187,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37489,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=436000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=46177,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=310,
+ ["unit"]=0
+ }
+ },
+ [3103]={
+ ["next_chapter"]=3104,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10962,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2192,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=440000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=46177,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=310,
+ ["unit"]=0
+ }
+ },
+ [3104]={
+ ["next_chapter"]=3105,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10990,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2198,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=38289,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=444000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=46177,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=310,
+ ["unit"]=0
+ }
+ },
+ [3105]={
+ ["next_chapter"]=3106,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11019,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2204,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=38689,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=448000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=46177,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=310,
+ ["unit"]=0
+ }
+ },
+ [3106]={
+ ["next_chapter"]=3107,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11048,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2210,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39089,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=452000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=46177,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=310,
+ ["unit"]=0
+ }
+ },
+ [3107]={
+ ["next_chapter"]=3108,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11078,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2216,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39489,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=457000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=46177,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=310,
+ ["unit"]=0
+ }
+ },
+ [3108]={
+ ["next_chapter"]=3109,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11109,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2222,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=462000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=46177,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=310,
+ ["unit"]=0
+ }
+ },
+ [3109]={
+ ["next_chapter"]=3110,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11140,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2228,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=40289,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=467000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=46177,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=310,
+ ["unit"]=0
+ }
+ },
+ [3110]={
+ ["next_chapter"]=3111,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=11171,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2234,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=40689,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=472000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=50897,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=311,
+ ["unit"]=0
+ }
+ },
+ [3111]={
+ ["next_chapter"]=3112,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11204,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2241,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41089,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=477000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=50897,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=311,
+ ["unit"]=0
+ }
+ },
+ [3112]={
+ ["next_chapter"]=3113,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11236,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2247,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41489,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=482000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=50897,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=311,
+ ["unit"]=0
+ }
+ },
+ [3113]={
+ ["next_chapter"]=3114,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11270,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2254,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=487000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=50897,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=311,
+ ["unit"]=0
+ }
+ },
+ [3114]={
+ ["next_chapter"]=3115,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11304,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2261,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=42289,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=492000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=50897,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=311,
+ ["unit"]=0
+ }
+ },
+ [3115]={
+ ["next_chapter"]=3116,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11338,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2268,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=42689,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=497000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=50897,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=311,
+ ["unit"]=0
+ }
+ },
+ [3116]={
+ ["next_chapter"]=3117,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11374,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2275,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=43189,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=502000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=50897,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=311,
+ ["unit"]=0
+ }
+ },
+ [3117]={
+ ["next_chapter"]=3118,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11409,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2282,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=43689,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=507000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=50897,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=311,
+ ["unit"]=0
+ }
+ },
+ [3118]={
+ ["next_chapter"]=3119,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11446,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2289,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=44189,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=512000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=50897,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=311,
+ ["unit"]=0
+ }
+ },
+ [3119]={
+ ["next_chapter"]=3120,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11483,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2297,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=44689,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=517000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=50897,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=311,
+ ["unit"]=0
+ }
+ },
+ [3120]={
+ ["next_chapter"]=3121,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=11521,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2304,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=45189,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=522000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=56117,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=312,
+ ["unit"]=0
+ }
+ },
+ [3121]={
+ ["next_chapter"]=3122,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11559,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2312,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=45689,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=527000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=56117,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=312,
+ ["unit"]=0
+ }
+ },
+ [3122]={
+ ["next_chapter"]=3123,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11598,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2320,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=46189,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=532000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=56117,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=312,
+ ["unit"]=0
+ }
+ },
+ [3123]={
+ ["next_chapter"]=3124,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11638,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2328,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=46689,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=537000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=56117,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=312,
+ ["unit"]=0
+ }
+ },
+ [3124]={
+ ["next_chapter"]=3125,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11678,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2336,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=47189,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=542000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=56117,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=312,
+ ["unit"]=0
+ }
+ },
+ [3125]={
+ ["next_chapter"]=3126,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11719,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2344,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=47689,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=547000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=56117,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=312,
+ ["unit"]=0
+ }
+ },
+ [3126]={
+ ["next_chapter"]=3127,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11760,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2352,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=48189,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=552000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=56117,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=312,
+ ["unit"]=0
+ }
+ },
+ [3127]={
+ ["next_chapter"]=3128,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11803,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2361,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=48689,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=558000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=56117,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=312,
+ ["unit"]=0
+ }
+ },
+ [3128]={
+ ["next_chapter"]=3129,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11845,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2369,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=49189,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=564000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=56117,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=312,
+ ["unit"]=0
+ }
+ },
+ [3129]={
+ ["next_chapter"]=3130,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11889,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2378,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=49689,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=570000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=56117,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=312,
+ ["unit"]=0
+ }
+ },
+ [3130]={
+ ["next_chapter"]=3131,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=11933,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2387,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=50189,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=576000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=61877,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=313,
+ ["unit"]=0
+ }
+ },
+ [3131]={
+ ["next_chapter"]=3132,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11978,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2396,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=50689,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=582000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=61877,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=313,
+ ["unit"]=0
+ }
+ },
+ [3132]={
+ ["next_chapter"]=3133,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12024,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2405,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=51189,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=588000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=61877,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=313,
+ ["unit"]=0
+ }
+ },
+ [3133]={
+ ["next_chapter"]=3134,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12070,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2414,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=51689,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=594000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=61877,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=313,
+ ["unit"]=0
+ }
+ },
+ [3134]={
+ ["next_chapter"]=3135,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12117,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2423,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=52289,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=600000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=61877,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=313,
+ ["unit"]=0
+ }
+ },
+ [3135]={
+ ["next_chapter"]=3136,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12165,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2433,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=52889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=606000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=61877,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=313,
+ ["unit"]=0
+ }
+ },
+ [3136]={
+ ["next_chapter"]=3137,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12214,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2443,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=53489,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=612000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=61877,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=313,
+ ["unit"]=0
+ }
+ },
+ [3137]={
+ ["next_chapter"]=3138,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12263,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2453,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=54089,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=618000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=61877,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=313,
+ ["unit"]=0
+ }
+ },
+ [3138]={
+ ["next_chapter"]=3139,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12313,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2463,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=54689,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=624000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=61877,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=313,
+ ["unit"]=0
+ }
+ },
+ [3139]={
+ ["next_chapter"]=3140,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12363,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2473,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=55289,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=630000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=61877,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=313,
+ ["unit"]=0
+ }
+ },
+ [3140]={
+ ["next_chapter"]=3141,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=12415,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2483,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=55889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=636000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=68237,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=314,
+ ["unit"]=0
+ }
+ },
+ [3141]={
+ ["next_chapter"]=3142,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12467,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2493,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=56489,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=642000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=68237,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=314,
+ ["unit"]=0
+ }
+ },
+ [3142]={
+ ["next_chapter"]=3143,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12520,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2504,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=57089,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=648000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=68237,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=314,
+ ["unit"]=0
+ }
+ },
+ [3143]={
+ ["next_chapter"]=3144,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12573,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2515,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=57689,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=654000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=68237,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=314,
+ ["unit"]=0
+ }
+ },
+ [3144]={
+ ["next_chapter"]=3145,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12628,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2526,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=58289,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=661000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=68237,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=314,
+ ["unit"]=0
+ }
+ },
+ [3145]={
+ ["next_chapter"]=3146,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12683,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2537,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=58889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=668000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=68237,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=314,
+ ["unit"]=0
+ }
+ },
+ [3146]={
+ ["next_chapter"]=3147,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12739,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2548,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=59489,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=675000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=68237,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=314,
+ ["unit"]=0
+ }
+ },
+ [3147]={
+ ["next_chapter"]=3148,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12795,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2559,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=60089,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=682000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=68237,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=314,
+ ["unit"]=0
+ }
+ },
+ [3148]={
+ ["next_chapter"]=3149,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12853,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2571,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=60689,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=689000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=68237,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=314,
+ ["unit"]=0
+ }
+ },
+ [3149]={
+ ["next_chapter"]=3150,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12911,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2582,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=61289,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=696000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=68237,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=314,
+ ["unit"]=0
+ }
+ },
+ [3150]={
+ ["next_chapter"]=3151,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=12970,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2594,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=61989,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=703000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=75267,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=315,
+ ["unit"]=0
+ }
+ },
+ [3151]={
+ ["next_chapter"]=3152,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13030,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2606,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=62689,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=710000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=75267,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=315,
+ ["unit"]=0
+ }
+ },
+ [3152]={
+ ["next_chapter"]=3153,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13090,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2618,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=63389,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=717000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=75267,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=315,
+ ["unit"]=0
+ }
+ },
+ [3153]={
+ ["next_chapter"]=3154,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13152,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2630,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=64089,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=724000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=75267,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=315,
+ ["unit"]=0
+ }
+ },
+ [3154]={
+ ["next_chapter"]=3155,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13214,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2643,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=64789,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=731000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=75267,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=315,
+ ["unit"]=0
+ }
+ },
+ [3155]={
+ ["next_chapter"]=3156,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13277,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2655,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=65489,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=738000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=75267,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=315,
+ ["unit"]=0
+ }
+ },
+ [3156]={
+ ["next_chapter"]=3157,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13341,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2668,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=66189,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=745000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=75267,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=315,
+ ["unit"]=0
+ }
+ },
+ [3157]={
+ ["next_chapter"]=3158,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13406,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2681,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=66889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=752000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=75267,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=315,
+ ["unit"]=0
+ }
+ },
+ [3158]={
+ ["next_chapter"]=3159,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13471,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2694,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=67589,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=760000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=75267,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=315,
+ ["unit"]=0
+ }
+ },
+ [3159]={
+ ["next_chapter"]=3160,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13537,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2707,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=68289,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=768000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=75267,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=315,
+ ["unit"]=0
+ }
+ },
+ [3160]={
+ ["next_chapter"]=3161,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=13604,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2721,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=68989,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=776000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=83027,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=316,
+ ["unit"]=0
+ }
+ },
+ [3161]={
+ ["next_chapter"]=3162,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13672,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2734,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=69689,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=784000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=83027,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=316,
+ ["unit"]=0
+ }
+ },
+ [3162]={
+ ["next_chapter"]=3163,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13741,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2748,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=70389,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=792000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=83027,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=316,
+ ["unit"]=0
+ }
+ },
+ [3163]={
+ ["next_chapter"]=3164,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13811,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2762,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=71189,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=800000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=83027,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=316,
+ ["unit"]=0
+ }
+ },
+ [3164]={
+ ["next_chapter"]=3165,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13882,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2776,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=71989,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=808000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=83027,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=316,
+ ["unit"]=0
+ }
+ },
+ [3165]={
+ ["next_chapter"]=3166,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13953,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2791,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=72789,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=816000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=83027,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=316,
+ ["unit"]=0
+ }
+ },
+ [3166]={
+ ["next_chapter"]=3167,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14025,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2805,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=73589,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=824000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=83027,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=316,
+ ["unit"]=0
+ }
+ },
+ [3167]={
+ ["next_chapter"]=3168,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14099,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2820,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=74389,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=832000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=83027,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=316,
+ ["unit"]=0
+ }
+ },
+ [3168]={
+ ["next_chapter"]=3169,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14173,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2835,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=75189,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=840000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=83027,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=316,
+ ["unit"]=0
+ }
+ },
+ [3169]={
+ ["next_chapter"]=3170,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14248,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2850,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=75989,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=848000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=83027,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=316,
+ ["unit"]=0
+ }
+ },
+ [3170]={
+ ["next_chapter"]=3171,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=14323,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2865,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=76789,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=856000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=91587,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=317,
+ ["unit"]=0
+ }
+ },
+ [3171]={
+ ["next_chapter"]=3172,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14400,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2880,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=77589,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=865000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=91587,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=317,
+ ["unit"]=0
+ }
+ },
+ [3172]={
+ ["next_chapter"]=3173,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14478,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2896,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=78389,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=874000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=91587,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=317,
+ ["unit"]=0
+ }
+ },
+ [3173]={
+ ["next_chapter"]=3174,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14556,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2911,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=79189,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=883000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=91587,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=317,
+ ["unit"]=0
+ }
+ },
+ [3174]={
+ ["next_chapter"]=3175,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14636,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2927,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=79989,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=892000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=91587,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=317,
+ ["unit"]=0
+ }
+ },
+ [3175]={
+ ["next_chapter"]=3176,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14716,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2943,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=900000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=80889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=901000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=91587,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=317,
+ ["unit"]=0
+ }
+ },
+ [3176]={
+ ["next_chapter"]=3177,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14798,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2960,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=900000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=81789,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=910000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=91587,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=317,
+ ["unit"]=0
+ }
+ },
+ [3177]={
+ ["next_chapter"]=3178,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14880,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2976,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=900000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=82689,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=919000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=91587,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=317,
+ ["unit"]=0
+ }
+ },
+ [3178]={
+ ["next_chapter"]=3179,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14963,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=2993,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=900000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=83589,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=928000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=91587,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=317,
+ ["unit"]=0
+ }
+ },
+ [3179]={
+ ["next_chapter"]=3180,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15047,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=3009,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=900000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=84489,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=937000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=91587,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=317,
+ ["unit"]=0
+ }
+ },
+ [3180]={
+ ["next_chapter"]=3181,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=15132,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=3026,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=900000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=85389,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=946000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=101047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=318,
+ ["unit"]=0
+ }
+ },
+ [3181]={
+ ["next_chapter"]=3182,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15218,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=3044,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=900000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=86289,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=955000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=101047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=318,
+ ["unit"]=0
+ }
+ },
+ [3182]={
+ ["next_chapter"]=3183,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15305,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=3061,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=900000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=87189,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=965000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=101047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=318,
+ ["unit"]=0
+ }
+ },
+ [3183]={
+ ["next_chapter"]=3184,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15393,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=3079,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=900000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=88089,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=975000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=101047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=318,
+ ["unit"]=0
+ }
+ },
+ [3184]={
+ ["next_chapter"]=3185,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15482,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=3096,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=900000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=88989,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=985000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=101047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=318,
+ ["unit"]=0
+ }
+ },
+ [3185]={
+ ["next_chapter"]=3186,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15572,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=3114,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=900000,
+ ["unit"]=3
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=89889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=995000,
+ ["unit"]=3
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=101047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=318,
+ ["unit"]=0
+ }
+ },
+ [3186]={
+ ["next_chapter"]=3187,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15663,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=3133,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=90889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1005,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=101047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=318,
+ ["unit"]=0
+ }
+ },
+ [3187]={
+ ["next_chapter"]=3188,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15754,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=3151,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=91889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1020,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=101047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=318,
+ ["unit"]=0
+ }
+ },
+ [3188]={
+ ["next_chapter"]=3189,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15847,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=3169,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=92889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1030,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=101047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=318,
+ ["unit"]=0
+ }
+ },
+ [3189]={
+ ["next_chapter"]=3190,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15941,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=3188,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=93889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1040,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=101047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=318,
+ ["unit"]=0
+ }
+ },
+ [3190]={
+ ["next_chapter"]=3191,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=16036,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=3207,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=94889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1050,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=111547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=319,
+ ["unit"]=0
+ }
+ },
+ [3191]={
+ ["next_chapter"]=3192,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16132,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=3226,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=95889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1060,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=111547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=319,
+ ["unit"]=0
+ }
+ },
+ [3192]={
+ ["next_chapter"]=3193,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16229,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=3246,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=96889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1070,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=111547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=319,
+ ["unit"]=0
+ }
+ },
+ [3193]={
+ ["next_chapter"]=3194,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16326,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=3265,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=97889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1080,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=111547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=319,
+ ["unit"]=0
+ }
+ },
+ [3194]={
+ ["next_chapter"]=3195,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16425,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=3285,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=98889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1090,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=111547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=319,
+ ["unit"]=0
+ }
+ },
+ [3195]={
+ ["next_chapter"]=3196,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16525,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=3305,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=99889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1100,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=111547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=319,
+ ["unit"]=0
+ }
+ },
+ [3196]={
+ ["next_chapter"]=3197,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16626,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=3325,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=100889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1110,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=111547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=319,
+ ["unit"]=0
+ }
+ },
+ [3197]={
+ ["next_chapter"]=3198,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16728,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=3346,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=101889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1120,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=111547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=319,
+ ["unit"]=0
+ }
+ },
+ [3198]={
+ ["next_chapter"]=3199,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16831,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=3366,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=102889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1130,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=111547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=319,
+ ["unit"]=0
+ }
+ },
+ [3199]={
+ ["next_chapter"]=3200,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16935,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=3387,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=103889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1140,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=111547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=319,
+ ["unit"]=0
+ }
+ },
+ [3200]={
+ ["next_chapter"]=3201,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=17040,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=3408,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=104889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1150,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=123047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=320,
+ ["unit"]=0
+ }
+ },
+ [3201]={
+ ["next_chapter"]=3202,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17146,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=3429,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=105889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1160,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=123047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=320,
+ ["unit"]=0
+ }
+ },
+ [3202]={
+ ["next_chapter"]=3203,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17253,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=3451,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=106889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1170,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=123047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=320,
+ ["unit"]=0
+ }
+ },
+ [3203]={
+ ["next_chapter"]=3204,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17362,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=3472,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=107889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1180,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=123047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=320,
+ ["unit"]=0
+ }
+ },
+ [3204]={
+ ["next_chapter"]=3205,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17471,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=3494,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=108889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1190,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=123047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=320,
+ ["unit"]=0
+ }
+ },
+ [3205]={
+ ["next_chapter"]=3206,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17581,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=3516,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=109889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1200,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=123047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=320,
+ ["unit"]=0
+ }
+ },
+ [3206]={
+ ["next_chapter"]=3207,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17693,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=3539,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=110889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1210,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=123047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=320,
+ ["unit"]=0
+ }
+ },
+ [3207]={
+ ["next_chapter"]=3208,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17805,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=3561,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=111889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1220,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=123047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=320,
+ ["unit"]=0
+ }
+ },
+ [3208]={
+ ["next_chapter"]=3209,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17919,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=3584,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=112889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1230,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=123047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=320,
+ ["unit"]=0
+ }
+ },
+ [3209]={
+ ["next_chapter"]=3210,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18034,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=3607,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=113889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1240,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=123047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=320,
+ ["unit"]=0
+ }
+ },
+ [3210]={
+ ["next_chapter"]=3211,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=18150,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=3630,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=114889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1250,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=135547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=321,
+ ["unit"]=0
+ }
+ },
+ [3211]={
+ ["next_chapter"]=3212,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18267,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=3653,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=115889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1260,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=135547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=321,
+ ["unit"]=0
+ }
+ },
+ [3212]={
+ ["next_chapter"]=3213,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18385,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=3677,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=116889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1270,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=135547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=321,
+ ["unit"]=0
+ }
+ },
+ [3213]={
+ ["next_chapter"]=3214,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18504,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=3701,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=117889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1280,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=135547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=321,
+ ["unit"]=0
+ }
+ },
+ [3214]={
+ ["next_chapter"]=3215,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18624,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=3725,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=118889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1290,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=135547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=321,
+ ["unit"]=0
+ }
+ },
+ [3215]={
+ ["next_chapter"]=3216,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18746,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=3749,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=119889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1300,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=135547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=321,
+ ["unit"]=0
+ }
+ },
+ [3216]={
+ ["next_chapter"]=3217,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18868,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=3774,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=120889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1310,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=135547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=321,
+ ["unit"]=0
+ }
+ },
+ [3217]={
+ ["next_chapter"]=3218,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18992,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=3798,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=121889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1320,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=135547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=321,
+ ["unit"]=0
+ }
+ },
+ [3218]={
+ ["next_chapter"]=3219,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19117,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=3823,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=122889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1330,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=135547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=321,
+ ["unit"]=0
+ }
+ },
+ [3219]={
+ ["next_chapter"]=3220,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19243,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=3849,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=123889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1340,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=135547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=321,
+ ["unit"]=0
+ }
+ },
+ [3220]={
+ ["next_chapter"]=3221,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=19370,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=3874,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=124889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1350,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=149047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=322,
+ ["unit"]=0
+ }
+ },
+ [3221]={
+ ["next_chapter"]=3222,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19499,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=3900,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=125889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1360,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=149047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=322,
+ ["unit"]=0
+ }
+ },
+ [3222]={
+ ["next_chapter"]=3223,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19628,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=3926,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=126889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1370,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=149047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=322,
+ ["unit"]=0
+ }
+ },
+ [3223]={
+ ["next_chapter"]=3224,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19759,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=3952,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=127889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1380,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=149047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=322,
+ ["unit"]=0
+ }
+ },
+ [3224]={
+ ["next_chapter"]=3225,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19891,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=3978,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=128889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1390,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=149047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=322,
+ ["unit"]=0
+ }
+ },
+ [3225]={
+ ["next_chapter"]=3226,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20024,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=4005,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=129889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1400,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=149047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=322,
+ ["unit"]=0
+ }
+ },
+ [3226]={
+ ["next_chapter"]=3227,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20158,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=4032,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=130889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1410,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=149047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=322,
+ ["unit"]=0
+ }
+ },
+ [3227]={
+ ["next_chapter"]=3228,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20293,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=4059,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=131889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1420,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=149047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=322,
+ ["unit"]=0
+ }
+ },
+ [3228]={
+ ["next_chapter"]=3229,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20430,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=4086,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=132889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1430,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=149047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=322,
+ ["unit"]=0
+ }
+ },
+ [3229]={
+ ["next_chapter"]=3230,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20568,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=4114,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=133889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1440,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=149047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=322,
+ ["unit"]=0
+ }
+ },
+ [3230]={
+ ["next_chapter"]=3231,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=20707,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=4141,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=134889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1450,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=163547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=323,
+ ["unit"]=0
+ }
+ },
+ [3231]={
+ ["next_chapter"]=3232,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20847,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=4169,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=135889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1460,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=163547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=323,
+ ["unit"]=0
+ }
+ },
+ [3232]={
+ ["next_chapter"]=3233,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20989,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=4198,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=136889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1470,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=163547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=323,
+ ["unit"]=0
+ }
+ },
+ [3233]={
+ ["next_chapter"]=3234,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21131,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=4226,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=137889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1480,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=163547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=323,
+ ["unit"]=0
+ }
+ },
+ [3234]={
+ ["next_chapter"]=3235,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21275,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=4255,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=138889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1490,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=163547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=323,
+ ["unit"]=0
+ }
+ },
+ [3235]={
+ ["next_chapter"]=3236,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21421,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=4284,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=139889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1500,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=163547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=323,
+ ["unit"]=0
+ }
+ },
+ [3236]={
+ ["next_chapter"]=3237,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21567,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=4313,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=140889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1520,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=163547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=323,
+ ["unit"]=0
+ }
+ },
+ [3237]={
+ ["next_chapter"]=3238,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21715,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=4343,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=141889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1540,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=163547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=323,
+ ["unit"]=0
+ }
+ },
+ [3238]={
+ ["next_chapter"]=3239,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21864,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=4373,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=142889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1560,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=163547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=323,
+ ["unit"]=0
+ }
+ },
+ [3239]={
+ ["next_chapter"]=3240,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22014,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=4403,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=143889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1580,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=163547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=323,
+ ["unit"]=0
+ }
+ },
+ [3240]={
+ ["next_chapter"]=3241,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=22165,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=4433,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=144889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1600,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=179547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=324,
+ ["unit"]=0
+ }
+ },
+ [3241]={
+ ["next_chapter"]=3242,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22318,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=4464,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=145889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1620,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=179547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=324,
+ ["unit"]=0
+ }
+ },
+ [3242]={
+ ["next_chapter"]=3243,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22472,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=4494,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=146889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1640,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=179547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=324,
+ ["unit"]=0
+ }
+ },
+ [3243]={
+ ["next_chapter"]=3244,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22627,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=4525,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=147889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1660,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=179547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=324,
+ ["unit"]=0
+ }
+ },
+ [3244]={
+ ["next_chapter"]=3245,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22784,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=4557,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=148889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1680,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=179547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=324,
+ ["unit"]=0
+ }
+ },
+ [3245]={
+ ["next_chapter"]=3246,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22941,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=4588,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=149889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1700,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=179547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=324,
+ ["unit"]=0
+ }
+ },
+ [3246]={
+ ["next_chapter"]=3247,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23101,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=4620,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=150889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1720,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=179547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=324,
+ ["unit"]=0
+ }
+ },
+ [3247]={
+ ["next_chapter"]=3248,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23261,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=4652,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=151889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1740,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=179547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=324,
+ ["unit"]=0
+ }
+ },
+ [3248]={
+ ["next_chapter"]=3249,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23423,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=4685,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=152889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1760,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=179547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=324,
+ ["unit"]=0
+ }
+ },
+ [3249]={
+ ["next_chapter"]=3250,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23586,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=4717,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=153889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1780,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=179547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=324,
+ ["unit"]=0
+ }
+ },
+ [3250]={
+ ["next_chapter"]=3251,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=23750,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=4750,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=154889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1800,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=197547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=325,
+ ["unit"]=0
+ }
+ },
+ [3251]={
+ ["next_chapter"]=3252,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23916,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=4783,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=155889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1820,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=197547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=325,
+ ["unit"]=0
+ }
+ },
+ [3252]={
+ ["next_chapter"]=3253,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24083,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=4817,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=156889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1840,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=197547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=325,
+ ["unit"]=0
+ }
+ },
+ [3253]={
+ ["next_chapter"]=3254,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24251,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=4850,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=157889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1860,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=197547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=325,
+ ["unit"]=0
+ }
+ },
+ [3254]={
+ ["next_chapter"]=3255,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24421,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=4884,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=158889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1880,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=197547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=325,
+ ["unit"]=0
+ }
+ },
+ [3255]={
+ ["next_chapter"]=3256,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24592,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=4918,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=159889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1900,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=197547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=325,
+ ["unit"]=0
+ }
+ },
+ [3256]={
+ ["next_chapter"]=3257,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24764,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=4953,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=160889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1920,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=197547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=325,
+ ["unit"]=0
+ }
+ },
+ [3257]={
+ ["next_chapter"]=3258,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24938,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=4988,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=161889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1940,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=197547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=325,
+ ["unit"]=0
+ }
+ },
+ [3258]={
+ ["next_chapter"]=3259,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25113,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=5023,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=162889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1960,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=197547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=325,
+ ["unit"]=0
+ }
+ },
+ [3259]={
+ ["next_chapter"]=3260,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25289,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=5058,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=163889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=1980,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=197547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=325,
+ ["unit"]=0
+ }
+ },
+ [3260]={
+ ["next_chapter"]=3261,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=25467,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=5093,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=165889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=2000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=217547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=326,
+ ["unit"]=0
+ }
+ },
+ [3261]={
+ ["next_chapter"]=3262,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25646,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=5129,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=167889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=2020,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=217547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=326,
+ ["unit"]=0
+ }
+ },
+ [3262]={
+ ["next_chapter"]=3263,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25827,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=5165,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=169889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=2040,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=217547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=326,
+ ["unit"]=0
+ }
+ },
+ [3263]={
+ ["next_chapter"]=3264,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26008,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=5202,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=171889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=2060,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=217547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=326,
+ ["unit"]=0
+ }
+ },
+ [3264]={
+ ["next_chapter"]=3265,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26192,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=5238,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=173889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=2080,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=217547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=326,
+ ["unit"]=0
+ }
+ },
+ [3265]={
+ ["next_chapter"]=3266,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26376,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=5275,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=175889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=2100,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=217547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=326,
+ ["unit"]=0
+ }
+ },
+ [3266]={
+ ["next_chapter"]=3267,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26563,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=5313,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=177889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=2120,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=217547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=326,
+ ["unit"]=0
+ }
+ },
+ [3267]={
+ ["next_chapter"]=3268,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26750,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=5350,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=179889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=2140,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=217547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=326,
+ ["unit"]=0
+ }
+ },
+ [3268]={
+ ["next_chapter"]=3269,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26939,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=5388,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=181889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=2160,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=217547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=326,
+ ["unit"]=0
+ }
+ },
+ [3269]={
+ ["next_chapter"]=3270,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27129,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=5426,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=183889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=2180,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=217547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=326,
+ ["unit"]=0
+ }
+ },
+ [3270]={
+ ["next_chapter"]=3271,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=27321,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=5464,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=185889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=2200,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=239547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=327,
+ ["unit"]=0
+ }
+ },
+ [3271]={
+ ["next_chapter"]=3272,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27514,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=5503,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=187889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=2220,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=239547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=327,
+ ["unit"]=0
+ }
+ },
+ [3272]={
+ ["next_chapter"]=3273,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27709,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=5542,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=189889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=2240,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=239547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=327,
+ ["unit"]=0
+ }
+ },
+ [3273]={
+ ["next_chapter"]=3274,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27905,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=5581,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=191889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=2260,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=239547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=327,
+ ["unit"]=0
+ }
+ },
+ [3274]={
+ ["next_chapter"]=3275,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28102,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=5620,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=193889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=2280,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=239547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=327,
+ ["unit"]=0
+ }
+ },
+ [3275]={
+ ["next_chapter"]=3276,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28301,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=5660,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=195889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=2300,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=239547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=327,
+ ["unit"]=0
+ }
+ },
+ [3276]={
+ ["next_chapter"]=3277,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28502,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=5700,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=197889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=2320,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=239547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=327,
+ ["unit"]=0
+ }
+ },
+ [3277]={
+ ["next_chapter"]=3278,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28703,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=5741,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=199889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=2340,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=239547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=327,
+ ["unit"]=0
+ }
+ },
+ [3278]={
+ ["next_chapter"]=3279,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28907,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=5781,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=201889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=2360,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=239547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=327,
+ ["unit"]=0
+ }
+ },
+ [3279]={
+ ["next_chapter"]=3280,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29112,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=5822,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=203889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=2380,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=239547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=327,
+ ["unit"]=0
+ }
+ },
+ [3280]={
+ ["next_chapter"]=3281,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=29318,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=5864,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=205889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=2400,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=263547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=328,
+ ["unit"]=0
+ }
+ },
+ [3281]={
+ ["next_chapter"]=3282,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29525,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=5905,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=207889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=2420,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=263547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=328,
+ ["unit"]=0
+ }
+ },
+ [3282]={
+ ["next_chapter"]=3283,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29735,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=5947,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=209889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=2440,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=263547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=328,
+ ["unit"]=0
+ }
+ },
+ [3283]={
+ ["next_chapter"]=3284,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29945,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=5989,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=211889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=2460,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=263547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=328,
+ ["unit"]=0
+ }
+ },
+ [3284]={
+ ["next_chapter"]=3285,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30158,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=6032,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=213889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=2480,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=263547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=328,
+ ["unit"]=0
+ }
+ },
+ [3285]={
+ ["next_chapter"]=3286,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30371,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=6074,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=215889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=2500,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=263547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=328,
+ ["unit"]=0
+ }
+ },
+ [3286]={
+ ["next_chapter"]=3287,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30586,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=6117,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=217889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=2530,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=263547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=328,
+ ["unit"]=0
+ }
+ },
+ [3287]={
+ ["next_chapter"]=3288,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30803,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=6161,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=219889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=2560,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=263547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=328,
+ ["unit"]=0
+ }
+ },
+ [3288]={
+ ["next_chapter"]=3289,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=31021,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=6204,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=221889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=2590,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=263547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=328,
+ ["unit"]=0
+ }
+ },
+ [3289]={
+ ["next_chapter"]=3290,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=31241,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=6248,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=223889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=2620,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=263547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=328,
+ ["unit"]=0
+ }
+ },
+ [3290]={
+ ["next_chapter"]=3291,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=31462,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=6292,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=225889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=2650,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=290047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=329,
+ ["unit"]=0
+ }
+ },
+ [3291]={
+ ["next_chapter"]=3292,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=31685,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=6337,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=227889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=2680,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=290047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=329,
+ ["unit"]=0
+ }
+ },
+ [3292]={
+ ["next_chapter"]=3293,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=31909,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=6382,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=229889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=2710,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=290047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=329,
+ ["unit"]=0
+ }
+ },
+ [3293]={
+ ["next_chapter"]=3294,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=32135,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=6427,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=231889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=2740,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=290047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=329,
+ ["unit"]=0
+ }
+ },
+ [3294]={
+ ["next_chapter"]=3295,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=32363,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=6473,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=233889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=2770,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=290047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=329,
+ ["unit"]=0
+ }
+ },
+ [3295]={
+ ["next_chapter"]=3296,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=32592,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=6518,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=235889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=2800,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=290047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=329,
+ ["unit"]=0
+ }
+ },
+ [3296]={
+ ["next_chapter"]=3297,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=32822,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=6564,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=237889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=2830,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=290047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=329,
+ ["unit"]=0
+ }
+ },
+ [3297]={
+ ["next_chapter"]=3298,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=33054,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=6611,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=239889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=2860,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=290047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=329,
+ ["unit"]=0
+ }
+ },
+ [3298]={
+ ["next_chapter"]=3299,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=33288,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=6658,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=241889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=2890,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=290047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=329,
+ ["unit"]=0
+ }
+ },
+ [3299]={
+ ["next_chapter"]=3300,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=33523,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=6705,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=243889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=2920,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=290047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=329,
+ ["unit"]=0
+ }
+ },
+ [3300]={
+ ["next_chapter"]=3301,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=33760,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=6752,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=245889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=2950,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=319547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=330,
+ ["unit"]=0
+ }
+ },
+ [3301]={
+ ["next_chapter"]=3302,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=33998,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=6800,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=247889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=2980,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=319547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=330,
+ ["unit"]=0
+ }
+ },
+ [3302]={
+ ["next_chapter"]=3303,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=34238,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=6848,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=250889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=3010,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=319547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=330,
+ ["unit"]=0
+ }
+ },
+ [3303]={
+ ["next_chapter"]=3304,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=34480,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=6896,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=253889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=3040,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=319547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=330,
+ ["unit"]=0
+ }
+ },
+ [3304]={
+ ["next_chapter"]=3305,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=34723,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=6945,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=256889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=3070,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=319547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=330,
+ ["unit"]=0
+ }
+ },
+ [3305]={
+ ["next_chapter"]=3306,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=34968,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=6994,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=259889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=3100,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=319547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=330,
+ ["unit"]=0
+ }
+ },
+ [3306]={
+ ["next_chapter"]=3307,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=35214,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=7043,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=262889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=3130,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=319547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=330,
+ ["unit"]=0
+ }
+ },
+ [3307]={
+ ["next_chapter"]=3308,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=35462,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=7092,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=265889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=3160,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=319547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=330,
+ ["unit"]=0
+ }
+ },
+ [3308]={
+ ["next_chapter"]=3309,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=35712,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=7142,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=268889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=3190,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=319547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=330,
+ ["unit"]=0
+ }
+ },
+ [3309]={
+ ["next_chapter"]=3310,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=35963,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=7193,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=271889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=3220,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=319547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=330,
+ ["unit"]=0
+ }
+ },
+ [3310]={
+ ["next_chapter"]=3311,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=36216,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=7243,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=274889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=3250,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=352047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=331,
+ ["unit"]=0
+ }
+ },
+ [3311]={
+ ["next_chapter"]=3312,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=36471,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=7294,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=277889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=3280,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=352047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=331,
+ ["unit"]=0
+ }
+ },
+ [3312]={
+ ["next_chapter"]=3313,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=36727,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=7345,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=280889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=3310,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=352047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=331,
+ ["unit"]=0
+ }
+ },
+ [3313]={
+ ["next_chapter"]=3314,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=36985,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=7397,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=283889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=3340,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=352047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=331,
+ ["unit"]=0
+ }
+ },
+ [3314]={
+ ["next_chapter"]=3315,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=37244,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=7449,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=286889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=3370,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=352047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=331,
+ ["unit"]=0
+ }
+ },
+ [3315]={
+ ["next_chapter"]=3316,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=37505,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=7501,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=289889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=3400,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=352047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=331,
+ ["unit"]=0
+ }
+ },
+ [3316]={
+ ["next_chapter"]=3317,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=37768,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=7554,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=292889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=3430,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=352047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=331,
+ ["unit"]=0
+ }
+ },
+ [3317]={
+ ["next_chapter"]=3318,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=38032,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=7606,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=295889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=3460,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=352047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=331,
+ ["unit"]=0
+ }
+ },
+ [3318]={
+ ["next_chapter"]=3319,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=38299,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=7660,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=298889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=3490,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=352047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=331,
+ ["unit"]=0
+ }
+ },
+ [3319]={
+ ["next_chapter"]=3320,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=38566,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=7713,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=301889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=3520,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=352047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=331,
+ ["unit"]=0
+ }
+ },
+ [3320]={
+ ["next_chapter"]=3321,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=38836,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=7767,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=304889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=3560,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=387647,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=332,
+ ["unit"]=0
+ }
+ },
+ [3321]={
+ ["next_chapter"]=3322,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=39107,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=7821,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=307889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=3600,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=387647,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=332,
+ ["unit"]=0
+ }
+ },
+ [3322]={
+ ["next_chapter"]=3323,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=39380,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=7876,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=310889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=3640,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=387647,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=332,
+ ["unit"]=0
+ }
+ },
+ [3323]={
+ ["next_chapter"]=3324,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=39654,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=7931,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=313889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=3680,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=387647,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=332,
+ ["unit"]=0
+ }
+ },
+ [3324]={
+ ["next_chapter"]=3325,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=39931,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=7986,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=316889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=3720,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=387647,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=332,
+ ["unit"]=0
+ }
+ },
+ [3325]={
+ ["next_chapter"]=3326,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=40209,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=8042,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=319889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=3760,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=387647,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=332,
+ ["unit"]=0
+ }
+ },
+ [3326]={
+ ["next_chapter"]=3327,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=40488,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=8098,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=322889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=3800,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=387647,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=332,
+ ["unit"]=0
+ }
+ },
+ [3327]={
+ ["next_chapter"]=3328,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=40770,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=8154,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=325889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=3840,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=387647,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=332,
+ ["unit"]=0
+ }
+ },
+ [3328]={
+ ["next_chapter"]=3329,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=41053,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=8211,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=328889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=3880,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=387647,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=332,
+ ["unit"]=0
+ }
+ },
+ [3329]={
+ ["next_chapter"]=3330,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=41338,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=8268,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=331889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=3920,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=387647,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=332,
+ ["unit"]=0
+ }
+ },
+ [3330]={
+ ["next_chapter"]=3331,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=41625,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=8325,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=334889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=3960,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=427247,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=333,
+ ["unit"]=0
+ }
+ },
+ [3331]={
+ ["next_chapter"]=3332,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=41913,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=8383,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=338889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=4000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=427247,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=333,
+ ["unit"]=0
+ }
+ },
+ [3332]={
+ ["next_chapter"]=3333,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=42203,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=8441,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=342889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=4040,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=427247,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=333,
+ ["unit"]=0
+ }
+ },
+ [3333]={
+ ["next_chapter"]=3334,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=42495,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=8499,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=346889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=4080,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=427247,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=333,
+ ["unit"]=0
+ }
+ },
+ [3334]={
+ ["next_chapter"]=3335,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=42789,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=8558,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=350889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=4120,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=427247,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=333,
+ ["unit"]=0
+ }
+ },
+ [3335]={
+ ["next_chapter"]=3336,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=43084,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=8617,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=354889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=4160,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=427247,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=333,
+ ["unit"]=0
+ }
+ },
+ [3336]={
+ ["next_chapter"]=3337,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=43381,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=8676,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=358889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=4200,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=427247,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=333,
+ ["unit"]=0
+ }
+ },
+ [3337]={
+ ["next_chapter"]=3338,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=43680,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=8736,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=362889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=4240,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=427247,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=333,
+ ["unit"]=0
+ }
+ },
+ [3338]={
+ ["next_chapter"]=3339,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=43981,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=8796,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=366889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=4280,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=427247,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=333,
+ ["unit"]=0
+ }
+ },
+ [3339]={
+ ["next_chapter"]=3340,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=44283,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=8857,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=370889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=4320,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=427247,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=333,
+ ["unit"]=0
+ }
+ },
+ [3340]={
+ ["next_chapter"]=3341,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=44588,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=8918,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=374889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=4360,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=470847,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=334,
+ ["unit"]=0
+ }
+ },
+ [3341]={
+ ["next_chapter"]=3342,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=44894,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=8979,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=378889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=4400,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=470847,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=334,
+ ["unit"]=0
+ }
+ },
+ [3342]={
+ ["next_chapter"]=3343,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=45201,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=9040,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=382889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=4440,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=470847,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=334,
+ ["unit"]=0
+ }
+ },
+ [3343]={
+ ["next_chapter"]=3344,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=45511,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=9102,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=386889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=4480,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=470847,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=334,
+ ["unit"]=0
+ }
+ },
+ [3344]={
+ ["next_chapter"]=3345,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=45823,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=9165,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=390889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=4520,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=470847,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=334,
+ ["unit"]=0
+ }
+ },
+ [3345]={
+ ["next_chapter"]=3346,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=46136,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=9227,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=394889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=4570,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=470847,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=334,
+ ["unit"]=0
+ }
+ },
+ [3346]={
+ ["next_chapter"]=3347,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=46451,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=9290,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=398889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=4620,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=470847,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=334,
+ ["unit"]=0
+ }
+ },
+ [3347]={
+ ["next_chapter"]=3348,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=46768,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=9354,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=402889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=4670,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=470847,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=334,
+ ["unit"]=0
+ }
+ },
+ [3348]={
+ ["next_chapter"]=3349,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=47087,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=9417,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=406889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=4720,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=470847,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=334,
+ ["unit"]=0
+ }
+ },
+ [3349]={
+ ["next_chapter"]=3350,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=47408,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=9482,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=410889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=4770,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=470847,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=334,
+ ["unit"]=0
+ }
+ },
+ [3350]={
+ ["next_chapter"]=3351,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=47730,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=9546,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=414889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=4820,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=519047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=335,
+ ["unit"]=0
+ }
+ },
+ [3351]={
+ ["next_chapter"]=3352,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=48054,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=9611,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=418889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=4870,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=519047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=335,
+ ["unit"]=0
+ }
+ },
+ [3352]={
+ ["next_chapter"]=3353,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=48381,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=9676,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=422889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=4920,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=519047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=335,
+ ["unit"]=0
+ }
+ },
+ [3353]={
+ ["next_chapter"]=3354,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=48709,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=9742,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=426889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=4970,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=519047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=335,
+ ["unit"]=0
+ }
+ },
+ [3354]={
+ ["next_chapter"]=3355,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=49038,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=9808,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=431889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=5020,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=519047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=335,
+ ["unit"]=0
+ }
+ },
+ [3355]={
+ ["next_chapter"]=3356,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=49370,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=9874,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=436889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=5070,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=519047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=335,
+ ["unit"]=0
+ }
+ },
+ [3356]={
+ ["next_chapter"]=3357,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=49704,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=9941,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=441889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=5120,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=519047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=335,
+ ["unit"]=0
+ }
+ },
+ [3357]={
+ ["next_chapter"]=3358,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=50039,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=10008,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=446889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=5170,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=519047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=335,
+ ["unit"]=0
+ }
+ },
+ [3358]={
+ ["next_chapter"]=3359,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=50377,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=10075,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=451889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=5220,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=519047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=335,
+ ["unit"]=0
+ }
+ },
+ [3359]={
+ ["next_chapter"]=3360,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=50716,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=10143,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=456889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=5270,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=519047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=335,
+ ["unit"]=0
+ }
+ },
+ [3360]={
+ ["next_chapter"]=3361,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=51057,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=10211,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=461889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=5320,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=572247,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=336,
+ ["unit"]=0
+ }
+ },
+ [3361]={
+ ["next_chapter"]=3362,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=51400,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=10280,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=466889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=5370,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=572247,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=336,
+ ["unit"]=0
+ }
+ },
+ [3362]={
+ ["next_chapter"]=3363,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=51745,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=10349,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=471889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=5420,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=572247,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=336,
+ ["unit"]=0
+ }
+ },
+ [3363]={
+ ["next_chapter"]=3364,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=52092,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=10418,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=476889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=5470,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=572247,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=336,
+ ["unit"]=0
+ }
+ },
+ [3364]={
+ ["next_chapter"]=3365,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=52441,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=10488,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=481889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=5520,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=572247,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=336,
+ ["unit"]=0
+ }
+ },
+ [3365]={
+ ["next_chapter"]=3366,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=52792,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=10558,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=486889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=5580,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=572247,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=336,
+ ["unit"]=0
+ }
+ },
+ [3366]={
+ ["next_chapter"]=3367,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=53145,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=10629,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=491889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=5640,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=572247,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=336,
+ ["unit"]=0
+ }
+ },
+ [3367]={
+ ["next_chapter"]=3368,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=53499,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=10700,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=496889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=5700,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=572247,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=336,
+ ["unit"]=0
+ }
+ },
+ [3368]={
+ ["next_chapter"]=3369,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=53856,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=10771,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=501889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=5760,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=572247,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=336,
+ ["unit"]=0
+ }
+ },
+ [3369]={
+ ["next_chapter"]=3370,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=54214,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=10843,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=506889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=5820,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=572247,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=336,
+ ["unit"]=0
+ }
+ },
+ [3370]={
+ ["next_chapter"]=3371,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=54575,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=10915,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=511889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=5880,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=631047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=337,
+ ["unit"]=0
+ }
+ },
+ [3371]={
+ ["next_chapter"]=3372,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=54937,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=10987,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=516889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=5940,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=631047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=337,
+ ["unit"]=0
+ }
+ },
+ [3372]={
+ ["next_chapter"]=3373,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=55301,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=11060,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=522889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=6000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=631047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=337,
+ ["unit"]=0
+ }
+ },
+ [3373]={
+ ["next_chapter"]=3374,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=55668,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=11134,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=528889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=6060,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=631047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=337,
+ ["unit"]=0
+ }
+ },
+ [3374]={
+ ["next_chapter"]=3375,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=56036,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=11207,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=534889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=6120,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=631047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=337,
+ ["unit"]=0
+ }
+ },
+ [3375]={
+ ["next_chapter"]=3376,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=56406,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=11281,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=540889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=6180,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=631047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=337,
+ ["unit"]=0
+ }
+ },
+ [3376]={
+ ["next_chapter"]=3377,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=56778,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=11356,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=546889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=6240,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=631047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=337,
+ ["unit"]=0
+ }
+ },
+ [3377]={
+ ["next_chapter"]=3378,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=57153,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=11431,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=552889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=6300,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=631047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=337,
+ ["unit"]=0
+ }
+ },
+ [3378]={
+ ["next_chapter"]=3379,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=57529,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=11506,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=558889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=6360,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=631047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=337,
+ ["unit"]=0
+ }
+ },
+ [3379]={
+ ["next_chapter"]=3380,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=57907,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=11581,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=564889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=6420,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=631047,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=337,
+ ["unit"]=0
+ }
+ },
+ [3380]={
+ ["next_chapter"]=3381,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=58287,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=11657,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=570889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=6480,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=695847,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=338,
+ ["unit"]=0
+ }
+ },
+ [3381]={
+ ["next_chapter"]=3382,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=58670,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=11734,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=576889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=6540,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=695847,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=338,
+ ["unit"]=0
+ }
+ },
+ [3382]={
+ ["next_chapter"]=3383,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=59054,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=11811,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=582889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=6610,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=695847,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=338,
+ ["unit"]=0
+ }
+ },
+ [3383]={
+ ["next_chapter"]=3384,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=59440,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=11888,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=588889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=6680,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=695847,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=338,
+ ["unit"]=0
+ }
+ },
+ [3384]={
+ ["next_chapter"]=3385,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=59828,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=11966,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=594889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=6750,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=695847,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=338,
+ ["unit"]=0
+ }
+ },
+ [3385]={
+ ["next_chapter"]=3386,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60219,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=12044,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=600889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=6820,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=695847,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=338,
+ ["unit"]=0
+ }
+ },
+ [3386]={
+ ["next_chapter"]=3387,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60611,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=12122,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=606889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=6890,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=695847,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=338,
+ ["unit"]=0
+ }
+ },
+ [3387]={
+ ["next_chapter"]=3388,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=61005,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=12201,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=612889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=6960,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=695847,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=338,
+ ["unit"]=0
+ }
+ },
+ [3388]={
+ ["next_chapter"]=3389,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=61402,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=12280,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=619889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=7030,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=695847,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=338,
+ ["unit"]=0
+ }
+ },
+ [3389]={
+ ["next_chapter"]=3390,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=61800,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=12360,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=626889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=7100,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=695847,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=338,
+ ["unit"]=0
+ }
+ },
+ [3390]={
+ ["next_chapter"]=3391,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=62201,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=12440,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=633889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=7170,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=767547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=339,
+ ["unit"]=0
+ }
+ },
+ [3391]={
+ ["next_chapter"]=3392,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=62603,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=12521,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=640889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=7240,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=767547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=339,
+ ["unit"]=0
+ }
+ },
+ [3392]={
+ ["next_chapter"]=3393,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=63008,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=12602,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=647889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=7310,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=767547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=339,
+ ["unit"]=0
+ }
+ },
+ [3393]={
+ ["next_chapter"]=3394,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=63415,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=12683,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=654889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=7380,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=767547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=339,
+ ["unit"]=0
+ }
+ },
+ [3394]={
+ ["next_chapter"]=3395,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=63823,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=12765,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=661889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=7450,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=767547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=339,
+ ["unit"]=0
+ }
+ },
+ [3395]={
+ ["next_chapter"]=3396,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=64234,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=12847,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=668889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=7520,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=767547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=339,
+ ["unit"]=0
+ }
+ },
+ [3396]={
+ ["next_chapter"]=3397,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=64647,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=12929,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=675889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=7600,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=767547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=339,
+ ["unit"]=0
+ }
+ },
+ [3397]={
+ ["next_chapter"]=3398,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=65062,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=13012,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=682889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=7680,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=767547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=339,
+ ["unit"]=0
+ }
+ },
+ [3398]={
+ ["next_chapter"]=3399,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=65479,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=13096,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=689889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=7760,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=767547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=339,
+ ["unit"]=0
+ }
+ },
+ [3399]={
+ ["next_chapter"]=3400,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=65899,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=13180,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=696889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=7840,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=767547,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=339,
+ ["unit"]=0
+ }
+ },
+ [3400]={
+ ["next_chapter"]=3401,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=66320,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=13264,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=703889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=7920,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=846747,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=340,
+ ["unit"]=0
+ }
+ },
+ [3401]={
+ ["next_chapter"]=3402,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=66743,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=13349,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=711889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=8000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=846747,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=340,
+ ["unit"]=0
+ }
+ },
+ [3402]={
+ ["next_chapter"]=3403,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=67169,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=13434,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=719889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=8080,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=846747,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=340,
+ ["unit"]=0
+ }
+ },
+ [3403]={
+ ["next_chapter"]=3404,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=67597,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=13519,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=727889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=8160,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=846747,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=340,
+ ["unit"]=0
+ }
+ },
+ [3404]={
+ ["next_chapter"]=3405,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=68027,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=13605,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=735889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=8240,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=846747,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=340,
+ ["unit"]=0
+ }
+ },
+ [3405]={
+ ["next_chapter"]=3406,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=68459,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=13692,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=743889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=8320,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=846747,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=340,
+ ["unit"]=0
+ }
+ },
+ [3406]={
+ ["next_chapter"]=3407,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=68893,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=13779,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=751889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=8400,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=846747,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=340,
+ ["unit"]=0
+ }
+ },
+ [3407]={
+ ["next_chapter"]=3408,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=69329,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=13866,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=759889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=8480,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=846747,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=340,
+ ["unit"]=0
+ }
+ },
+ [3408]={
+ ["next_chapter"]=3409,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=69767,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=13953,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=767889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=8560,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=846747,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=340,
+ ["unit"]=0
+ }
+ },
+ [3409]={
+ ["next_chapter"]=3410,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=70208,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=14042,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=775889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=8650,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=846747,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=340,
+ ["unit"]=0
+ }
+ },
+ [3410]={
+ ["next_chapter"]=3411,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=70650,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=14130,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=783889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=8740,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=934147,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=341,
+ ["unit"]=0
+ }
+ },
+ [3411]={
+ ["next_chapter"]=3412,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=71095,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=14219,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=791889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=8830,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=934147,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=341,
+ ["unit"]=0
+ }
+ },
+ [3412]={
+ ["next_chapter"]=3413,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=71542,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=14308,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=799889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=8920,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=934147,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=341,
+ ["unit"]=0
+ }
+ },
+ [3413]={
+ ["next_chapter"]=3414,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=71992,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=14398,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=808889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=9010,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=934147,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=341,
+ ["unit"]=0
+ }
+ },
+ [3414]={
+ ["next_chapter"]=3415,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=72443,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=14489,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=817889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=9100,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=934147,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=341,
+ ["unit"]=0
+ }
+ },
+ [3415]={
+ ["next_chapter"]=3416,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=72897,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=14579,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=826889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=9190,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=934147,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=341,
+ ["unit"]=0
+ }
+ },
+ [3416]={
+ ["next_chapter"]=3417,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=73352,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=14670,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=835889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=9280,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=934147,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=341,
+ ["unit"]=0
+ }
+ },
+ [3417]={
+ ["next_chapter"]=3418,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=73810,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=14762,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=844889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=9370,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=934147,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=341,
+ ["unit"]=0
+ }
+ },
+ [3418]={
+ ["next_chapter"]=3419,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=74270,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=14854,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=853889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=9460,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=934147,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=341,
+ ["unit"]=0
+ }
+ },
+ [3419]={
+ ["next_chapter"]=3420,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=74733,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=14947,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=862889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=9550,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=934147,
+ ["unit"]=4
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=341,
+ ["unit"]=0
+ }
+ },
+ [3420]={
+ ["next_chapter"]=3421,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=75197,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=15039,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=871889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=9650,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1031,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=342,
+ ["unit"]=0
+ }
+ },
+ [3421]={
+ ["next_chapter"]=3422,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=75664,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=15133,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=880889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=9750,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1031,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=342,
+ ["unit"]=0
+ }
+ },
+ [3422]={
+ ["next_chapter"]=3423,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=76133,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=15227,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=889889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=9850,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1031,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=342,
+ ["unit"]=0
+ }
+ },
+ [3423]={
+ ["next_chapter"]=3424,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=76605,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=15321,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=898889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=9950,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1031,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=342,
+ ["unit"]=0
+ }
+ },
+ [3424]={
+ ["next_chapter"]=3425,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=77078,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=15416,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=908889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=10050,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1031,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=342,
+ ["unit"]=0
+ }
+ },
+ [3425]={
+ ["next_chapter"]=3426,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=77554,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=15511,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=918889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=10200,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1031,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=342,
+ ["unit"]=0
+ }
+ },
+ [3426]={
+ ["next_chapter"]=3427,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=78032,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=15606,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=928889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=10300,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1031,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=342,
+ ["unit"]=0
+ }
+ },
+ [3427]={
+ ["next_chapter"]=3428,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=78512,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=15702,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=938889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=10400,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1031,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=342,
+ ["unit"]=0
+ }
+ },
+ [3428]={
+ ["next_chapter"]=3429,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=78994,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=15799,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=948889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=10500,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1031,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=342,
+ ["unit"]=0
+ }
+ },
+ [3429]={
+ ["next_chapter"]=3430,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=79479,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=15896,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=958889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=10600,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1031,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=342,
+ ["unit"]=0
+ }
+ },
+ [3430]={
+ ["next_chapter"]=3431,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=79966,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=15993,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=968889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=10700,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1138,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=343,
+ ["unit"]=0
+ }
+ },
+ [3431]={
+ ["next_chapter"]=3432,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=80455,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=16091,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=978889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=10800,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1138,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=343,
+ ["unit"]=0
+ }
+ },
+ [3432]={
+ ["next_chapter"]=3433,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=80947,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=16189,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=988889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=10900,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1138,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=343,
+ ["unit"]=0
+ }
+ },
+ [3433]={
+ ["next_chapter"]=3434,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=81441,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=16288,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=998889,
+ ["unit"]=4
+ },
+ ["idle_gold"]={
+ ["value"]=11000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1138,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=343,
+ ["unit"]=0
+ }
+ },
+ [3434]={
+ ["next_chapter"]=3435,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=81937,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=16387,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1009,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=11100,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1138,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=343,
+ ["unit"]=0
+ }
+ },
+ [3435]={
+ ["next_chapter"]=3436,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=82435,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=16487,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1019,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=11200,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1138,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=343,
+ ["unit"]=0
+ }
+ },
+ [3436]={
+ ["next_chapter"]=3437,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=82936,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=16587,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1029,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=11300,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1138,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=343,
+ ["unit"]=0
+ }
+ },
+ [3437]={
+ ["next_chapter"]=3438,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=83439,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=16688,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1039,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=11400,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1138,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=343,
+ ["unit"]=0
+ }
+ },
+ [3438]={
+ ["next_chapter"]=3439,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=83944,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=16789,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1049,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=11500,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1138,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=343,
+ ["unit"]=0
+ }
+ },
+ [3439]={
+ ["next_chapter"]=3440,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=84452,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=16890,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1059,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=11600,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1138,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=343,
+ ["unit"]=0
+ }
+ },
+ [3440]={
+ ["next_chapter"]=3441,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=84962,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=16992,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1069,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=11700,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1255,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=344,
+ ["unit"]=0
+ }
+ },
+ [3441]={
+ ["next_chapter"]=3442,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=85474,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=17095,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1079,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=11800,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1255,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=344,
+ ["unit"]=0
+ }
+ },
+ [3442]={
+ ["next_chapter"]=3443,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=85989,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=17198,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1089,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=11900,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1255,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=344,
+ ["unit"]=0
+ }
+ },
+ [3443]={
+ ["next_chapter"]=3444,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=86506,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=17301,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1099,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=12000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1255,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=344,
+ ["unit"]=0
+ }
+ },
+ [3444]={
+ ["next_chapter"]=3445,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=87025,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=17405,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1109,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=12100,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1255,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=344,
+ ["unit"]=0
+ }
+ },
+ [3445]={
+ ["next_chapter"]=3446,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=87547,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=17509,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1119,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=12200,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1255,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=344,
+ ["unit"]=0
+ }
+ },
+ [3446]={
+ ["next_chapter"]=3447,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=88071,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=17614,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1129,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=12300,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1255,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=344,
+ ["unit"]=0
+ }
+ },
+ [3447]={
+ ["next_chapter"]=3448,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=88597,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=17719,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1139,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=12400,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1255,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=344,
+ ["unit"]=0
+ }
+ },
+ [3448]={
+ ["next_chapter"]=3449,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=89126,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=17825,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1149,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=12500,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1255,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=344,
+ ["unit"]=0
+ }
+ },
+ [3449]={
+ ["next_chapter"]=3450,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=89657,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=17931,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1159,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=12600,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1255,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=344,
+ ["unit"]=0
+ }
+ },
+ [3450]={
+ ["next_chapter"]=3451,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=90190,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=18038,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1169,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=12700,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1382,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=345,
+ ["unit"]=0
+ }
+ },
+ [3451]={
+ ["next_chapter"]=3452,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=90726,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=18145,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1179,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=12800,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1382,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=345,
+ ["unit"]=0
+ }
+ },
+ [3452]={
+ ["next_chapter"]=3453,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=91264,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=18253,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1189,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=12900,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1382,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=345,
+ ["unit"]=0
+ }
+ },
+ [3453]={
+ ["next_chapter"]=3454,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=91805,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=18361,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1199,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=13000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1382,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=345,
+ ["unit"]=0
+ }
+ },
+ [3454]={
+ ["next_chapter"]=3455,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=92347,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=18469,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1209,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=13100,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1382,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=345,
+ ["unit"]=0
+ }
+ },
+ [3455]={
+ ["next_chapter"]=3456,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=92893,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=18579,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1219,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=13200,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1382,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=345,
+ ["unit"]=0
+ }
+ },
+ [3456]={
+ ["next_chapter"]=3457,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=93441,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=18688,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1229,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=13300,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1382,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=345,
+ ["unit"]=0
+ }
+ },
+ [3457]={
+ ["next_chapter"]=3458,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=93991,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=18798,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1239,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=13400,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1382,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=345,
+ ["unit"]=0
+ }
+ },
+ [3458]={
+ ["next_chapter"]=3459,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=94543,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=18909,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1249,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=13500,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1382,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=345,
+ ["unit"]=0
+ }
+ },
+ [3459]={
+ ["next_chapter"]=3460,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=95098,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=19020,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1259,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=13600,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1382,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=345,
+ ["unit"]=0
+ }
+ },
+ [3460]={
+ ["next_chapter"]=3461,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=95656,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=19131,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1269,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=13700,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1519,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=346,
+ ["unit"]=0
+ }
+ },
+ [3461]={
+ ["next_chapter"]=3462,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=96216,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=19243,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1279,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=13800,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1519,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=346,
+ ["unit"]=0
+ }
+ },
+ [3462]={
+ ["next_chapter"]=3463,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=96778,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=19356,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1289,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=13900,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1519,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=346,
+ ["unit"]=0
+ }
+ },
+ [3463]={
+ ["next_chapter"]=3464,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=97343,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=19469,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1299,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=14000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1519,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=346,
+ ["unit"]=0
+ }
+ },
+ [3464]={
+ ["next_chapter"]=3465,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=97910,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=19582,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1309,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=14100,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1519,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=346,
+ ["unit"]=0
+ }
+ },
+ [3465]={
+ ["next_chapter"]=3466,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=98479,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=19696,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1319,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=14200,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1519,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=346,
+ ["unit"]=0
+ }
+ },
+ [3466]={
+ ["next_chapter"]=3467,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=99051,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=19810,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1329,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=14300,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1519,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=346,
+ ["unit"]=0
+ }
+ },
+ [3467]={
+ ["next_chapter"]=3468,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=99626,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=19925,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1339,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=14400,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1519,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=346,
+ ["unit"]=0
+ }
+ },
+ [3468]={
+ ["next_chapter"]=3469,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=100203,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=20041,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1349,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=14500,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1519,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=346,
+ ["unit"]=0
+ }
+ },
+ [3469]={
+ ["next_chapter"]=3470,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=100782,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=20156,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1359,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=14600,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1519,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=346,
+ ["unit"]=0
+ }
+ },
+ [3470]={
+ ["next_chapter"]=3471,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=101364,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=20273,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1369,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=14700,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1666,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=347,
+ ["unit"]=0
+ }
+ },
+ [3471]={
+ ["next_chapter"]=3472,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=101949,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=20390,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1379,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=14800,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1666,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=347,
+ ["unit"]=0
+ }
+ },
+ [3472]={
+ ["next_chapter"]=3473,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=102536,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=20507,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1389,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=14900,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1666,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=347,
+ ["unit"]=0
+ }
+ },
+ [3473]={
+ ["next_chapter"]=3474,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=103125,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=20625,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1399,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=15000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1666,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=347,
+ ["unit"]=0
+ }
+ },
+ [3474]={
+ ["next_chapter"]=3475,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=103717,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=20743,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1409,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=15200,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1666,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=347,
+ ["unit"]=0
+ }
+ },
+ [3475]={
+ ["next_chapter"]=3476,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=104311,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=20862,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1419,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=15400,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1666,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=347,
+ ["unit"]=0
+ }
+ },
+ [3476]={
+ ["next_chapter"]=3477,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=104908,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=20982,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1429,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=15600,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1666,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=347,
+ ["unit"]=0
+ }
+ },
+ [3477]={
+ ["next_chapter"]=3478,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=105508,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=21102,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1439,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=15800,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1666,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=347,
+ ["unit"]=0
+ }
+ },
+ [3478]={
+ ["next_chapter"]=3479,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=106110,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=21222,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1449,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=16000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1666,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=347,
+ ["unit"]=0
+ }
+ },
+ [3479]={
+ ["next_chapter"]=3480,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=106714,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=21343,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1459,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=16200,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1666,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=347,
+ ["unit"]=0
+ }
+ },
+ [3480]={
+ ["next_chapter"]=3481,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=107321,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=21464,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1469,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=16400,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1830,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=348,
+ ["unit"]=0
+ }
+ },
+ [3481]={
+ ["next_chapter"]=3482,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=107930,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=21586,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1479,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=16600,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1830,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=348,
+ ["unit"]=0
+ }
+ },
+ [3482]={
+ ["next_chapter"]=3483,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=108543,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=21709,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1489,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=16800,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1830,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=348,
+ ["unit"]=0
+ }
+ },
+ [3483]={
+ ["next_chapter"]=3484,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=109157,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=21831,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1499,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=17000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1830,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=348,
+ ["unit"]=0
+ }
+ },
+ [3484]={
+ ["next_chapter"]=3485,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=109774,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=21955,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1509,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=17200,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1830,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=348,
+ ["unit"]=0
+ }
+ },
+ [3485]={
+ ["next_chapter"]=3486,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=110394,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=22079,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1519,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=17400,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1830,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=348,
+ ["unit"]=0
+ }
+ },
+ [3486]={
+ ["next_chapter"]=3487,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=111016,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=22203,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1529,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=17600,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1830,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=348,
+ ["unit"]=0
+ }
+ },
+ [3487]={
+ ["next_chapter"]=3488,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=111641,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=22328,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1539,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=17800,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1830,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=348,
+ ["unit"]=0
+ }
+ },
+ [3488]={
+ ["next_chapter"]=3489,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=112269,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=22454,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1549,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=18000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1830,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=348,
+ ["unit"]=0
+ }
+ },
+ [3489]={
+ ["next_chapter"]=3490,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=112899,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=22580,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1559,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=18200,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=1830,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=348,
+ ["unit"]=0
+ }
+ },
+ [3490]={
+ ["next_chapter"]=3491,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=113531,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=22706,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1569,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=18400,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=2014,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=349,
+ ["unit"]=0
+ }
+ },
+ [3491]={
+ ["next_chapter"]=3492,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=114166,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=22833,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1579,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=18600,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=2014,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=349,
+ ["unit"]=0
+ }
+ },
+ [3492]={
+ ["next_chapter"]=3493,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=114804,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=22961,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1589,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=18800,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=2014,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=349,
+ ["unit"]=0
+ }
+ },
+ [3493]={
+ ["next_chapter"]=3494,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=115444,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=23089,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1599,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=19000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=2014,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=349,
+ ["unit"]=0
+ }
+ },
+ [3494]={
+ ["next_chapter"]=3495,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=116087,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=23217,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1609,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=19200,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=2014,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=349,
+ ["unit"]=0
+ }
+ },
+ [3495]={
+ ["next_chapter"]=3496,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=116733,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=23347,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1619,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=19400,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=2014,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=349,
+ ["unit"]=0
+ }
+ },
+ [3496]={
+ ["next_chapter"]=3497,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=117381,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=23476,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1629,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=19600,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=2014,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=349,
+ ["unit"]=0
+ }
+ },
+ [3497]={
+ ["next_chapter"]=3498,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=118032,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=23606,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1639,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=19800,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=2014,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=349,
+ ["unit"]=0
+ }
+ },
+ [3498]={
+ ["next_chapter"]=3499,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=118685,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=23737,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1659,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=20000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=2014,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=349,
+ ["unit"]=0
+ }
+ },
+ [3499]={
+ ["next_chapter"]=3500,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=119341,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=23868,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1679,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=20200,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=2014,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=349,
+ ["unit"]=0
+ }
+ },
+ [3500]={
+ ["next_chapter"]=3501,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=120000,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25200,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1699,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=20400,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=2218,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=350,
+ ["unit"]=0
+ }
+ },
+ [3501]={
+ ["next_chapter"]=3502,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120000,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25200,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1719,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=20600,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=2218,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=350,
+ ["unit"]=0
+ }
+ },
+ [3502]={
+ ["next_chapter"]=3503,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120000,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25200,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1739,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=20800,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=2218,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=350,
+ ["unit"]=0
+ }
+ },
+ [3503]={
+ ["next_chapter"]=3504,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120000,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25200,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1759,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=21000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=2218,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=350,
+ ["unit"]=0
+ }
+ },
+ [3504]={
+ ["next_chapter"]=3505,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120000,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25200,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1779,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=21200,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=2218,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=350,
+ ["unit"]=0
+ }
+ },
+ [3505]={
+ ["next_chapter"]=3506,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120001,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25200,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1799,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=21400,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=2218,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=350,
+ ["unit"]=0
+ }
+ },
+ [3506]={
+ ["next_chapter"]=3507,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120001,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25200,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1819,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=21600,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=2218,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=350,
+ ["unit"]=0
+ }
+ },
+ [3507]={
+ ["next_chapter"]=3508,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120002,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25200,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1839,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=21800,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=2218,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=350,
+ ["unit"]=0
+ }
+ },
+ [3508]={
+ ["next_chapter"]=3509,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120003,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25201,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1859,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=22000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=2218,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=350,
+ ["unit"]=0
+ }
+ },
+ [3509]={
+ ["next_chapter"]=3510,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120004,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25201,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1879,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=22200,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=2218,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=350,
+ ["unit"]=0
+ }
+ },
+ [3510]={
+ ["next_chapter"]=3511,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=120005,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25201,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1899,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=22400,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=2442,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=351,
+ ["unit"]=0
+ }
+ },
+ [3511]={
+ ["next_chapter"]=3512,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120007,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25202,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1919,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=22600,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=2442,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=351,
+ ["unit"]=0
+ }
+ },
+ [3512]={
+ ["next_chapter"]=3513,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120009,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25202,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1939,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=22800,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=2442,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=351,
+ ["unit"]=0
+ }
+ },
+ [3513]={
+ ["next_chapter"]=3514,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120012,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25203,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1959,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=23000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=2442,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=351,
+ ["unit"]=0
+ }
+ },
+ [3514]={
+ ["next_chapter"]=3515,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120015,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25203,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1979,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=23200,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=2442,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=351,
+ ["unit"]=0
+ }
+ },
+ [3515]={
+ ["next_chapter"]=3516,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120018,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25204,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1999,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=23400,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=2442,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=351,
+ ["unit"]=0
+ }
+ },
+ [3516]={
+ ["next_chapter"]=3517,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120022,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25205,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2019,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=23600,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=2442,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=351,
+ ["unit"]=0
+ }
+ },
+ [3517]={
+ ["next_chapter"]=3518,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120027,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25206,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2039,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=23800,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=2442,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=351,
+ ["unit"]=0
+ }
+ },
+ [3518]={
+ ["next_chapter"]=3519,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120032,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25207,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2059,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=24000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=2442,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=351,
+ ["unit"]=0
+ }
+ },
+ [3519]={
+ ["next_chapter"]=3520,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120037,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25208,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2079,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=24200,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=2442,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=351,
+ ["unit"]=0
+ }
+ },
+ [3520]={
+ ["next_chapter"]=3521,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=120044,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25209,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2099,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=24400,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=2686,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=352,
+ ["unit"]=0
+ }
+ },
+ [3521]={
+ ["next_chapter"]=3522,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120050,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25211,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2119,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=24600,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=2686,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=352,
+ ["unit"]=0
+ }
+ },
+ [3522]={
+ ["next_chapter"]=3523,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120058,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25212,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2139,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=24800,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=2686,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=352,
+ ["unit"]=0
+ }
+ },
+ [3523]={
+ ["next_chapter"]=3524,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120066,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25214,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2159,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=25000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=2686,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=352,
+ ["unit"]=0
+ }
+ },
+ [3524]={
+ ["next_chapter"]=3525,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120075,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25216,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2179,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=25300,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=2686,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=352,
+ ["unit"]=0
+ }
+ },
+ [3525]={
+ ["next_chapter"]=3526,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120085,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25218,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2199,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=25600,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=2686,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=352,
+ ["unit"]=0
+ }
+ },
+ [3526]={
+ ["next_chapter"]=3527,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120096,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25220,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2219,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=25900,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=2686,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=352,
+ ["unit"]=0
+ }
+ },
+ [3527]={
+ ["next_chapter"]=3528,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120107,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25222,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2239,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=26200,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=2686,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=352,
+ ["unit"]=0
+ }
+ },
+ [3528]={
+ ["next_chapter"]=3529,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120119,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25225,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2259,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=26500,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=2686,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=352,
+ ["unit"]=0
+ }
+ },
+ [3529]={
+ ["next_chapter"]=3530,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120133,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25228,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2279,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=26800,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=2686,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=352,
+ ["unit"]=0
+ }
+ },
+ [3530]={
+ ["next_chapter"]=3531,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=120147,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25231,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2299,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=27100,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=2957,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=353,
+ ["unit"]=0
+ }
+ },
+ [3531]={
+ ["next_chapter"]=3532,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120162,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25234,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2319,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=27400,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=2957,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=353,
+ ["unit"]=0
+ }
+ },
+ [3532]={
+ ["next_chapter"]=3533,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120178,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25237,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2339,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=27700,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=2957,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=353,
+ ["unit"]=0
+ }
+ },
+ [3533]={
+ ["next_chapter"]=3534,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120195,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25241,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2359,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=28000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=2957,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=353,
+ ["unit"]=0
+ }
+ },
+ [3534]={
+ ["next_chapter"]=3535,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120214,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25245,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2379,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=28300,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=2957,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=353,
+ ["unit"]=0
+ }
+ },
+ [3535]={
+ ["next_chapter"]=3536,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120233,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25249,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2399,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=28600,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=2957,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=353,
+ ["unit"]=0
+ }
+ },
+ [3536]={
+ ["next_chapter"]=3537,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120254,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25253,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2419,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=28900,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=2957,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=353,
+ ["unit"]=0
+ }
+ },
+ [3537]={
+ ["next_chapter"]=3538,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120276,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25258,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2439,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=29200,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=2957,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=353,
+ ["unit"]=0
+ }
+ },
+ [3538]={
+ ["next_chapter"]=3539,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120299,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25263,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2459,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=29500,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=2957,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=353,
+ ["unit"]=0
+ }
+ },
+ [3539]={
+ ["next_chapter"]=3540,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120323,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25268,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2479,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=29800,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=2957,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=353,
+ ["unit"]=0
+ }
+ },
+ [3540]={
+ ["next_chapter"]=3541,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=120348,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25273,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2509,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=30100,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=3258,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=354,
+ ["unit"]=0
+ }
+ },
+ [3541]={
+ ["next_chapter"]=3542,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120375,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25279,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2539,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=30400,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=3258,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=354,
+ ["unit"]=0
+ }
+ },
+ [3542]={
+ ["next_chapter"]=3543,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120403,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25285,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2569,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=30700,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=3258,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=354,
+ ["unit"]=0
+ }
+ },
+ [3543]={
+ ["next_chapter"]=3544,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120433,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25291,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2599,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=31000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=3258,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=354,
+ ["unit"]=0
+ }
+ },
+ [3544]={
+ ["next_chapter"]=3545,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120463,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25297,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2629,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=31300,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=3258,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=354,
+ ["unit"]=0
+ }
+ },
+ [3545]={
+ ["next_chapter"]=3546,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120496,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25304,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2659,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=31600,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=3258,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=354,
+ ["unit"]=0
+ }
+ },
+ [3546]={
+ ["next_chapter"]=3547,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120530,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25311,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2689,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=31900,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=3258,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=354,
+ ["unit"]=0
+ }
+ },
+ [3547]={
+ ["next_chapter"]=3548,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120565,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25319,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2719,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=32200,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=3258,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=354,
+ ["unit"]=0
+ }
+ },
+ [3548]={
+ ["next_chapter"]=3549,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120602,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25326,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2749,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=32500,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=3258,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=354,
+ ["unit"]=0
+ }
+ },
+ [3549]={
+ ["next_chapter"]=3550,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120640,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25334,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2779,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=32800,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=3258,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=354,
+ ["unit"]=0
+ }
+ },
+ [3550]={
+ ["next_chapter"]=3551,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=120680,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25343,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2809,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=33100,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=3589,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=355,
+ ["unit"]=0
+ }
+ },
+ [3551]={
+ ["next_chapter"]=3552,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120722,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25352,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2839,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=33400,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=3589,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=355,
+ ["unit"]=0
+ }
+ },
+ [3552]={
+ ["next_chapter"]=3553,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120765,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25361,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2869,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=33700,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=3589,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=355,
+ ["unit"]=0
+ }
+ },
+ [3553]={
+ ["next_chapter"]=3554,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120810,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25370,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2899,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=34000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=3589,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=355,
+ ["unit"]=0
+ }
+ },
+ [3554]={
+ ["next_chapter"]=3555,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120857,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25380,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2929,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=34300,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=3589,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=355,
+ ["unit"]=0
+ }
+ },
+ [3555]={
+ ["next_chapter"]=3556,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120905,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25390,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2959,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=34600,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=3589,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=355,
+ ["unit"]=0
+ }
+ },
+ [3556]={
+ ["next_chapter"]=3557,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120955,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25401,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2989,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=34900,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=3589,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=355,
+ ["unit"]=0
+ }
+ },
+ [3557]={
+ ["next_chapter"]=3558,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=121007,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25412,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3019,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=35200,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=3589,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=355,
+ ["unit"]=0
+ }
+ },
+ [3558]={
+ ["next_chapter"]=3559,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=121061,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25423,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3049,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=35600,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=3589,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=355,
+ ["unit"]=0
+ }
+ },
+ [3559]={
+ ["next_chapter"]=3560,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=121117,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25435,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3079,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=36000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=3589,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=355,
+ ["unit"]=0
+ }
+ },
+ [3560]={
+ ["next_chapter"]=3561,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=121175,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25447,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3109,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=36400,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=3953,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=356,
+ ["unit"]=0
+ }
+ },
+ [3561]={
+ ["next_chapter"]=3562,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=121235,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25459,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3139,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=36800,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=3953,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=356,
+ ["unit"]=0
+ }
+ },
+ [3562]={
+ ["next_chapter"]=3563,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=121297,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25472,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3169,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=37200,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=3953,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=356,
+ ["unit"]=0
+ }
+ },
+ [3563]={
+ ["next_chapter"]=3564,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=121360,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25486,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3199,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=37600,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=3953,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=356,
+ ["unit"]=0
+ }
+ },
+ [3564]={
+ ["next_chapter"]=3565,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=121426,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25499,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3229,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=38000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=3953,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=356,
+ ["unit"]=0
+ }
+ },
+ [3565]={
+ ["next_chapter"]=3566,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=121494,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25514,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3259,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=38400,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=3953,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=356,
+ ["unit"]=0
+ }
+ },
+ [3566]={
+ ["next_chapter"]=3567,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=121564,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25528,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3289,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=38800,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=3953,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=356,
+ ["unit"]=0
+ }
+ },
+ [3567]={
+ ["next_chapter"]=3568,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=121636,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25544,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3319,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=39200,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=3953,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=356,
+ ["unit"]=0
+ }
+ },
+ [3568]={
+ ["next_chapter"]=3569,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=121711,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25559,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3349,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=39600,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=3953,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=356,
+ ["unit"]=0
+ }
+ },
+ [3569]={
+ ["next_chapter"]=3570,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=121787,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25575,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3389,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=40000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=3953,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=356,
+ ["unit"]=0
+ }
+ },
+ [3570]={
+ ["next_chapter"]=3571,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=121866,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25592,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3429,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=40400,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=4357,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=357,
+ ["unit"]=0
+ }
+ },
+ [3571]={
+ ["next_chapter"]=3572,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=121947,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25609,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3469,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=40800,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=4357,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=357,
+ ["unit"]=0
+ }
+ },
+ [3572]={
+ ["next_chapter"]=3573,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=122030,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25626,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3509,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=41200,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=4357,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=357,
+ ["unit"]=0
+ }
+ },
+ [3573]={
+ ["next_chapter"]=3574,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=122116,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25644,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3549,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=41600,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=4357,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=357,
+ ["unit"]=0
+ }
+ },
+ [3574]={
+ ["next_chapter"]=3575,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=122204,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25663,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3589,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=42000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=4357,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=357,
+ ["unit"]=0
+ }
+ },
+ [3575]={
+ ["next_chapter"]=3576,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=122295,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25682,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3629,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=42400,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=4357,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=357,
+ ["unit"]=0
+ }
+ },
+ [3576]={
+ ["next_chapter"]=3577,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=122388,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25701,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3669,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=42800,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=4357,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=357,
+ ["unit"]=0
+ }
+ },
+ [3577]={
+ ["next_chapter"]=3578,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=122484,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25722,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3709,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=43200,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=4357,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=357,
+ ["unit"]=0
+ }
+ },
+ [3578]={
+ ["next_chapter"]=3579,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=122582,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25742,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3749,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=43600,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=4357,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=357,
+ ["unit"]=0
+ }
+ },
+ [3579]={
+ ["next_chapter"]=3580,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=122682,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25763,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3789,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=44000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=4357,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=357,
+ ["unit"]=0
+ }
+ },
+ [3580]={
+ ["next_chapter"]=3581,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=122785,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25785,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3829,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=44400,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=4801,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=358,
+ ["unit"]=0
+ }
+ },
+ [3581]={
+ ["next_chapter"]=3582,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=122891,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25807,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3869,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=44800,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=4801,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=358,
+ ["unit"]=0
+ }
+ },
+ [3582]={
+ ["next_chapter"]=3583,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=122999,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25830,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3909,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=45200,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=4801,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=358,
+ ["unit"]=0
+ }
+ },
+ [3583]={
+ ["next_chapter"]=3584,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=123111,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25853,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3949,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=45700,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=4801,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=358,
+ ["unit"]=0
+ }
+ },
+ [3584]={
+ ["next_chapter"]=3585,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=123224,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25877,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3989,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=46200,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=4801,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=358,
+ ["unit"]=0
+ }
+ },
+ [3585]={
+ ["next_chapter"]=3586,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=123341,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25902,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4029,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=46700,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=4801,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=358,
+ ["unit"]=0
+ }
+ },
+ [3586]={
+ ["next_chapter"]=3587,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=123460,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25927,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4069,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=47200,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=4801,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=358,
+ ["unit"]=0
+ }
+ },
+ [3587]={
+ ["next_chapter"]=3588,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=123582,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25952,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4109,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=47700,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=4801,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=358,
+ ["unit"]=0
+ }
+ },
+ [3588]={
+ ["next_chapter"]=3589,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=123707,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=25979,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4149,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=48200,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=4801,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=358,
+ ["unit"]=0
+ }
+ },
+ [3589]={
+ ["next_chapter"]=3590,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=123835,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=26005,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4189,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=48700,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=4801,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=358,
+ ["unit"]=0
+ }
+ },
+ [3590]={
+ ["next_chapter"]=3591,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=123966,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=26033,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4229,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=49200,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=5293,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=359,
+ ["unit"]=0
+ }
+ },
+ [3591]={
+ ["next_chapter"]=3592,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=124099,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=26061,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4269,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=49700,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=5293,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=359,
+ ["unit"]=0
+ }
+ },
+ [3592]={
+ ["next_chapter"]=3593,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=124236,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=26090,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4319,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=50200,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=5293,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=359,
+ ["unit"]=0
+ }
+ },
+ [3593]={
+ ["next_chapter"]=3594,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=124376,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=26119,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4369,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=50700,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=5293,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=359,
+ ["unit"]=0
+ }
+ },
+ [3594]={
+ ["next_chapter"]=3595,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=124518,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=26149,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4419,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=51200,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=5293,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=359,
+ ["unit"]=0
+ }
+ },
+ [3595]={
+ ["next_chapter"]=3596,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=124664,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=26179,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4469,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=51700,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=5293,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=359,
+ ["unit"]=0
+ }
+ },
+ [3596]={
+ ["next_chapter"]=3597,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=124813,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=26211,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4519,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=52200,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=5293,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=359,
+ ["unit"]=0
+ }
+ },
+ [3597]={
+ ["next_chapter"]=3598,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=124965,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=26243,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4569,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=52700,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=5293,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=359,
+ ["unit"]=0
+ }
+ },
+ [3598]={
+ ["next_chapter"]=3599,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=125120,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=26275,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4619,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=53200,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=5293,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=359,
+ ["unit"]=0
+ }
+ },
+ [3599]={
+ ["next_chapter"]=3600,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=125278,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=26308,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4669,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=53700,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=5293,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=359,
+ ["unit"]=0
+ }
+ },
+ [3600]={
+ ["next_chapter"]=3601,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=125440,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=26342,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4719,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=54200,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=5835,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=360,
+ ["unit"]=0
+ }
+ },
+ [3601]={
+ ["next_chapter"]=3602,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=125605,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=26377,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4769,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=54700,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=5835,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=360,
+ ["unit"]=0
+ }
+ },
+ [3602]={
+ ["next_chapter"]=3603,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=125773,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=26412,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4819,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=55200,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=5835,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=360,
+ ["unit"]=0
+ }
+ },
+ [3603]={
+ ["next_chapter"]=3604,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=125944,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=26448,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4869,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=55800,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=5835,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=360,
+ ["unit"]=0
+ }
+ },
+ [3604]={
+ ["next_chapter"]=3605,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=126119,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=26485,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4919,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=56400,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=5835,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=360,
+ ["unit"]=0
+ }
+ },
+ [3605]={
+ ["next_chapter"]=3606,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=126297,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=26522,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4969,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=57000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=5835,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=360,
+ ["unit"]=0
+ }
+ },
+ [3606]={
+ ["next_chapter"]=3607,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=126479,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=26561,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5019,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=57600,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=5835,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=360,
+ ["unit"]=0
+ }
+ },
+ [3607]={
+ ["next_chapter"]=3608,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=126664,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=26599,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5069,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=58200,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=5835,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=360,
+ ["unit"]=0
+ }
+ },
+ [3608]={
+ ["next_chapter"]=3609,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=126853,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=26639,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5119,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=58800,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=5835,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=360,
+ ["unit"]=0
+ }
+ },
+ [3609]={
+ ["next_chapter"]=3610,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=127045,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=26679,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5169,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=59400,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=5835,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=360,
+ ["unit"]=0
+ }
+ },
+ [3610]={
+ ["next_chapter"]=3611,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=127241,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=26721,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5229,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=60000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=6435,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=361,
+ ["unit"]=0
+ }
+ },
+ [3611]={
+ ["next_chapter"]=3612,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=127440,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=26762,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5289,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=60600,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=6435,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=361,
+ ["unit"]=0
+ }
+ },
+ [3612]={
+ ["next_chapter"]=3613,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=127643,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=26805,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5349,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=61200,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=6435,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=361,
+ ["unit"]=0
+ }
+ },
+ [3613]={
+ ["next_chapter"]=3614,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=127849,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=26848,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5409,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=61800,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=6435,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=361,
+ ["unit"]=0
+ }
+ },
+ [3614]={
+ ["next_chapter"]=3615,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=128060,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=26893,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5469,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=62400,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=6435,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=361,
+ ["unit"]=0
+ }
+ },
+ [3615]={
+ ["next_chapter"]=3616,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=128274,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=26937,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5529,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=63000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=6435,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=361,
+ ["unit"]=0
+ }
+ },
+ [3616]={
+ ["next_chapter"]=3617,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=128491,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=26983,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5589,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=63600,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=6435,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=361,
+ ["unit"]=0
+ }
+ },
+ [3617]={
+ ["next_chapter"]=3618,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=128713,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=27030,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5649,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=64200,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=6435,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=361,
+ ["unit"]=0
+ }
+ },
+ [3618]={
+ ["next_chapter"]=3619,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=128938,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=27077,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5709,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=64800,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=6435,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=361,
+ ["unit"]=0
+ }
+ },
+ [3619]={
+ ["next_chapter"]=3620,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=129167,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=27125,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5769,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=65400,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=6435,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=361,
+ ["unit"]=0
+ }
+ },
+ [3620]={
+ ["next_chapter"]=3621,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=129400,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=27174,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5829,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=66100,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=7096,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=362,
+ ["unit"]=0
+ }
+ },
+ [3621]={
+ ["next_chapter"]=3622,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=129637,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=27224,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=66800,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=7096,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=362,
+ ["unit"]=0
+ }
+ },
+ [3622]={
+ ["next_chapter"]=3623,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=129878,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=27274,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5949,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=67500,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=7096,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=362,
+ ["unit"]=0
+ }
+ },
+ [3623]={
+ ["next_chapter"]=3624,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=130123,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=27326,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6009,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=68200,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=7096,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=362,
+ ["unit"]=0
+ }
+ },
+ [3624]={
+ ["next_chapter"]=3625,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=130372,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=27378,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6069,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=68900,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=7096,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=362,
+ ["unit"]=0
+ }
+ },
+ [3625]={
+ ["next_chapter"]=3626,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=130625,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=27431,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6129,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=69600,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=7096,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=362,
+ ["unit"]=0
+ }
+ },
+ [3626]={
+ ["next_chapter"]=3627,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=130882,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=27485,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6199,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=70300,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=7096,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=362,
+ ["unit"]=0
+ }
+ },
+ [3627]={
+ ["next_chapter"]=3628,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=131143,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=27540,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6269,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=71000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=7096,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=362,
+ ["unit"]=0
+ }
+ },
+ [3628]={
+ ["next_chapter"]=3629,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=131409,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=27596,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6339,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=71700,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=7096,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=362,
+ ["unit"]=0
+ }
+ },
+ [3629]={
+ ["next_chapter"]=3630,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=131678,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=27652,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6409,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=72400,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=7096,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=362,
+ ["unit"]=0
+ }
+ },
+ [3630]={
+ ["next_chapter"]=3631,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=131952,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=27710,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6479,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=73100,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=7827,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=363,
+ ["unit"]=0
+ }
+ },
+ [3631]={
+ ["next_chapter"]=3632,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=132230,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=27768,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6549,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=73800,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=7827,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=363,
+ ["unit"]=0
+ }
+ },
+ [3632]={
+ ["next_chapter"]=3633,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=132512,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=27827,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6619,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=74500,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=7827,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=363,
+ ["unit"]=0
+ }
+ },
+ [3633]={
+ ["next_chapter"]=3634,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=132798,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=27888,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6689,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=75200,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=7827,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=363,
+ ["unit"]=0
+ }
+ },
+ [3634]={
+ ["next_chapter"]=3635,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=133089,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=27949,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6759,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=76000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=7827,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=363,
+ ["unit"]=0
+ }
+ },
+ [3635]={
+ ["next_chapter"]=3636,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=133384,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=28011,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6829,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=76800,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=7827,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=363,
+ ["unit"]=0
+ }
+ },
+ [3636]={
+ ["next_chapter"]=3637,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=133684,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=28074,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6899,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=77600,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=7827,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=363,
+ ["unit"]=0
+ }
+ },
+ [3637]={
+ ["next_chapter"]=3638,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=133988,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=28138,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6969,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=78400,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=7827,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=363,
+ ["unit"]=0
+ }
+ },
+ [3638]={
+ ["next_chapter"]=3639,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=134297,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=28202,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7039,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=79200,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=7827,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=363,
+ ["unit"]=0
+ }
+ },
+ [3639]={
+ ["next_chapter"]=3640,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=134610,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=28268,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7119,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=80000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=7827,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=363,
+ ["unit"]=0
+ }
+ },
+ [3640]={
+ ["next_chapter"]=3641,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=134927,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=28335,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7199,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=80800,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=8635,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=364,
+ ["unit"]=0
+ }
+ },
+ [3641]={
+ ["next_chapter"]=3642,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=135250,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=28402,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7279,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=81600,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=8635,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=364,
+ ["unit"]=0
+ }
+ },
+ [3642]={
+ ["next_chapter"]=3643,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=135576,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=28471,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7359,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=82400,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=8635,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=364,
+ ["unit"]=0
+ }
+ },
+ [3643]={
+ ["next_chapter"]=3644,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=135908,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=28541,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7439,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=83200,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=8635,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=364,
+ ["unit"]=0
+ }
+ },
+ [3644]={
+ ["next_chapter"]=3645,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=136244,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=28611,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7519,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=84000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=8635,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=364,
+ ["unit"]=0
+ }
+ },
+ [3645]={
+ ["next_chapter"]=3646,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=136585,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=28683,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7599,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=84800,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=8635,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=364,
+ ["unit"]=0
+ }
+ },
+ [3646]={
+ ["next_chapter"]=3647,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=136930,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=28755,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7679,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=85600,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=8635,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=364,
+ ["unit"]=0
+ }
+ },
+ [3647]={
+ ["next_chapter"]=3648,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=137280,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=28829,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7759,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=86500,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=8635,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=364,
+ ["unit"]=0
+ }
+ },
+ [3648]={
+ ["next_chapter"]=3649,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=137635,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=28903,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7839,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=87400,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=8635,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=364,
+ ["unit"]=0
+ }
+ },
+ [3649]={
+ ["next_chapter"]=3650,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=137995,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=28979,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7919,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=88300,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=8635,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=364,
+ ["unit"]=0
+ }
+ },
+ [3650]={
+ ["next_chapter"]=3651,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=138360,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=29056,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7999,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=89200,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=9527,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=365,
+ ["unit"]=0
+ }
+ },
+ [3651]={
+ ["next_chapter"]=3652,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=138730,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=29133,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8089,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=90100,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=9527,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=365,
+ ["unit"]=0
+ }
+ },
+ [3652]={
+ ["next_chapter"]=3653,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=139104,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=29212,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8179,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=91000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=9527,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=365,
+ ["unit"]=0
+ }
+ },
+ [3653]={
+ ["next_chapter"]=3654,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=139484,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=29292,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8269,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=91900,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=9527,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=365,
+ ["unit"]=0
+ }
+ },
+ [3654]={
+ ["next_chapter"]=3655,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=139868,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=29372,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8359,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=92800,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=9527,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=365,
+ ["unit"]=0
+ }
+ },
+ [3655]={
+ ["next_chapter"]=3656,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=140258,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=29454,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8449,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=93700,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=9527,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=365,
+ ["unit"]=0
+ }
+ },
+ [3656]={
+ ["next_chapter"]=3657,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=140653,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=29537,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8539,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=94600,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=9527,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=365,
+ ["unit"]=0
+ }
+ },
+ [3657]={
+ ["next_chapter"]=3658,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=141052,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=29621,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8629,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=95500,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=9527,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=365,
+ ["unit"]=0
+ }
+ },
+ [3658]={
+ ["next_chapter"]=3659,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=141457,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=29706,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8719,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=96500,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=9527,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=365,
+ ["unit"]=0
+ }
+ },
+ [3659]={
+ ["next_chapter"]=3660,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=141867,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=29792,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8809,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=97500,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=9527,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=365,
+ ["unit"]=0
+ }
+ },
+ [3660]={
+ ["next_chapter"]=3661,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=142282,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=29879,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8899,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=98500,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=10512,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=366,
+ ["unit"]=0
+ }
+ },
+ [3661]={
+ ["next_chapter"]=3662,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=142703,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=29968,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8989,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=99500,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=10512,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=366,
+ ["unit"]=0
+ }
+ },
+ [3662]={
+ ["next_chapter"]=3663,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=143128,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=30057,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9089,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=100500,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=10512,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=366,
+ ["unit"]=0
+ }
+ },
+ [3663]={
+ ["next_chapter"]=3664,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=143559,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=30147,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9189,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=102000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=10512,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=366,
+ ["unit"]=0
+ }
+ },
+ [3664]={
+ ["next_chapter"]=3665,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=143996,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=30239,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9289,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=103000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=10512,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=366,
+ ["unit"]=0
+ }
+ },
+ [3665]={
+ ["next_chapter"]=3666,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=144437,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=30332,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9389,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=104000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=10512,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=366,
+ ["unit"]=0
+ }
+ },
+ [3666]={
+ ["next_chapter"]=3667,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=144884,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=30426,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9489,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=105000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=10512,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=366,
+ ["unit"]=0
+ }
+ },
+ [3667]={
+ ["next_chapter"]=3668,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=145337,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=30521,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9589,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=106000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=10512,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=366,
+ ["unit"]=0
+ }
+ },
+ [3668]={
+ ["next_chapter"]=3669,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=145794,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=30617,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9689,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=107000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=10512,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=366,
+ ["unit"]=0
+ }
+ },
+ [3669]={
+ ["next_chapter"]=3670,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=146258,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=30714,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9789,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=108000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=10512,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=366,
+ ["unit"]=0
+ }
+ },
+ [3670]={
+ ["next_chapter"]=3671,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=146727,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=30813,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=109000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=11602,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=367,
+ ["unit"]=0
+ }
+ },
+ [3671]={
+ ["next_chapter"]=3672,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=147201,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=30912,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9989,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=110000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=11602,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=367,
+ ["unit"]=0
+ }
+ },
+ [3672]={
+ ["next_chapter"]=3673,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=147681,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=31013,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10089,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=111000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=11602,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=367,
+ ["unit"]=0
+ }
+ },
+ [3673]={
+ ["next_chapter"]=3674,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=148167,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=31115,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10189,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=112000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=11602,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=367,
+ ["unit"]=0
+ }
+ },
+ [3674]={
+ ["next_chapter"]=3675,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=148658,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=31218,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10289,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=113000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=11602,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=367,
+ ["unit"]=0
+ }
+ },
+ [3675]={
+ ["next_chapter"]=3676,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=149155,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=31323,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10389,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=114000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=11602,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=367,
+ ["unit"]=0
+ }
+ },
+ [3676]={
+ ["next_chapter"]=3677,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=149658,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=31428,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10489,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=115000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=11602,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=367,
+ ["unit"]=0
+ }
+ },
+ [3677]={
+ ["next_chapter"]=3678,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150166,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=31535,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10589,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=116000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=11602,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=367,
+ ["unit"]=0
+ }
+ },
+ [3678]={
+ ["next_chapter"]=3679,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150680,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=31643,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10689,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=117000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=11602,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=367,
+ ["unit"]=0
+ }
+ },
+ [3679]={
+ ["next_chapter"]=3680,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=151200,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=31752,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10789,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=118000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=11602,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=367,
+ ["unit"]=0
+ }
+ },
+ [3680]={
+ ["next_chapter"]=3681,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=151726,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=31862,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=119000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=12792,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=368,
+ ["unit"]=0
+ }
+ },
+ [3681]={
+ ["next_chapter"]=3682,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=152258,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=31974,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10989,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=120000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=12792,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=368,
+ ["unit"]=0
+ }
+ },
+ [3682]={
+ ["next_chapter"]=3683,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=152795,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=32087,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11089,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=121000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=12792,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=368,
+ ["unit"]=0
+ }
+ },
+ [3683]={
+ ["next_chapter"]=3684,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=153339,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=32201,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11189,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=122000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=12792,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=368,
+ ["unit"]=0
+ }
+ },
+ [3684]={
+ ["next_chapter"]=3685,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=153889,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=32317,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11289,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=123000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=12792,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=368,
+ ["unit"]=0
+ }
+ },
+ [3685]={
+ ["next_chapter"]=3686,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=154444,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=32433,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11389,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=124000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=12792,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=368,
+ ["unit"]=0
+ }
+ },
+ [3686]={
+ ["next_chapter"]=3687,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=155006,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=32551,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11489,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=125000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=12792,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=368,
+ ["unit"]=0
+ }
+ },
+ [3687]={
+ ["next_chapter"]=3688,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=155573,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=32670,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11589,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=126000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=12792,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=368,
+ ["unit"]=0
+ }
+ },
+ [3688]={
+ ["next_chapter"]=3689,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=156147,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=32791,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11689,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=127000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=12792,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=368,
+ ["unit"]=0
+ }
+ },
+ [3689]={
+ ["next_chapter"]=3690,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=156727,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=32913,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11789,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=128000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=12792,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=368,
+ ["unit"]=0
+ }
+ },
+ [3690]={
+ ["next_chapter"]=3691,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=157313,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=33036,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=129000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=14082,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=369,
+ ["unit"]=0
+ }
+ },
+ [3691]={
+ ["next_chapter"]=3692,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=157905,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=33160,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11989,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=130000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=14082,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=369,
+ ["unit"]=0
+ }
+ },
+ [3692]={
+ ["next_chapter"]=3693,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=158504,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=33286,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12089,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=131000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=14082,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=369,
+ ["unit"]=0
+ }
+ },
+ [3693]={
+ ["next_chapter"]=3694,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=159108,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=33413,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12189,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=132000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=14082,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=369,
+ ["unit"]=0
+ }
+ },
+ [3694]={
+ ["next_chapter"]=3695,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=159720,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=33541,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12289,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=133000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=14082,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=369,
+ ["unit"]=0
+ }
+ },
+ [3695]={
+ ["next_chapter"]=3696,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=160337,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=33671,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12389,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=134000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=14082,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=369,
+ ["unit"]=0
+ }
+ },
+ [3696]={
+ ["next_chapter"]=3697,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=160961,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=33802,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12489,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=135000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=14082,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=369,
+ ["unit"]=0
+ }
+ },
+ [3697]={
+ ["next_chapter"]=3698,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=161591,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=33934,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12589,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=136000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=14082,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=369,
+ ["unit"]=0
+ }
+ },
+ [3698]={
+ ["next_chapter"]=3699,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=162227,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=34068,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12689,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=137000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=14082,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=369,
+ ["unit"]=0
+ }
+ },
+ [3699]={
+ ["next_chapter"]=3700,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=162870,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=34203,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12789,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=138000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=14082,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=369,
+ ["unit"]=0
+ }
+ },
+ [3700]={
+ ["next_chapter"]=3701,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=163520,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=34339,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=139000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=15472,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=370,
+ ["unit"]=0
+ }
+ },
+ [3701]={
+ ["next_chapter"]=3702,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=164176,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=34477,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12989,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=140000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=15472,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=370,
+ ["unit"]=0
+ }
+ },
+ [3702]={
+ ["next_chapter"]=3703,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=164839,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=34616,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13089,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=141000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=15472,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=370,
+ ["unit"]=0
+ }
+ },
+ [3703]={
+ ["next_chapter"]=3704,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=165508,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=34757,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13189,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=142000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=15472,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=370,
+ ["unit"]=0
+ }
+ },
+ [3704]={
+ ["next_chapter"]=3705,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=166184,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=34899,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13289,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=143000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=15472,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=370,
+ ["unit"]=0
+ }
+ },
+ [3705]={
+ ["next_chapter"]=3706,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=166866,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=35042,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13389,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=144000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=15472,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=370,
+ ["unit"]=0
+ }
+ },
+ [3706]={
+ ["next_chapter"]=3707,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=167555,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=35187,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13489,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=145000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=15472,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=370,
+ ["unit"]=0
+ }
+ },
+ [3707]={
+ ["next_chapter"]=3708,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=168251,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=35333,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13589,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=146000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=15472,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=370,
+ ["unit"]=0
+ }
+ },
+ [3708]={
+ ["next_chapter"]=3709,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=168954,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=35480,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13689,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=147000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=15472,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=370,
+ ["unit"]=0
+ }
+ },
+ [3709]={
+ ["next_chapter"]=3710,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=169664,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=35629,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13789,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=148000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=15472,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=370,
+ ["unit"]=0
+ }
+ },
+ [3710]={
+ ["next_chapter"]=3711,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=170380,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=35780,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=149000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=16962,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=371,
+ ["unit"]=0
+ }
+ },
+ [3711]={
+ ["next_chapter"]=3712,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=171103,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=35932,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13989,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=150000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=16962,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=371,
+ ["unit"]=0
+ }
+ },
+ [3712]={
+ ["next_chapter"]=3713,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=171833,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=36085,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14089,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=152000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=16962,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=371,
+ ["unit"]=0
+ }
+ },
+ [3713]={
+ ["next_chapter"]=3714,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=172570,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=36240,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14189,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=154000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=16962,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=371,
+ ["unit"]=0
+ }
+ },
+ [3714]={
+ ["next_chapter"]=3715,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=173314,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=36396,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14289,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=156000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=16962,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=371,
+ ["unit"]=0
+ }
+ },
+ [3715]={
+ ["next_chapter"]=3716,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=174065,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=36554,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14389,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=158000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=16962,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=371,
+ ["unit"]=0
+ }
+ },
+ [3716]={
+ ["next_chapter"]=3717,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=174823,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=36713,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14489,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=160000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=16962,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=371,
+ ["unit"]=0
+ }
+ },
+ [3717]={
+ ["next_chapter"]=3718,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=175588,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=36873,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14589,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=162000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=16962,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=371,
+ ["unit"]=0
+ }
+ },
+ [3718]={
+ ["next_chapter"]=3719,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=176360,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=37036,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14689,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=164000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=16962,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=371,
+ ["unit"]=0
+ }
+ },
+ [3719]={
+ ["next_chapter"]=3720,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=177139,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=37199,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14789,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=166000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=16962,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=371,
+ ["unit"]=0
+ }
+ },
+ [3720]={
+ ["next_chapter"]=3721,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=177925,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=37364,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=168000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=18642,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=372,
+ ["unit"]=0
+ }
+ },
+ [3721]={
+ ["next_chapter"]=3722,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=178719,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=37531,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14989,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=170000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=18642,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=372,
+ ["unit"]=0
+ }
+ },
+ [3722]={
+ ["next_chapter"]=3723,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=179519,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=37699,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15089,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=172000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=18642,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=372,
+ ["unit"]=0
+ }
+ },
+ [3723]={
+ ["next_chapter"]=3724,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=180327,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=37869,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15189,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=174000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=18642,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=372,
+ ["unit"]=0
+ }
+ },
+ [3724]={
+ ["next_chapter"]=3725,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=181142,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=38040,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15289,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=176000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=18642,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=372,
+ ["unit"]=0
+ }
+ },
+ [3725]={
+ ["next_chapter"]=3726,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=181965,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=38213,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15389,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=178000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=18642,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=372,
+ ["unit"]=0
+ }
+ },
+ [3726]={
+ ["next_chapter"]=3727,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=182795,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=38387,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15489,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=180000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=18642,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=372,
+ ["unit"]=0
+ }
+ },
+ [3727]={
+ ["next_chapter"]=3728,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=183632,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=38563,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15589,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=182000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=18642,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=372,
+ ["unit"]=0
+ }
+ },
+ [3728]={
+ ["next_chapter"]=3729,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=184477,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=38740,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15689,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=184000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=18642,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=372,
+ ["unit"]=0
+ }
+ },
+ [3729]={
+ ["next_chapter"]=3730,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=185329,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=38919,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15789,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=186000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=18642,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=372,
+ ["unit"]=0
+ }
+ },
+ [3730]={
+ ["next_chapter"]=3731,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=186188,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=39100,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=188000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=20522,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=373,
+ ["unit"]=0
+ }
+ },
+ [3731]={
+ ["next_chapter"]=3732,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=187056,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=39282,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15989,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=190000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=20522,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=373,
+ ["unit"]=0
+ }
+ },
+ [3732]={
+ ["next_chapter"]=3733,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=187930,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=39465,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16089,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=192000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=20522,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=373,
+ ["unit"]=0
+ }
+ },
+ [3733]={
+ ["next_chapter"]=3734,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=188812,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=39651,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16189,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=194000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=20522,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=373,
+ ["unit"]=0
+ }
+ },
+ [3734]={
+ ["next_chapter"]=3735,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=189702,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=39837,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16289,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=196000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=20522,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=373,
+ ["unit"]=0
+ }
+ },
+ [3735]={
+ ["next_chapter"]=3736,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=190600,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=40026,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16389,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=198000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=20522,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=373,
+ ["unit"]=0
+ }
+ },
+ [3736]={
+ ["next_chapter"]=3737,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=191505,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=40216,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16589,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=200000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=20522,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=373,
+ ["unit"]=0
+ }
+ },
+ [3737]={
+ ["next_chapter"]=3738,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=192418,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=40408,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16789,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=202000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=20522,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=373,
+ ["unit"]=0
+ }
+ },
+ [3738]={
+ ["next_chapter"]=3739,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=193338,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=40601,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16989,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=204000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=20522,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=373,
+ ["unit"]=0
+ }
+ },
+ [3739]={
+ ["next_chapter"]=3740,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=194266,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=40796,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17189,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=206000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=20522,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=373,
+ ["unit"]=0
+ }
+ },
+ [3740]={
+ ["next_chapter"]=3741,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=195203,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=40993,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17389,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=208000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=22602,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=374,
+ ["unit"]=0
+ }
+ },
+ [3741]={
+ ["next_chapter"]=3742,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=196147,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=41191,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17589,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=210000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=22602,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=374,
+ ["unit"]=0
+ }
+ },
+ [3742]={
+ ["next_chapter"]=3743,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=197098,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=41391,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17789,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=212000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=22602,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=374,
+ ["unit"]=0
+ }
+ },
+ [3743]={
+ ["next_chapter"]=3744,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=198058,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=41592,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17989,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=214000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=22602,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=374,
+ ["unit"]=0
+ }
+ },
+ [3744]={
+ ["next_chapter"]=3745,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=199026,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=41795,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18189,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=216000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=22602,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=374,
+ ["unit"]=0
+ }
+ },
+ [3745]={
+ ["next_chapter"]=3746,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=200001,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=42000,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18389,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=218000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=22602,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=374,
+ ["unit"]=0
+ }
+ },
+ [3746]={
+ ["next_chapter"]=3747,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=200985,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=42207,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18589,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=220000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=22602,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=374,
+ ["unit"]=0
+ }
+ },
+ [3747]={
+ ["next_chapter"]=3748,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=201977,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=42415,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18789,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=222000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=22602,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=374,
+ ["unit"]=0
+ }
+ },
+ [3748]={
+ ["next_chapter"]=3749,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=202976,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=42625,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18989,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=224000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=22602,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=374,
+ ["unit"]=0
+ }
+ },
+ [3749]={
+ ["next_chapter"]=3750,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=203984,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=42837,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19189,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=226000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=22602,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=374,
+ ["unit"]=0
+ }
+ },
+ [3750]={
+ ["next_chapter"]=3751,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=205000,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=43050,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19389,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=228000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=24882,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=375,
+ ["unit"]=0
+ }
+ },
+ [3751]={
+ ["next_chapter"]=3752,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=206024,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=43265,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19589,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=230000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=24882,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=375,
+ ["unit"]=0
+ }
+ },
+ [3752]={
+ ["next_chapter"]=3753,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=207056,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=43482,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19789,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=232000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=24882,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=375,
+ ["unit"]=0
+ }
+ },
+ [3753]={
+ ["next_chapter"]=3754,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=208097,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=43700,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19989,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=234000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=24882,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=375,
+ ["unit"]=0
+ }
+ },
+ [3754]={
+ ["next_chapter"]=3755,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=209146,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=43921,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20189,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=236000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=24882,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=375,
+ ["unit"]=0
+ }
+ },
+ [3755]={
+ ["next_chapter"]=3756,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=210203,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=44143,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20389,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=238000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=24882,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=375,
+ ["unit"]=0
+ }
+ },
+ [3756]={
+ ["next_chapter"]=3757,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=211268,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=44366,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20589,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=240000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=24882,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=375,
+ ["unit"]=0
+ }
+ },
+ [3757]={
+ ["next_chapter"]=3758,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=212342,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=44592,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20789,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=242000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=24882,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=375,
+ ["unit"]=0
+ }
+ },
+ [3758]={
+ ["next_chapter"]=3759,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=213424,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=44819,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20989,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=244000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=24882,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=375,
+ ["unit"]=0
+ }
+ },
+ [3759]={
+ ["next_chapter"]=3760,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=214514,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=45048,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21189,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=246000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=24882,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=375,
+ ["unit"]=0
+ }
+ },
+ [3760]={
+ ["next_chapter"]=3761,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=215613,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=45279,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21389,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=248000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=27362,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=376,
+ ["unit"]=0
+ }
+ },
+ [3761]={
+ ["next_chapter"]=3762,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=216721,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=45511,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21589,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=250000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=27362,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=376,
+ ["unit"]=0
+ }
+ },
+ [3762]={
+ ["next_chapter"]=3763,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=217837,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=45746,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21789,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=253000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=27362,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=376,
+ ["unit"]=0
+ }
+ },
+ [3763]={
+ ["next_chapter"]=3764,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=218961,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=45982,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21989,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=256000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=27362,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=376,
+ ["unit"]=0
+ }
+ },
+ [3764]={
+ ["next_chapter"]=3765,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=220095,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=46220,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22189,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=259000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=27362,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=376,
+ ["unit"]=0
+ }
+ },
+ [3765]={
+ ["next_chapter"]=3766,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=221236,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=46460,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22389,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=262000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=27362,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=376,
+ ["unit"]=0
+ }
+ },
+ [3766]={
+ ["next_chapter"]=3767,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=222387,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=46701,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22589,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=265000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=27362,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=376,
+ ["unit"]=0
+ }
+ },
+ [3767]={
+ ["next_chapter"]=3768,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=223546,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=46945,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22789,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=268000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=27362,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=376,
+ ["unit"]=0
+ }
+ },
+ [3768]={
+ ["next_chapter"]=3769,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=224714,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=47190,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22989,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=271000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=27362,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=376,
+ ["unit"]=0
+ }
+ },
+ [3769]={
+ ["next_chapter"]=3770,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=225890,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=47437,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23189,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=274000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=27362,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=376,
+ ["unit"]=0
+ }
+ },
+ [3770]={
+ ["next_chapter"]=3771,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=227076,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=47686,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23389,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=277000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=30132,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=377,
+ ["unit"]=0
+ }
+ },
+ [3771]={
+ ["next_chapter"]=3772,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=228270,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=47937,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23589,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=280000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=30132,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=377,
+ ["unit"]=0
+ }
+ },
+ [3772]={
+ ["next_chapter"]=3773,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=229473,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=48189,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23789,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=283000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=30132,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=377,
+ ["unit"]=0
+ }
+ },
+ [3773]={
+ ["next_chapter"]=3774,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=230685,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=48444,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23989,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=286000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=30132,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=377,
+ ["unit"]=0
+ }
+ },
+ [3774]={
+ ["next_chapter"]=3775,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=231905,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=48700,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24189,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=289000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=30132,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=377,
+ ["unit"]=0
+ }
+ },
+ [3775]={
+ ["next_chapter"]=3776,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=233135,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=48958,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24389,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=292000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=30132,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=377,
+ ["unit"]=0
+ }
+ },
+ [3776]={
+ ["next_chapter"]=3777,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=234374,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=49218,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24589,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=295000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=30132,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=377,
+ ["unit"]=0
+ }
+ },
+ [3777]={
+ ["next_chapter"]=3778,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=235621,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=49480,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=200000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24789,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=298000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=30132,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=377,
+ ["unit"]=0
+ }
+ },
+ [3778]={
+ ["next_chapter"]=3779,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=236878,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=49744,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25089,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=301000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=30132,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=377,
+ ["unit"]=0
+ }
+ },
+ [3779]={
+ ["next_chapter"]=3780,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=238144,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=50010,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25389,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=304000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=30132,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=377,
+ ["unit"]=0
+ }
+ },
+ [3780]={
+ ["next_chapter"]=3781,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=239419,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=50278,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25689,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=307000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=33202,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=378,
+ ["unit"]=0
+ }
+ },
+ [3781]={
+ ["next_chapter"]=3782,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=240703,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=50548,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25989,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=310000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=33202,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=378,
+ ["unit"]=0
+ }
+ },
+ [3782]={
+ ["next_chapter"]=3783,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=241996,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=50819,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26289,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=313000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=33202,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=378,
+ ["unit"]=0
+ }
+ },
+ [3783]={
+ ["next_chapter"]=3784,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=243299,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=51093,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26589,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=316000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=33202,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=378,
+ ["unit"]=0
+ }
+ },
+ [3784]={
+ ["next_chapter"]=3785,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=244610,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=51368,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=319000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=33202,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=378,
+ ["unit"]=0
+ }
+ },
+ [3785]={
+ ["next_chapter"]=3786,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=245931,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=51646,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27189,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=322000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=33202,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=378,
+ ["unit"]=0
+ }
+ },
+ [3786]={
+ ["next_chapter"]=3787,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=247261,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=51925,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27489,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=325000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=33202,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=378,
+ ["unit"]=0
+ }
+ },
+ [3787]={
+ ["next_chapter"]=3788,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=248601,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=52206,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27789,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=328000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=33202,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=378,
+ ["unit"]=0
+ }
+ },
+ [3788]={
+ ["next_chapter"]=3789,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=249950,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=52490,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28089,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=331000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=33202,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=378,
+ ["unit"]=0
+ }
+ },
+ [3789]={
+ ["next_chapter"]=3790,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=251308,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=52775,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28389,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=334000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=33202,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=378,
+ ["unit"]=0
+ }
+ },
+ [3790]={
+ ["next_chapter"]=3791,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=252676,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=53062,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28689,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=337000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=36572,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=379,
+ ["unit"]=0
+ }
+ },
+ [3791]={
+ ["next_chapter"]=3792,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=254053,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=53351,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28989,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=340000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=36572,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=379,
+ ["unit"]=0
+ }
+ },
+ [3792]={
+ ["next_chapter"]=3793,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=255440,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=53642,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29289,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=343000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=36572,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=379,
+ ["unit"]=0
+ }
+ },
+ [3793]={
+ ["next_chapter"]=3794,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=256836,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=53936,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29589,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=346000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=36572,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=379,
+ ["unit"]=0
+ }
+ },
+ [3794]={
+ ["next_chapter"]=3795,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=258242,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=54231,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=349000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=36572,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=379,
+ ["unit"]=0
+ }
+ },
+ [3795]={
+ ["next_chapter"]=3796,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=259658,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=54528,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30189,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=352000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=36572,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=379,
+ ["unit"]=0
+ }
+ },
+ [3796]={
+ ["next_chapter"]=3797,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=261083,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=54827,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30489,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=356000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=36572,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=379,
+ ["unit"]=0
+ }
+ },
+ [3797]={
+ ["next_chapter"]=3798,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=262518,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=55129,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30789,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=360000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=36572,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=379,
+ ["unit"]=0
+ }
+ },
+ [3798]={
+ ["next_chapter"]=3799,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=263962,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=55432,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31089,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=364000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=36572,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=379,
+ ["unit"]=0
+ }
+ },
+ [3799]={
+ ["next_chapter"]=3800,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=265416,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=55737,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31389,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=368000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=36572,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=379,
+ ["unit"]=0
+ }
+ },
+ [3800]={
+ ["next_chapter"]=3801,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=266880,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=56045,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31689,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=372000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=40292,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=380,
+ ["unit"]=0
+ }
+ },
+ [3801]={
+ ["next_chapter"]=3802,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=268354,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=56354,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31989,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=376000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=40292,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=380,
+ ["unit"]=0
+ }
+ },
+ [3802]={
+ ["next_chapter"]=3803,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=269837,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=56666,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32289,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=380000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=40292,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=380,
+ ["unit"]=0
+ }
+ },
+ [3803]={
+ ["next_chapter"]=3804,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=271331,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=56979,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32589,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=384000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=40292,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=380,
+ ["unit"]=0
+ }
+ },
+ [3804]={
+ ["next_chapter"]=3805,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=272834,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=57295,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=388000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=40292,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=380,
+ ["unit"]=0
+ }
+ },
+ [3805]={
+ ["next_chapter"]=3806,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=274347,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=57613,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33189,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=392000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=40292,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=380,
+ ["unit"]=0
+ }
+ },
+ [3806]={
+ ["next_chapter"]=3807,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=275870,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=57933,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33489,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=396000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=40292,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=380,
+ ["unit"]=0
+ }
+ },
+ [3807]={
+ ["next_chapter"]=3808,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=277403,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=58255,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=400000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=40292,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=380,
+ ["unit"]=0
+ }
+ },
+ [3808]={
+ ["next_chapter"]=3809,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=278947,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=58579,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34289,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=404000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=40292,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=380,
+ ["unit"]=0
+ }
+ },
+ [3809]={
+ ["next_chapter"]=3810,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=280500,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=58905,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34689,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=408000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=40292,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=380,
+ ["unit"]=0
+ }
+ },
+ [3810]={
+ ["next_chapter"]=3811,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=282063,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=59233,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35089,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=412000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=44412,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=381,
+ ["unit"]=0
+ }
+ },
+ [3811]={
+ ["next_chapter"]=3812,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=283636,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=59564,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35489,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=416000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=44412,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=381,
+ ["unit"]=0
+ }
+ },
+ [3812]={
+ ["next_chapter"]=3813,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=285220,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=59896,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=420000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=44412,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=381,
+ ["unit"]=0
+ }
+ },
+ [3813]={
+ ["next_chapter"]=3814,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=286814,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=60231,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36289,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=424000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=44412,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=381,
+ ["unit"]=0
+ }
+ },
+ [3814]={
+ ["next_chapter"]=3815,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=288418,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=60568,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36689,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=428000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=44412,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=381,
+ ["unit"]=0
+ }
+ },
+ [3815]={
+ ["next_chapter"]=3816,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=290032,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=60907,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37089,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=432000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=44412,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=381,
+ ["unit"]=0
+ }
+ },
+ [3816]={
+ ["next_chapter"]=3817,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=291656,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=61248,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37489,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=436000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=44412,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=381,
+ ["unit"]=0
+ }
+ },
+ [3817]={
+ ["next_chapter"]=3818,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=293291,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=61591,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=440000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=44412,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=381,
+ ["unit"]=0
+ }
+ },
+ [3818]={
+ ["next_chapter"]=3819,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=294936,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=61937,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=38289,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=444000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=44412,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=381,
+ ["unit"]=0
+ }
+ },
+ [3819]={
+ ["next_chapter"]=3820,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=296592,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=62284,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=38689,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=448000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=44412,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=381,
+ ["unit"]=0
+ }
+ },
+ [3820]={
+ ["next_chapter"]=3821,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=298258,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=62634,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39089,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=452000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=48932,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=382,
+ ["unit"]=0
+ }
+ },
+ [3821]={
+ ["next_chapter"]=3822,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=299934,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=62986,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39489,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=457000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=48932,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=382,
+ ["unit"]=0
+ }
+ },
+ [3822]={
+ ["next_chapter"]=3823,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=301621,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=63340,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=462000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=48932,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=382,
+ ["unit"]=0
+ }
+ },
+ [3823]={
+ ["next_chapter"]=3824,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=303319,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=63697,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=40289,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=467000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=48932,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=382,
+ ["unit"]=0
+ }
+ },
+ [3824]={
+ ["next_chapter"]=3825,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=305026,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=64056,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=40689,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=472000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=48932,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=382,
+ ["unit"]=0
+ }
+ },
+ [3825]={
+ ["next_chapter"]=3826,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=306745,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=64416,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41089,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=477000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=48932,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=382,
+ ["unit"]=0
+ }
+ },
+ [3826]={
+ ["next_chapter"]=3827,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=308474,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=64780,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41489,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=482000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=48932,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=382,
+ ["unit"]=0
+ }
+ },
+ [3827]={
+ ["next_chapter"]=3828,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=310214,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=65145,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=487000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=48932,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=382,
+ ["unit"]=0
+ }
+ },
+ [3828]={
+ ["next_chapter"]=3829,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=311964,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=65512,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=42289,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=492000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=48932,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=382,
+ ["unit"]=0
+ }
+ },
+ [3829]={
+ ["next_chapter"]=3830,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=313725,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=65882,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=400000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=42689,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=497000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=48932,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=382,
+ ["unit"]=0
+ }
+ },
+ [3830]={
+ ["next_chapter"]=3831,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=315497,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=66254,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=43189,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=502000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=53952,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=383,
+ ["unit"]=0
+ }
+ },
+ [3831]={
+ ["next_chapter"]=3832,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=317280,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=66629,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=43689,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=507000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=53952,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=383,
+ ["unit"]=0
+ }
+ },
+ [3832]={
+ ["next_chapter"]=3833,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=319073,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=67005,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=44189,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=512000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=53952,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=383,
+ ["unit"]=0
+ }
+ },
+ [3833]={
+ ["next_chapter"]=3834,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=320878,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=67384,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=44689,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=517000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=53952,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=383,
+ ["unit"]=0
+ }
+ },
+ [3834]={
+ ["next_chapter"]=3835,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=322693,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=67765,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=45189,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=522000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=53952,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=383,
+ ["unit"]=0
+ }
+ },
+ [3835]={
+ ["next_chapter"]=3836,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=324519,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=68149,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=45689,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=527000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=53952,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=383,
+ ["unit"]=0
+ }
+ },
+ [3836]={
+ ["next_chapter"]=3837,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=326356,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=68535,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=46189,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=532000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=53952,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=383,
+ ["unit"]=0
+ }
+ },
+ [3837]={
+ ["next_chapter"]=3838,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=328204,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=68923,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=46689,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=537000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=53952,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=383,
+ ["unit"]=0
+ }
+ },
+ [3838]={
+ ["next_chapter"]=3839,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=330063,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=69313,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=47189,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=542000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=53952,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=383,
+ ["unit"]=0
+ }
+ },
+ [3839]={
+ ["next_chapter"]=3840,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=331933,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=69706,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=47689,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=547000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=53952,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=383,
+ ["unit"]=0
+ }
+ },
+ [3840]={
+ ["next_chapter"]=3841,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=333814,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=70101,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=48189,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=552000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=59472,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=384,
+ ["unit"]=0
+ }
+ },
+ [3841]={
+ ["next_chapter"]=3842,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=335706,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=70498,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=48689,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=558000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=59472,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=384,
+ ["unit"]=0
+ }
+ },
+ [3842]={
+ ["next_chapter"]=3843,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=337609,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=70898,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=49189,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=564000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=59472,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=384,
+ ["unit"]=0
+ }
+ },
+ [3843]={
+ ["next_chapter"]=3844,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=339524,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=71300,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=49689,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=570000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=59472,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=384,
+ ["unit"]=0
+ }
+ },
+ [3844]={
+ ["next_chapter"]=3845,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=341449,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=71704,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=50189,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=576000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=59472,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=384,
+ ["unit"]=0
+ }
+ },
+ [3845]={
+ ["next_chapter"]=3846,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=343386,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=72111,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=50689,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=582000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=59472,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=384,
+ ["unit"]=0
+ }
+ },
+ [3846]={
+ ["next_chapter"]=3847,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=345334,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=72520,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=51189,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=588000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=59472,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=384,
+ ["unit"]=0
+ }
+ },
+ [3847]={
+ ["next_chapter"]=3848,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=347294,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=72932,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=500000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=51689,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=594000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=59472,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=384,
+ ["unit"]=0
+ }
+ },
+ [3848]={
+ ["next_chapter"]=3849,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=349264,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=73346,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=52289,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=600000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=59472,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=384,
+ ["unit"]=0
+ }
+ },
+ [3849]={
+ ["next_chapter"]=3850,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=351247,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=73762,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=52889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=606000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=59472,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=384,
+ ["unit"]=0
+ }
+ },
+ [3850]={
+ ["next_chapter"]=3851,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=353240,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=74180,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=53489,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=612000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=65592,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=385,
+ ["unit"]=0
+ }
+ },
+ [3851]={
+ ["next_chapter"]=3852,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=355245,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=74601,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=54089,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=618000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=65592,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=385,
+ ["unit"]=0
+ }
+ },
+ [3852]={
+ ["next_chapter"]=3853,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=357261,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=75025,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=54689,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=624000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=65592,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=385,
+ ["unit"]=0
+ }
+ },
+ [3853]={
+ ["next_chapter"]=3854,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=359289,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=75451,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=55289,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=630000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=65592,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=385,
+ ["unit"]=0
+ }
+ },
+ [3854]={
+ ["next_chapter"]=3855,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=361329,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=75879,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=55889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=636000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=65592,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=385,
+ ["unit"]=0
+ }
+ },
+ [3855]={
+ ["next_chapter"]=3856,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=363379,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=76310,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=56489,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=642000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=65592,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=385,
+ ["unit"]=0
+ }
+ },
+ [3856]={
+ ["next_chapter"]=3857,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=365442,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=76743,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=57089,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=648000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=65592,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=385,
+ ["unit"]=0
+ }
+ },
+ [3857]={
+ ["next_chapter"]=3858,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=367516,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=77178,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=57689,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=654000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=65592,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=385,
+ ["unit"]=0
+ }
+ },
+ [3858]={
+ ["next_chapter"]=3859,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=369602,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=77616,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=58289,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=661000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=65592,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=385,
+ ["unit"]=0
+ }
+ },
+ [3859]={
+ ["next_chapter"]=3860,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=371699,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=78057,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=58889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=668000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=65592,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=385,
+ ["unit"]=0
+ }
+ },
+ [3860]={
+ ["next_chapter"]=3861,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=373809,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=78500,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=59489,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=675000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=72342,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=386,
+ ["unit"]=0
+ }
+ },
+ [3861]={
+ ["next_chapter"]=3862,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=375930,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=78945,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=60089,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=682000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=72342,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=386,
+ ["unit"]=0
+ }
+ },
+ [3862]={
+ ["next_chapter"]=3863,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=378062,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=79393,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=60689,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=689000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=72342,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=386,
+ ["unit"]=0
+ }
+ },
+ [3863]={
+ ["next_chapter"]=3864,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=380207,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=79843,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=600000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=61289,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=696000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=72342,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=386,
+ ["unit"]=0
+ }
+ },
+ [3864]={
+ ["next_chapter"]=3865,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=382363,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=80296,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=61989,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=703000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=72342,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=386,
+ ["unit"]=0
+ }
+ },
+ [3865]={
+ ["next_chapter"]=3866,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=384532,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=80752,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=62689,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=710000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=72342,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=386,
+ ["unit"]=0
+ }
+ },
+ [3866]={
+ ["next_chapter"]=3867,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=386712,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=81209,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=63389,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=717000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=72342,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=386,
+ ["unit"]=0
+ }
+ },
+ [3867]={
+ ["next_chapter"]=3868,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=388904,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=81670,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=64089,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=724000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=72342,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=386,
+ ["unit"]=0
+ }
+ },
+ [3868]={
+ ["next_chapter"]=3869,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=391108,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=82133,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=64789,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=731000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=72342,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=386,
+ ["unit"]=0
+ }
+ },
+ [3869]={
+ ["next_chapter"]=3870,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=393324,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=82598,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=65489,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=738000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=72342,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=386,
+ ["unit"]=0
+ }
+ },
+ [3870]={
+ ["next_chapter"]=3871,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=395552,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=83066,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=66189,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=745000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=79792,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=387,
+ ["unit"]=0
+ }
+ },
+ [3871]={
+ ["next_chapter"]=3872,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=397793,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=83536,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=66889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=752000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=79792,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=387,
+ ["unit"]=0
+ }
+ },
+ [3872]={
+ ["next_chapter"]=3873,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=400045,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=84009,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=67589,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=760000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=79792,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=387,
+ ["unit"]=0
+ }
+ },
+ [3873]={
+ ["next_chapter"]=3874,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=402309,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=84485,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=68289,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=768000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=79792,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=387,
+ ["unit"]=0
+ }
+ },
+ [3874]={
+ ["next_chapter"]=3875,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=404586,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=84963,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=68989,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=776000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=79792,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=387,
+ ["unit"]=0
+ }
+ },
+ [3875]={
+ ["next_chapter"]=3876,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=406875,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=85444,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=69689,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=784000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=79792,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=387,
+ ["unit"]=0
+ }
+ },
+ [3876]={
+ ["next_chapter"]=3877,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=409176,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=85927,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=700000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=70389,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=792000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=79792,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=387,
+ ["unit"]=0
+ }
+ },
+ [3877]={
+ ["next_chapter"]=3878,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=411490,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=86413,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=71189,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=800000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=79792,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=387,
+ ["unit"]=0
+ }
+ },
+ [3878]={
+ ["next_chapter"]=3879,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=413815,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=86901,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=71989,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=808000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=79792,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=387,
+ ["unit"]=0
+ }
+ },
+ [3879]={
+ ["next_chapter"]=3880,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=416153,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=87392,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=72789,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=816000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=79792,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=387,
+ ["unit"]=0
+ }
+ },
+ [3880]={
+ ["next_chapter"]=3881,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=418504,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=87886,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=73589,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=824000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=88032,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=388,
+ ["unit"]=0
+ }
+ },
+ [3881]={
+ ["next_chapter"]=3882,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=420866,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=88382,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=74389,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=832000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=88032,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=388,
+ ["unit"]=0
+ }
+ },
+ [3882]={
+ ["next_chapter"]=3883,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=423242,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=88881,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=75189,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=840000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=88032,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=388,
+ ["unit"]=0
+ }
+ },
+ [3883]={
+ ["next_chapter"]=3884,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=425629,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=89382,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=75989,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=848000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=88032,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=388,
+ ["unit"]=0
+ }
+ },
+ [3884]={
+ ["next_chapter"]=3885,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=428030,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=89886,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=76789,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=856000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=88032,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=388,
+ ["unit"]=0
+ }
+ },
+ [3885]={
+ ["next_chapter"]=3886,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=430442,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=90393,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=77589,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=865000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=88032,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=388,
+ ["unit"]=0
+ }
+ },
+ [3886]={
+ ["next_chapter"]=3887,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=432868,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=90902,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=78389,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=874000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=88032,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=388,
+ ["unit"]=0
+ }
+ },
+ [3887]={
+ ["next_chapter"]=3888,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=435306,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=91414,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=79189,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=883000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=88032,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=388,
+ ["unit"]=0
+ }
+ },
+ [3888]={
+ ["next_chapter"]=3889,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=437756,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=91929,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=800000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=79989,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=892000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=88032,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=388,
+ ["unit"]=0
+ }
+ },
+ [3889]={
+ ["next_chapter"]=3890,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=440219,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=92446,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=900000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=80889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=901000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=88032,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=388,
+ ["unit"]=0
+ }
+ },
+ [3890]={
+ ["next_chapter"]=3891,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=442695,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=92966,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=900000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=81789,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=910000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=97132,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=389,
+ ["unit"]=0
+ }
+ },
+ [3891]={
+ ["next_chapter"]=3892,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=445184,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=93489,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=900000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=82689,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=919000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=97132,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=389,
+ ["unit"]=0
+ }
+ },
+ [3892]={
+ ["next_chapter"]=3893,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=447685,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=94014,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=900000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=83589,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=928000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=97132,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=389,
+ ["unit"]=0
+ }
+ },
+ [3893]={
+ ["next_chapter"]=3894,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=450200,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=94542,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=900000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=84489,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=937000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=97132,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=389,
+ ["unit"]=0
+ }
+ },
+ [3894]={
+ ["next_chapter"]=3895,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=452727,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=95073,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=900000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=85389,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=946000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=97132,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=389,
+ ["unit"]=0
+ }
+ },
+ [3895]={
+ ["next_chapter"]=3896,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=455267,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=95606,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=900000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=86289,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=955000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=97132,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=389,
+ ["unit"]=0
+ }
+ },
+ [3896]={
+ ["next_chapter"]=3897,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=457819,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=96142,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=900000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=87189,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=965000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=97132,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=389,
+ ["unit"]=0
+ }
+ },
+ [3897]={
+ ["next_chapter"]=3898,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=460385,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=96681,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=900000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=88089,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=975000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=97132,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=389,
+ ["unit"]=0
+ }
+ },
+ [3898]={
+ ["next_chapter"]=3899,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=462964,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=97222,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=900000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=88989,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=985000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=97132,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=389,
+ ["unit"]=0
+ }
+ },
+ [3899]={
+ ["next_chapter"]=3900,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=465555,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=97767,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=900000,
+ ["unit"]=4
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=89889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=995000,
+ ["unit"]=4
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=97132,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=389,
+ ["unit"]=0
+ }
+ },
+ [3900]={
+ ["next_chapter"]=3901,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=468160,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=98314,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=90889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1005,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=107182,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=390,
+ ["unit"]=0
+ }
+ },
+ [3901]={
+ ["next_chapter"]=3902,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=470778,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=98863,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=91889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1020,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=107182,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=390,
+ ["unit"]=0
+ }
+ },
+ [3902]={
+ ["next_chapter"]=3903,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=473409,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=99416,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=92889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1030,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=107182,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=390,
+ ["unit"]=0
+ }
+ },
+ [3903]={
+ ["next_chapter"]=3904,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=476052,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=99971,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=93889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1040,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=107182,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=390,
+ ["unit"]=0
+ }
+ },
+ [3904]={
+ ["next_chapter"]=3905,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=478710,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=100529,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=94889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1050,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=107182,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=390,
+ ["unit"]=0
+ }
+ },
+ [3905]={
+ ["next_chapter"]=3906,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=481380,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=101090,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=95889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1060,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=107182,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=390,
+ ["unit"]=0
+ }
+ },
+ [3906]={
+ ["next_chapter"]=3907,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=484063,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=101653,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=96889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1070,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=107182,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=390,
+ ["unit"]=0
+ }
+ },
+ [3907]={
+ ["next_chapter"]=3908,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=486760,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=102220,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=97889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1080,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=107182,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=390,
+ ["unit"]=0
+ }
+ },
+ [3908]={
+ ["next_chapter"]=3909,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=489470,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=102789,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=98889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1090,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=107182,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=390,
+ ["unit"]=0
+ }
+ },
+ [3909]={
+ ["next_chapter"]=3910,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=492194,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=103361,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=99889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1100,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=107182,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=390,
+ ["unit"]=0
+ }
+ },
+ [3910]={
+ ["next_chapter"]=3911,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=494930,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=103935,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=100889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1110,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=118282,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=391,
+ ["unit"]=0
+ }
+ },
+ [3911]={
+ ["next_chapter"]=3912,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=497680,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=104513,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=101889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1120,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=118282,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=391,
+ ["unit"]=0
+ }
+ },
+ [3912]={
+ ["next_chapter"]=3913,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=500444,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=105093,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=102889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1130,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=118282,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=391,
+ ["unit"]=0
+ }
+ },
+ [3913]={
+ ["next_chapter"]=3914,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=503221,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=105676,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=103889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1140,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=118282,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=391,
+ ["unit"]=0
+ }
+ },
+ [3914]={
+ ["next_chapter"]=3915,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=506011,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=106262,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=104889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1150,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=118282,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=391,
+ ["unit"]=0
+ }
+ },
+ [3915]={
+ ["next_chapter"]=3916,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=508815,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=106851,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=105889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1160,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=118282,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=391,
+ ["unit"]=0
+ }
+ },
+ [3916]={
+ ["next_chapter"]=3917,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=511633,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=107443,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=106889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1170,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=118282,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=391,
+ ["unit"]=0
+ }
+ },
+ [3917]={
+ ["next_chapter"]=3918,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=514464,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=108037,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=107889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1180,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=118282,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=391,
+ ["unit"]=0
+ }
+ },
+ [3918]={
+ ["next_chapter"]=3919,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=517308,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=108635,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=108889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1190,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=118282,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=391,
+ ["unit"]=0
+ }
+ },
+ [3919]={
+ ["next_chapter"]=3920,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=520167,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=109235,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=109889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1200,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=118282,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=391,
+ ["unit"]=0
+ }
+ },
+ [3920]={
+ ["next_chapter"]=3921,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=523039,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=109838,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=110889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1210,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=130382,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=392,
+ ["unit"]=0
+ }
+ },
+ [3921]={
+ ["next_chapter"]=3922,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=525924,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=110444,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=111889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1220,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=130382,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=392,
+ ["unit"]=0
+ }
+ },
+ [3922]={
+ ["next_chapter"]=3923,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=528824,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=111053,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=112889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1230,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=130382,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=392,
+ ["unit"]=0
+ }
+ },
+ [3923]={
+ ["next_chapter"]=3924,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=531737,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=111665,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=113889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1240,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=130382,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=392,
+ ["unit"]=0
+ }
+ },
+ [3924]={
+ ["next_chapter"]=3925,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=534664,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=112279,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=114889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1250,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=130382,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=392,
+ ["unit"]=0
+ }
+ },
+ [3925]={
+ ["next_chapter"]=3926,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=537605,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=112897,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=115889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1260,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=130382,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=392,
+ ["unit"]=0
+ }
+ },
+ [3926]={
+ ["next_chapter"]=3927,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=540560,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=113518,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=116889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1270,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=130382,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=392,
+ ["unit"]=0
+ }
+ },
+ [3927]={
+ ["next_chapter"]=3928,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=543528,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=114141,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=117889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1280,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=130382,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=392,
+ ["unit"]=0
+ }
+ },
+ [3928]={
+ ["next_chapter"]=3929,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=546511,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=114767,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=118889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1290,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=130382,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=392,
+ ["unit"]=0
+ }
+ },
+ [3929]={
+ ["next_chapter"]=3930,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=549508,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=115397,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=119889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1300,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=130382,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=392,
+ ["unit"]=0
+ }
+ },
+ [3930]={
+ ["next_chapter"]=3931,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=552518,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=116029,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=120889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1310,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=143482,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=393,
+ ["unit"]=0
+ }
+ },
+ [3931]={
+ ["next_chapter"]=3932,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=555543,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=116664,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=121889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1320,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=143482,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=393,
+ ["unit"]=0
+ }
+ },
+ [3932]={
+ ["next_chapter"]=3933,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=558581,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=117302,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=122889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1330,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=143482,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=393,
+ ["unit"]=0
+ }
+ },
+ [3933]={
+ ["next_chapter"]=3934,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=561634,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=117943,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=123889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1340,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=143482,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=393,
+ ["unit"]=0
+ }
+ },
+ [3934]={
+ ["next_chapter"]=3935,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=564701,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=118587,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=124889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1350,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=143482,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=393,
+ ["unit"]=0
+ }
+ },
+ [3935]={
+ ["next_chapter"]=3936,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=567782,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=119234,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=125889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1360,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=143482,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=393,
+ ["unit"]=0
+ }
+ },
+ [3936]={
+ ["next_chapter"]=3937,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=570877,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=119884,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=126889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1370,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=143482,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=393,
+ ["unit"]=0
+ }
+ },
+ [3937]={
+ ["next_chapter"]=3938,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=573987,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=120537,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=127889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1380,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=143482,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=393,
+ ["unit"]=0
+ }
+ },
+ [3938]={
+ ["next_chapter"]=3939,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=577111,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=121193,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=128889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1390,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=143482,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=393,
+ ["unit"]=0
+ }
+ },
+ [3939]={
+ ["next_chapter"]=3940,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=580249,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=121852,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=129889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1400,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=143482,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=393,
+ ["unit"]=0
+ }
+ },
+ [3940]={
+ ["next_chapter"]=3941,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=583401,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=122514,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=130889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1410,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=157582,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=394,
+ ["unit"]=0
+ }
+ },
+ [3941]={
+ ["next_chapter"]=3942,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=586568,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=123179,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=131889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1420,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=157582,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=394,
+ ["unit"]=0
+ }
+ },
+ [3942]={
+ ["next_chapter"]=3943,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=589749,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=123847,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=132889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1430,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=157582,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=394,
+ ["unit"]=0
+ }
+ },
+ [3943]={
+ ["next_chapter"]=3944,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=592944,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=124518,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=133889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1440,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=157582,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=394,
+ ["unit"]=0
+ }
+ },
+ [3944]={
+ ["next_chapter"]=3945,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=596154,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=125192,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=134889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1450,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=157582,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=394,
+ ["unit"]=0
+ }
+ },
+ [3945]={
+ ["next_chapter"]=3946,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=599379,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=125870,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=135889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1460,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=157582,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=394,
+ ["unit"]=0
+ }
+ },
+ [3946]={
+ ["next_chapter"]=3947,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=602618,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=126550,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=136889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1470,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=157582,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=394,
+ ["unit"]=0
+ }
+ },
+ [3947]={
+ ["next_chapter"]=3948,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=605872,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=127233,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=137889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1480,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=157582,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=394,
+ ["unit"]=0
+ }
+ },
+ [3948]={
+ ["next_chapter"]=3949,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=609140,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=127919,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=138889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1490,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=157582,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=394,
+ ["unit"]=0
+ }
+ },
+ [3949]={
+ ["next_chapter"]=3950,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=612423,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=128609,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=139889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1500,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=157582,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=394,
+ ["unit"]=0
+ }
+ },
+ [3950]={
+ ["next_chapter"]=3951,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=615720,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=129301,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=140889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1520,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=172782,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=395,
+ ["unit"]=0
+ }
+ },
+ [3951]={
+ ["next_chapter"]=3952,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=619032,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=129997,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=141889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1540,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=172782,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=395,
+ ["unit"]=0
+ }
+ },
+ [3952]={
+ ["next_chapter"]=3953,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=622359,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=130695,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=142889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1560,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=172782,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=395,
+ ["unit"]=0
+ }
+ },
+ [3953]={
+ ["next_chapter"]=3954,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=625701,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=131397,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=143889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1580,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=172782,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=395,
+ ["unit"]=0
+ }
+ },
+ [3954]={
+ ["next_chapter"]=3955,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=629057,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=132102,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=144889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1600,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=172782,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=395,
+ ["unit"]=0
+ }
+ },
+ [3955]={
+ ["next_chapter"]=3956,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=632428,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=132810,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=145889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1620,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=172782,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=395,
+ ["unit"]=0
+ }
+ },
+ [3956]={
+ ["next_chapter"]=3957,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=635814,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=133521,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=146889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1640,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=172782,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=395,
+ ["unit"]=0
+ }
+ },
+ [3957]={
+ ["next_chapter"]=3958,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=639215,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=134235,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=147889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1660,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=172782,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=395,
+ ["unit"]=0
+ }
+ },
+ [3958]={
+ ["next_chapter"]=3959,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=642631,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=134953,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=148889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1680,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=172782,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=395,
+ ["unit"]=0
+ }
+ },
+ [3959]={
+ ["next_chapter"]=3960,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=646062,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=135673,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=149889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1700,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=172782,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=395,
+ ["unit"]=0
+ }
+ },
+ [3960]={
+ ["next_chapter"]=3961,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=649508,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=136397,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=150889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1720,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=189982,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=396,
+ ["unit"]=0
+ }
+ },
+ [3961]={
+ ["next_chapter"]=3962,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=652969,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=137123,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=151889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1740,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=189982,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=396,
+ ["unit"]=0
+ }
+ },
+ [3962]={
+ ["next_chapter"]=3963,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=656445,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=137853,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=152889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1760,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=189982,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=396,
+ ["unit"]=0
+ }
+ },
+ [3963]={
+ ["next_chapter"]=3964,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=659935,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=138586,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=153889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1780,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=189982,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=396,
+ ["unit"]=0
+ }
+ },
+ [3964]={
+ ["next_chapter"]=3965,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=663442,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=139323,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=154889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1800,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=189982,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=396,
+ ["unit"]=0
+ }
+ },
+ [3965]={
+ ["next_chapter"]=3966,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=666963,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=140062,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=155889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1820,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=189982,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=396,
+ ["unit"]=0
+ }
+ },
+ [3966]={
+ ["next_chapter"]=3967,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=670499,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=140805,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=156889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1840,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=189982,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=396,
+ ["unit"]=0
+ }
+ },
+ [3967]={
+ ["next_chapter"]=3968,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=674051,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=141551,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=157889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1860,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=189982,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=396,
+ ["unit"]=0
+ }
+ },
+ [3968]={
+ ["next_chapter"]=3969,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=677618,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=142300,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=158889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1880,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=189982,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=396,
+ ["unit"]=0
+ }
+ },
+ [3969]={
+ ["next_chapter"]=3970,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=681200,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=143052,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=159889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1900,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=189982,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=396,
+ ["unit"]=0
+ }
+ },
+ [3970]={
+ ["next_chapter"]=3971,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=684797,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=143807,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=160889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1920,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=209182,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=397,
+ ["unit"]=0
+ }
+ },
+ [3971]={
+ ["next_chapter"]=3972,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=688410,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=144566,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=161889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1940,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=209182,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=397,
+ ["unit"]=0
+ }
+ },
+ [3972]={
+ ["next_chapter"]=3973,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=692038,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=145328,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=162889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1960,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=209182,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=397,
+ ["unit"]=0
+ }
+ },
+ [3973]={
+ ["next_chapter"]=3974,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=695682,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=146093,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=163889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=1980,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=209182,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=397,
+ ["unit"]=0
+ }
+ },
+ [3974]={
+ ["next_chapter"]=3975,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=699341,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=146862,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=165889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=2000,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=209182,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=397,
+ ["unit"]=0
+ }
+ },
+ [3975]={
+ ["next_chapter"]=3976,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=703015,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=147633,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=167889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=2020,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=209182,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=397,
+ ["unit"]=0
+ }
+ },
+ [3976]={
+ ["next_chapter"]=3977,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=706705,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=148408,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=169889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=2040,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=209182,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=397,
+ ["unit"]=0
+ }
+ },
+ [3977]={
+ ["next_chapter"]=3978,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=710410,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=149186,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=171889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=2060,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=209182,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=397,
+ ["unit"]=0
+ }
+ },
+ [3978]={
+ ["next_chapter"]=3979,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=714132,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=149968,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=173889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=2080,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=209182,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=397,
+ ["unit"]=0
+ }
+ },
+ [3979]={
+ ["next_chapter"]=3980,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=717868,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=150752,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=175889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=2100,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=209182,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=397,
+ ["unit"]=0
+ }
+ },
+ [3980]={
+ ["next_chapter"]=3981,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=721620,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=151540,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=177889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=2120,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=230382,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=398,
+ ["unit"]=0
+ }
+ },
+ [3981]={
+ ["next_chapter"]=3982,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=725388,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=152332,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=179889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=2140,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=230382,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=398,
+ ["unit"]=0
+ }
+ },
+ [3982]={
+ ["next_chapter"]=3983,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=729172,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=153126,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=181889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=2160,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=230382,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=398,
+ ["unit"]=0
+ }
+ },
+ [3983]={
+ ["next_chapter"]=3984,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=732972,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=153924,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=183889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=2180,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=230382,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=398,
+ ["unit"]=0
+ }
+ },
+ [3984]={
+ ["next_chapter"]=3985,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=736787,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=154725,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=185889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=2200,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=230382,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=398,
+ ["unit"]=0
+ }
+ },
+ [3985]={
+ ["next_chapter"]=3986,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=740618,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=155530,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=187889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=2220,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=230382,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=398,
+ ["unit"]=0
+ }
+ },
+ [3986]={
+ ["next_chapter"]=3987,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=744464,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=156338,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=189889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=2240,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=230382,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=398,
+ ["unit"]=0
+ }
+ },
+ [3987]={
+ ["next_chapter"]=3988,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=748327,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=157149,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=191889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=2260,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=230382,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=398,
+ ["unit"]=0
+ }
+ },
+ [3988]={
+ ["next_chapter"]=3989,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=752206,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=157963,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=193889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=2280,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=230382,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=398,
+ ["unit"]=0
+ }
+ },
+ [3989]={
+ ["next_chapter"]=3990,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=756100,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=158781,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=195889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=2300,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=230382,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=398,
+ ["unit"]=0
+ }
+ },
+ [3990]={
+ ["next_chapter"]=3991,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=760011,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=159602,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=197889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=2320,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=253582,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=399,
+ ["unit"]=0
+ }
+ },
+ [3991]={
+ ["next_chapter"]=3992,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=763937,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=160427,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=199889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=2340,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=253582,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=399,
+ ["unit"]=0
+ }
+ },
+ [3992]={
+ ["next_chapter"]=3993,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=767879,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=161255,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=201889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=2360,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=253582,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=399,
+ ["unit"]=0
+ }
+ },
+ [3993]={
+ ["next_chapter"]=3994,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=771838,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=162086,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=203889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=2380,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=253582,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=399,
+ ["unit"]=0
+ }
+ },
+ [3994]={
+ ["next_chapter"]=3995,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=775813,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=162921,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=205889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=2400,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=253582,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=399,
+ ["unit"]=0
+ }
+ },
+ [3995]={
+ ["next_chapter"]=3996,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=779803,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=163759,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=207889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=2420,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=253582,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=399,
+ ["unit"]=0
+ }
+ },
+ [3996]={
+ ["next_chapter"]=3997,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=783810,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=164600,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=209889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=2440,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=253582,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=399,
+ ["unit"]=0
+ }
+ },
+ [3997]={
+ ["next_chapter"]=3998,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=787833,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=165445,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=211889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=2460,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=253582,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=399,
+ ["unit"]=0
+ }
+ },
+ [3998]={
+ ["next_chapter"]=3999,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=791873,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=166293,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=213889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=2480,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=253582,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=399,
+ ["unit"]=0
+ }
+ },
+ [3999]={
+ ["next_chapter"]=4000,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=795928,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=167145,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=215889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=2500,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=253582,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=399,
+ ["unit"]=0
+ }
+ },
+ [4000]={
+ ["next_chapter"]=4001,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=800000,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=176000,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=217889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=2530,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=278882,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=400,
+ ["unit"]=0
+ }
+ },
+ [4001]={
+ ["next_chapter"]=4002,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800000,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=176000,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=219889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=2560,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=278882,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=400,
+ ["unit"]=0
+ }
+ },
+ [4002]={
+ ["next_chapter"]=4003,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800000,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=176000,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=221889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=2590,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=278882,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=400,
+ ["unit"]=0
+ }
+ },
+ [4003]={
+ ["next_chapter"]=4004,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800001,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=176000,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=223889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=2620,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=278882,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=400,
+ ["unit"]=0
+ }
+ },
+ [4004]={
+ ["next_chapter"]=4005,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800002,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=176000,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=225889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=2650,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=278882,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=400,
+ ["unit"]=0
+ }
+ },
+ [4005]={
+ ["next_chapter"]=4006,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800004,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=176001,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=227889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=2680,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=278882,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=400,
+ ["unit"]=0
+ }
+ },
+ [4006]={
+ ["next_chapter"]=4007,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800006,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=176001,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=229889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=2710,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=278882,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=400,
+ ["unit"]=0
+ }
+ },
+ [4007]={
+ ["next_chapter"]=4008,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800010,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=176002,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=231889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=2740,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=278882,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=400,
+ ["unit"]=0
+ }
+ },
+ [4008]={
+ ["next_chapter"]=4009,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800015,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=176003,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=233889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=2770,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=278882,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=400,
+ ["unit"]=0
+ }
+ },
+ [4009]={
+ ["next_chapter"]=4010,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800022,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=176005,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=235889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=2800,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=278882,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=400,
+ ["unit"]=0
+ }
+ },
+ [4010]={
+ ["next_chapter"]=4011,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=800030,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=176007,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=237889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=2830,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=307182,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=401,
+ ["unit"]=0
+ }
+ },
+ [4011]={
+ ["next_chapter"]=4012,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800039,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=176009,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=239889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=2860,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=307182,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=401,
+ ["unit"]=0
+ }
+ },
+ [4012]={
+ ["next_chapter"]=4013,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800051,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=176011,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=241889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=2890,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=307182,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=401,
+ ["unit"]=0
+ }
+ },
+ [4013]={
+ ["next_chapter"]=4014,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800065,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=176014,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=243889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=2920,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=307182,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=401,
+ ["unit"]=0
+ }
+ },
+ [4014]={
+ ["next_chapter"]=4015,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800081,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=176018,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=245889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=2950,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=307182,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=401,
+ ["unit"]=0
+ }
+ },
+ [4015]={
+ ["next_chapter"]=4016,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800100,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=176022,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=247889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=2980,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=307182,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=401,
+ ["unit"]=0
+ }
+ },
+ [4016]={
+ ["next_chapter"]=4017,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800121,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=176027,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=250889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=3010,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=307182,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=401,
+ ["unit"]=0
+ }
+ },
+ [4017]={
+ ["next_chapter"]=4018,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800145,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=176032,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=253889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=3040,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=307182,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=401,
+ ["unit"]=0
+ }
+ },
+ [4018]={
+ ["next_chapter"]=4019,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800173,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=176038,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=256889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=3070,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=307182,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=401,
+ ["unit"]=0
+ }
+ },
+ [4019]={
+ ["next_chapter"]=4020,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800203,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=176045,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=259889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=3100,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=307182,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=401,
+ ["unit"]=0
+ }
+ },
+ [4020]={
+ ["next_chapter"]=4021,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=800237,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=176052,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=262889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=3130,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=338482,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=402,
+ ["unit"]=0
+ }
+ },
+ [4021]={
+ ["next_chapter"]=4022,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800274,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=176060,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=265889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=3160,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=338482,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=402,
+ ["unit"]=0
+ }
+ },
+ [4022]={
+ ["next_chapter"]=4023,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800315,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=176069,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=268889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=3190,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=338482,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=402,
+ ["unit"]=0
+ }
+ },
+ [4023]={
+ ["next_chapter"]=4024,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800360,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=176079,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=271889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=3220,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=338482,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=402,
+ ["unit"]=0
+ }
+ },
+ [4024]={
+ ["next_chapter"]=4025,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800409,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=176090,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=274889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=3250,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=338482,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=402,
+ ["unit"]=0
+ }
+ },
+ [4025]={
+ ["next_chapter"]=4026,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800463,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=176102,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=277889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=3280,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=338482,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=402,
+ ["unit"]=0
+ }
+ },
+ [4026]={
+ ["next_chapter"]=4027,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800520,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=176114,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=280889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=3310,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=338482,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=402,
+ ["unit"]=0
+ }
+ },
+ [4027]={
+ ["next_chapter"]=4028,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800583,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=176128,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=283889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=3340,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=338482,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=402,
+ ["unit"]=0
+ }
+ },
+ [4028]={
+ ["next_chapter"]=4029,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800650,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=176143,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=286889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=3370,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=338482,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=402,
+ ["unit"]=0
+ }
+ },
+ [4029]={
+ ["next_chapter"]=4030,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800722,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=176159,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=289889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=3400,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=338482,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=402,
+ ["unit"]=0
+ }
+ },
+ [4030]={
+ ["next_chapter"]=4031,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=800799,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=176176,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=292889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=3430,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=372782,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=403,
+ ["unit"]=0
+ }
+ },
+ [4031]={
+ ["next_chapter"]=4032,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800882,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=176194,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=295889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=3460,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=372782,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=403,
+ ["unit"]=0
+ }
+ },
+ [4032]={
+ ["next_chapter"]=4033,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800970,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=176213,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=298889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=3490,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=372782,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=403,
+ ["unit"]=0
+ }
+ },
+ [4033]={
+ ["next_chapter"]=4034,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=801064,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=176234,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=301889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=3520,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=372782,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=403,
+ ["unit"]=0
+ }
+ },
+ [4034]={
+ ["next_chapter"]=4035,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=801163,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=176256,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=304889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=3560,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=372782,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=403,
+ ["unit"]=0
+ }
+ },
+ [4035]={
+ ["next_chapter"]=4036,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=801269,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=176279,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=307889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=3600,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=372782,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=403,
+ ["unit"]=0
+ }
+ },
+ [4036]={
+ ["next_chapter"]=4037,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=801381,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=176304,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=310889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=3640,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=372782,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=403,
+ ["unit"]=0
+ }
+ },
+ [4037]={
+ ["next_chapter"]=4038,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=801499,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=176330,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=313889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=3680,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=372782,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=403,
+ ["unit"]=0
+ }
+ },
+ [4038]={
+ ["next_chapter"]=4039,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=801624,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=176357,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=316889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=3720,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=372782,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=403,
+ ["unit"]=0
+ }
+ },
+ [4039]={
+ ["next_chapter"]=4040,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=801756,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=176386,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=319889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=3760,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=372782,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=403,
+ ["unit"]=0
+ }
+ },
+ [4040]={
+ ["next_chapter"]=4041,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=801894,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=176417,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=322889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=3800,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=410782,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=404,
+ ["unit"]=0
+ }
+ },
+ [4041]={
+ ["next_chapter"]=4042,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=802040,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=176449,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=325889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=3840,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=410782,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=404,
+ ["unit"]=0
+ }
+ },
+ [4042]={
+ ["next_chapter"]=4043,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=802193,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=176482,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=328889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=3880,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=410782,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=404,
+ ["unit"]=0
+ }
+ },
+ [4043]={
+ ["next_chapter"]=4044,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=802353,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=176518,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=331889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=3920,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=410782,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=404,
+ ["unit"]=0
+ }
+ },
+ [4044]={
+ ["next_chapter"]=4045,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=802521,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=176555,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=334889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=3960,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=410782,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=404,
+ ["unit"]=0
+ }
+ },
+ [4045]={
+ ["next_chapter"]=4046,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=802697,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=176593,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=338889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=4000,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=410782,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=404,
+ ["unit"]=0
+ }
+ },
+ [4046]={
+ ["next_chapter"]=4047,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=802881,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=176634,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=342889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=4040,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=410782,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=404,
+ ["unit"]=0
+ }
+ },
+ [4047]={
+ ["next_chapter"]=4048,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=803073,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=176676,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=346889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=4080,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=410782,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=404,
+ ["unit"]=0
+ }
+ },
+ [4048]={
+ ["next_chapter"]=4049,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=803274,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=176720,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=350889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=4120,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=410782,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=404,
+ ["unit"]=0
+ }
+ },
+ [4049]={
+ ["next_chapter"]=4050,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=803482,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=176766,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=354889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=4160,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=410782,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=404,
+ ["unit"]=0
+ }
+ },
+ [4050]={
+ ["next_chapter"]=4051,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=803700,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=176814,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=358889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=4200,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=452782,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=405,
+ ["unit"]=0
+ }
+ },
+ [4051]={
+ ["next_chapter"]=4052,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=803926,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=176864,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=362889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=4240,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=452782,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=405,
+ ["unit"]=0
+ }
+ },
+ [4052]={
+ ["next_chapter"]=4053,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=804162,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=176916,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=366889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=4280,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=452782,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=405,
+ ["unit"]=0
+ }
+ },
+ [4053]={
+ ["next_chapter"]=4054,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=804407,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=176969,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=370889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=4320,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=452782,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=405,
+ ["unit"]=0
+ }
+ },
+ [4054]={
+ ["next_chapter"]=4055,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=804661,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=177025,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=374889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=4360,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=452782,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=405,
+ ["unit"]=0
+ }
+ },
+ [4055]={
+ ["next_chapter"]=4056,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=804925,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=177083,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=378889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=4400,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=452782,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=405,
+ ["unit"]=0
+ }
+ },
+ [4056]={
+ ["next_chapter"]=4057,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=805198,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=177144,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=382889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=4440,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=452782,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=405,
+ ["unit"]=0
+ }
+ },
+ [4057]={
+ ["next_chapter"]=4058,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=805482,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=177206,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=386889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=4480,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=452782,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=405,
+ ["unit"]=0
+ }
+ },
+ [4058]={
+ ["next_chapter"]=4059,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=805775,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=177271,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=390889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=4520,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=452782,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=405,
+ ["unit"]=0
+ }
+ },
+ [4059]={
+ ["next_chapter"]=4060,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=806079,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=177337,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=394889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=4570,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=452782,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=405,
+ ["unit"]=0
+ }
+ },
+ [4060]={
+ ["next_chapter"]=4061,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=806394,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=177407,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=398889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=4620,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=498982,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=406,
+ ["unit"]=0
+ }
+ },
+ [4061]={
+ ["next_chapter"]=4062,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=806719,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=177478,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=402889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=4670,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=498982,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=406,
+ ["unit"]=0
+ }
+ },
+ [4062]={
+ ["next_chapter"]=4063,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=807055,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=177552,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=406889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=4720,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=498982,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=406,
+ ["unit"]=0
+ }
+ },
+ [4063]={
+ ["next_chapter"]=4064,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=807401,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=177628,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=410889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=4770,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=498982,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=406,
+ ["unit"]=0
+ }
+ },
+ [4064]={
+ ["next_chapter"]=4065,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=807759,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=177707,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=414889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=4820,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=498982,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=406,
+ ["unit"]=0
+ }
+ },
+ [4065]={
+ ["next_chapter"]=4066,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=808129,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=177788,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=418889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=4870,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=498982,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=406,
+ ["unit"]=0
+ }
+ },
+ [4066]={
+ ["next_chapter"]=4067,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=808510,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=177872,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=422889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=4920,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=498982,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=406,
+ ["unit"]=0
+ }
+ },
+ [4067]={
+ ["next_chapter"]=4068,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=808903,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=177959,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=426889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=4970,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=498982,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=406,
+ ["unit"]=0
+ }
+ },
+ [4068]={
+ ["next_chapter"]=4069,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=809307,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=178048,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=431889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=5020,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=498982,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=406,
+ ["unit"]=0
+ }
+ },
+ [4069]={
+ ["next_chapter"]=4070,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=809724,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=178139,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=436889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=5070,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=498982,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=406,
+ ["unit"]=0
+ }
+ },
+ [4070]={
+ ["next_chapter"]=4071,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=810153,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=178234,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=441889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=5120,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=550182,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=407,
+ ["unit"]=0
+ }
+ },
+ [4071]={
+ ["next_chapter"]=4072,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=810594,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=178331,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=446889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=5170,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=550182,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=407,
+ ["unit"]=0
+ }
+ },
+ [4072]={
+ ["next_chapter"]=4073,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=811048,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=178431,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=451889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=5220,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=550182,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=407,
+ ["unit"]=0
+ }
+ },
+ [4073]={
+ ["next_chapter"]=4074,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=811515,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=178533,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=456889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=5270,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=550182,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=407,
+ ["unit"]=0
+ }
+ },
+ [4074]={
+ ["next_chapter"]=4075,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=811995,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=178639,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=461889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=5320,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=550182,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=407,
+ ["unit"]=0
+ }
+ },
+ [4075]={
+ ["next_chapter"]=4076,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=812488,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=178747,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=466889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=5370,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=550182,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=407,
+ ["unit"]=0
+ }
+ },
+ [4076]={
+ ["next_chapter"]=4077,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=812994,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=178859,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=471889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=5420,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=550182,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=407,
+ ["unit"]=0
+ }
+ },
+ [4077]={
+ ["next_chapter"]=4078,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=813513,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=178973,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=476889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=5470,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=550182,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=407,
+ ["unit"]=0
+ }
+ },
+ [4078]={
+ ["next_chapter"]=4079,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=814047,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=179090,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=481889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=5520,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=550182,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=407,
+ ["unit"]=0
+ }
+ },
+ [4079]={
+ ["next_chapter"]=4080,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=814594,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=179211,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=486889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=5580,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=550182,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=407,
+ ["unit"]=0
+ }
+ },
+ [4080]={
+ ["next_chapter"]=4081,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=815155,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=179334,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=491889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=5640,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=606582,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=408,
+ ["unit"]=0
+ }
+ },
+ [4081]={
+ ["next_chapter"]=4082,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=815731,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=179461,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=496889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=5700,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=606582,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=408,
+ ["unit"]=0
+ }
+ },
+ [4082]={
+ ["next_chapter"]=4083,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=816320,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=179591,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=501889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=5760,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=606582,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=408,
+ ["unit"]=0
+ }
+ },
+ [4083]={
+ ["next_chapter"]=4084,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=816925,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=179723,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=506889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=5820,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=606582,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=408,
+ ["unit"]=0
+ }
+ },
+ [4084]={
+ ["next_chapter"]=4085,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=817544,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=179860,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=511889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=5880,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=606582,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=408,
+ ["unit"]=0
+ }
+ },
+ [4085]={
+ ["next_chapter"]=4086,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=818178,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=179999,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=516889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=5940,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=606582,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=408,
+ ["unit"]=0
+ }
+ },
+ [4086]={
+ ["next_chapter"]=4087,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=818827,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=180142,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=522889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=6000,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=606582,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=408,
+ ["unit"]=0
+ }
+ },
+ [4087]={
+ ["next_chapter"]=4088,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=819492,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=180288,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=528889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=6060,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=606582,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=408,
+ ["unit"]=0
+ }
+ },
+ [4088]={
+ ["next_chapter"]=4089,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=820172,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=180438,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=534889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=6120,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=606582,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=408,
+ ["unit"]=0
+ }
+ },
+ [4089]={
+ ["next_chapter"]=4090,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=820867,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=180591,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=540889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=6180,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=606582,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=408,
+ ["unit"]=0
+ }
+ },
+ [4090]={
+ ["next_chapter"]=4091,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=821578,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=180747,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=546889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=6240,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=668982,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=409,
+ ["unit"]=0
+ }
+ },
+ [4091]={
+ ["next_chapter"]=4092,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=822306,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=180907,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=552889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=6300,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=668982,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=409,
+ ["unit"]=0
+ }
+ },
+ [4092]={
+ ["next_chapter"]=4093,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=823049,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=181071,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=558889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=6360,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=668982,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=409,
+ ["unit"]=0
+ }
+ },
+ [4093]={
+ ["next_chapter"]=4094,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=823809,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=181238,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=564889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=6420,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=668982,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=409,
+ ["unit"]=0
+ }
+ },
+ [4094]={
+ ["next_chapter"]=4095,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=824585,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=181409,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=570889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=6480,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=668982,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=409,
+ ["unit"]=0
+ }
+ },
+ [4095]={
+ ["next_chapter"]=4096,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=825378,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=181583,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=576889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=6540,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=668982,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=409,
+ ["unit"]=0
+ }
+ },
+ [4096]={
+ ["next_chapter"]=4097,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=826188,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=181761,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=582889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=6610,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=668982,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=409,
+ ["unit"]=0
+ }
+ },
+ [4097]={
+ ["next_chapter"]=4098,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=827015,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=181943,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=588889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=6680,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=668982,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=409,
+ ["unit"]=0
+ }
+ },
+ [4098]={
+ ["next_chapter"]=4099,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=827859,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=182129,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=594889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=6750,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=668982,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=409,
+ ["unit"]=0
+ }
+ },
+ [4099]={
+ ["next_chapter"]=4100,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=828721,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=182319,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=600889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=6820,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=668982,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=409,
+ ["unit"]=0
+ }
+ },
+ [4100]={
+ ["next_chapter"]=4101,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=829600,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=182512,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=606889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=6890,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=51,
+ ["grasp_gold_reward"]={
+ ["value"]=737882,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=410,
+ ["unit"]=0
+ }
+ },
+ [4101]={
+ ["next_chapter"]=4102,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=830497,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=182709,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=6000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=612889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=6960,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=737882,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=410,
+ ["unit"]=0
+ }
+ },
+ [4102]={
+ ["next_chapter"]=4103,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=831412,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=182911,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=619889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=7030,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=737882,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=410,
+ ["unit"]=0
+ }
+ },
+ [4103]={
+ ["next_chapter"]=4104,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=832345,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=183116,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=626889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=7100,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=737882,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=410,
+ ["unit"]=0
+ }
+ },
+ [4104]={
+ ["next_chapter"]=4105,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=833296,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=183325,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=633889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=7170,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=737882,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=410,
+ ["unit"]=0
+ }
+ },
+ [4105]={
+ ["next_chapter"]=4106,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=834266,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=183538,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=640889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=7240,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=737882,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=410,
+ ["unit"]=0
+ }
+ },
+ [4106]={
+ ["next_chapter"]=4107,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=835254,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=183756,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=647889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=7310,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=737882,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=410,
+ ["unit"]=0
+ }
+ },
+ [4107]={
+ ["next_chapter"]=4108,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=836261,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=183977,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=654889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=7380,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=737882,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=410,
+ ["unit"]=0
+ }
+ },
+ [4108]={
+ ["next_chapter"]=4109,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=837287,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=184203,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=661889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=7450,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=737882,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=410,
+ ["unit"]=0
+ }
+ },
+ [4109]={
+ ["next_chapter"]=4110,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=838333,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=184433,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=668889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=7520,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=737882,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=410,
+ ["unit"]=0
+ }
+ },
+ [4110]={
+ ["next_chapter"]=4111,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=839398,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=184667,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=675889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=7600,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=813882,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=411,
+ ["unit"]=0
+ }
+ },
+ [4111]={
+ ["next_chapter"]=4112,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=840482,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=184906,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=682889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=7680,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=813882,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=411,
+ ["unit"]=0
+ }
+ },
+ [4112]={
+ ["next_chapter"]=4113,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=841586,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=185149,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=689889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=7760,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=813882,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=411,
+ ["unit"]=0
+ }
+ },
+ [4113]={
+ ["next_chapter"]=4114,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=842710,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=185396,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=696889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=7840,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=813882,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=411,
+ ["unit"]=0
+ }
+ },
+ [4114]={
+ ["next_chapter"]=4115,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=843854,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=185648,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=703889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=7920,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=813882,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=411,
+ ["unit"]=0
+ }
+ },
+ [4115]={
+ ["next_chapter"]=4116,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=845018,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=185904,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=711889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=8000,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=813882,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=411,
+ ["unit"]=0
+ }
+ },
+ [4116]={
+ ["next_chapter"]=4117,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=846203,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=186165,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=719889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=8080,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=813882,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=411,
+ ["unit"]=0
+ }
+ },
+ [4117]={
+ ["next_chapter"]=4118,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=847408,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=186430,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=727889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=8160,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=813882,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=411,
+ ["unit"]=0
+ }
+ },
+ [4118]={
+ ["next_chapter"]=4119,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=848634,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=186699,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=735889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=8240,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=813882,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=411,
+ ["unit"]=0
+ }
+ },
+ [4119]={
+ ["next_chapter"]=4120,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=849881,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=186974,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=743889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=8320,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=813882,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=411,
+ ["unit"]=0
+ }
+ },
+ [4120]={
+ ["next_chapter"]=4121,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=851149,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=187253,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=751889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=8400,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=897882,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=412,
+ ["unit"]=0
+ }
+ },
+ [4121]={
+ ["next_chapter"]=4122,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=852438,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=187536,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=759889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=8480,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=897882,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=412,
+ ["unit"]=0
+ }
+ },
+ [4122]={
+ ["next_chapter"]=4123,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=853749,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=187825,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=767889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=8560,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=897882,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=412,
+ ["unit"]=0
+ }
+ },
+ [4123]={
+ ["next_chapter"]=4124,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=855082,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=188118,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=775889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=8650,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=897882,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=412,
+ ["unit"]=0
+ }
+ },
+ [4124]={
+ ["next_chapter"]=4125,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=856436,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=188416,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=783889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=8740,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=897882,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=412,
+ ["unit"]=0
+ }
+ },
+ [4125]={
+ ["next_chapter"]=4126,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=857813,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=188719,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=791889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=8830,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=897882,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=412,
+ ["unit"]=0
+ }
+ },
+ [4126]={
+ ["next_chapter"]=4127,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=859211,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=189026,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=8000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=799889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=8920,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=897882,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=412,
+ ["unit"]=0
+ }
+ },
+ [4127]={
+ ["next_chapter"]=4128,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=860632,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=189339,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=808889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=9010,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=897882,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=412,
+ ["unit"]=0
+ }
+ },
+ [4128]={
+ ["next_chapter"]=4129,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=862076,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=189657,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=817889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=9100,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=897882,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=412,
+ ["unit"]=0
+ }
+ },
+ [4129]={
+ ["next_chapter"]=4130,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=863542,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=189979,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=826889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=9190,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=897882,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=412,
+ ["unit"]=0
+ }
+ },
+ [4130]={
+ ["next_chapter"]=4131,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=865031,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=190307,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=835889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=9280,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=990682,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=413,
+ ["unit"]=0
+ }
+ },
+ [4131]={
+ ["next_chapter"]=4132,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=866543,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=190640,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=844889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=9370,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=990682,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=413,
+ ["unit"]=0
+ }
+ },
+ [4132]={
+ ["next_chapter"]=4133,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=868079,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=190977,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=853889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=9460,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=990682,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=413,
+ ["unit"]=0
+ }
+ },
+ [4133]={
+ ["next_chapter"]=4134,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=869638,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=191320,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=862889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=9550,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=990682,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=413,
+ ["unit"]=0
+ }
+ },
+ [4134]={
+ ["next_chapter"]=4135,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=871221,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=191669,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=871889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=9650,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=990682,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=413,
+ ["unit"]=0
+ }
+ },
+ [4135]={
+ ["next_chapter"]=4136,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=872827,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=192022,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=880889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=9750,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=990682,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=413,
+ ["unit"]=0
+ }
+ },
+ [4136]={
+ ["next_chapter"]=4137,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=874457,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=192381,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=889889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=9850,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=990682,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=413,
+ ["unit"]=0
+ }
+ },
+ [4137]={
+ ["next_chapter"]=4138,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=876112,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=192745,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=9000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=898889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=9950,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=990682,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=413,
+ ["unit"]=0
+ }
+ },
+ [4138]={
+ ["next_chapter"]=4139,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=877791,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=193114,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=908889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=10050,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=990682,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=413,
+ ["unit"]=0
+ }
+ },
+ [4139]={
+ ["next_chapter"]=4140,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=879494,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=193489,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=918889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=10200,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=990682,
+ ["unit"]=5
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=413,
+ ["unit"]=0
+ }
+ },
+ [4140]={
+ ["next_chapter"]=4141,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=881222,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=193869,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=928889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=10300,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1094,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=414,
+ ["unit"]=0
+ }
+ },
+ [4141]={
+ ["next_chapter"]=4142,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=882975,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=194255,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=938889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=10400,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1094,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=414,
+ ["unit"]=0
+ }
+ },
+ [4142]={
+ ["next_chapter"]=4143,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=884753,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=194646,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=948889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=10500,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1094,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=414,
+ ["unit"]=0
+ }
+ },
+ [4143]={
+ ["next_chapter"]=4144,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=886557,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=195042,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=958889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=10600,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1094,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=414,
+ ["unit"]=0
+ }
+ },
+ [4144]={
+ ["next_chapter"]=4145,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=888385,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=195445,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=968889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=10700,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1094,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=414,
+ ["unit"]=0
+ }
+ },
+ [4145]={
+ ["next_chapter"]=4146,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=890239,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=195853,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=978889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=10800,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1094,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=414,
+ ["unit"]=0
+ }
+ },
+ [4146]={
+ ["next_chapter"]=4147,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=892119,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=196266,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=988889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=10900,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1094,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=414,
+ ["unit"]=0
+ }
+ },
+ [4147]={
+ ["next_chapter"]=4148,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=894025,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=196686,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=998889,
+ ["unit"]=5
+ },
+ ["idle_gold"]={
+ ["value"]=11000,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1094,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=414,
+ ["unit"]=0
+ }
+ },
+ [4148]={
+ ["next_chapter"]=4149,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=895957,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=197111,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1009,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=11100,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1094,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=414,
+ ["unit"]=0
+ }
+ },
+ [4149]={
+ ["next_chapter"]=4150,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=897915,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=197541,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1019,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=11200,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1094,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=414,
+ ["unit"]=0
+ }
+ },
+ [4150]={
+ ["next_chapter"]=4151,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=899900,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=197978,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1029,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=11300,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1207,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=415,
+ ["unit"]=0
+ }
+ },
+ [4151]={
+ ["next_chapter"]=4152,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=901911,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=198420,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1039,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=11400,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1207,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=415,
+ ["unit"]=0
+ }
+ },
+ [4152]={
+ ["next_chapter"]=4153,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=903950,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=198869,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1049,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=11500,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1207,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=415,
+ ["unit"]=0
+ }
+ },
+ [4153]={
+ ["next_chapter"]=4154,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=906015,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=199323,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1059,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=11600,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1207,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=415,
+ ["unit"]=0
+ }
+ },
+ [4154]={
+ ["next_chapter"]=4155,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=908107,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=199784,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1069,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=11700,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1207,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=415,
+ ["unit"]=0
+ }
+ },
+ [4155]={
+ ["next_chapter"]=4156,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=910227,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=200250,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1079,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=11800,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1207,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=415,
+ ["unit"]=0
+ }
+ },
+ [4156]={
+ ["next_chapter"]=4157,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=912374,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=200722,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1089,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=11900,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1207,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=415,
+ ["unit"]=0
+ }
+ },
+ [4157]={
+ ["next_chapter"]=4158,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=914549,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=201201,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1099,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=12000,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1207,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=415,
+ ["unit"]=0
+ }
+ },
+ [4158]={
+ ["next_chapter"]=4159,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=916752,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=201685,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1109,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=12100,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1207,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=415,
+ ["unit"]=0
+ }
+ },
+ [4159]={
+ ["next_chapter"]=4160,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=918982,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=202176,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1119,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=12200,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1207,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=415,
+ ["unit"]=0
+ }
+ },
+ [4160]={
+ ["next_chapter"]=4161,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=921242,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=202673,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1129,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=12300,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1330,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=416,
+ ["unit"]=0
+ }
+ },
+ [4161]={
+ ["next_chapter"]=4162,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=923529,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=203176,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1139,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=12400,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1330,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=416,
+ ["unit"]=0
+ }
+ },
+ [4162]={
+ ["next_chapter"]=4163,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=925845,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=203686,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1149,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=12500,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1330,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=416,
+ ["unit"]=0
+ }
+ },
+ [4163]={
+ ["next_chapter"]=4164,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=928190,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=204202,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1159,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=12600,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1330,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=416,
+ ["unit"]=0
+ }
+ },
+ [4164]={
+ ["next_chapter"]=4165,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=930564,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=204724,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1169,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=12700,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1330,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=416,
+ ["unit"]=0
+ }
+ },
+ [4165]={
+ ["next_chapter"]=4166,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=932967,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=205253,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1179,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=12800,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1330,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=416,
+ ["unit"]=0
+ }
+ },
+ [4166]={
+ ["next_chapter"]=4167,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=935399,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=205788,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1189,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=12900,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1330,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=416,
+ ["unit"]=0
+ }
+ },
+ [4167]={
+ ["next_chapter"]=4168,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=937861,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=206329,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1199,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=13000,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1330,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=416,
+ ["unit"]=0
+ }
+ },
+ [4168]={
+ ["next_chapter"]=4169,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=940352,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=206878,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1209,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=13100,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1330,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=416,
+ ["unit"]=0
+ }
+ },
+ [4169]={
+ ["next_chapter"]=4170,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=942874,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=207432,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1219,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=13200,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1330,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=416,
+ ["unit"]=0
+ }
+ },
+ [4170]={
+ ["next_chapter"]=4171,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=945425,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=207993,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1229,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=13300,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1463,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=417,
+ ["unit"]=0
+ }
+ },
+ [4171]={
+ ["next_chapter"]=4172,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=948006,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=208561,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1239,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=13400,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1463,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=417,
+ ["unit"]=0
+ }
+ },
+ [4172]={
+ ["next_chapter"]=4173,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=950618,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=209136,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1249,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=13500,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1463,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=417,
+ ["unit"]=0
+ }
+ },
+ [4173]={
+ ["next_chapter"]=4174,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=953260,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=209717,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1259,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=13600,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1463,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=417,
+ ["unit"]=0
+ }
+ },
+ [4174]={
+ ["next_chapter"]=4175,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=955934,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=210305,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1269,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=13700,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1463,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=417,
+ ["unit"]=0
+ }
+ },
+ [4175]={
+ ["next_chapter"]=4176,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=958638,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=210900,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1279,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=13800,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1463,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=417,
+ ["unit"]=0
+ }
+ },
+ [4176]={
+ ["next_chapter"]=4177,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=961373,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=211502,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1289,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=13900,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1463,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=417,
+ ["unit"]=0
+ }
+ },
+ [4177]={
+ ["next_chapter"]=4178,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=964139,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=212111,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1299,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=14000,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1463,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=417,
+ ["unit"]=0
+ }
+ },
+ [4178]={
+ ["next_chapter"]=4179,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=966937,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=212726,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1309,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=14100,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1463,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=417,
+ ["unit"]=0
+ }
+ },
+ [4179]={
+ ["next_chapter"]=4180,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=969766,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=213349,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1319,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=14200,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1463,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=417,
+ ["unit"]=0
+ }
+ },
+ [4180]={
+ ["next_chapter"]=4181,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=972627,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=213978,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1329,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=14300,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1606,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=418,
+ ["unit"]=0
+ }
+ },
+ [4181]={
+ ["next_chapter"]=4182,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=975520,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=214614,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1339,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=14400,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1606,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=418,
+ ["unit"]=0
+ }
+ },
+ [4182]={
+ ["next_chapter"]=4183,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=978446,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=215258,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1349,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=14500,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1606,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=418,
+ ["unit"]=0
+ }
+ },
+ [4183]={
+ ["next_chapter"]=4184,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=981403,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=215909,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1359,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=14600,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1606,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=418,
+ ["unit"]=0
+ }
+ },
+ [4184]={
+ ["next_chapter"]=4185,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=984393,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=216567,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1369,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=14700,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1606,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=418,
+ ["unit"]=0
+ }
+ },
+ [4185]={
+ ["next_chapter"]=4186,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=987416,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=217232,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1379,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=14800,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1606,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=418,
+ ["unit"]=0
+ }
+ },
+ [4186]={
+ ["next_chapter"]=4187,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=990472,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=217904,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1389,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=14900,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1606,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=418,
+ ["unit"]=0
+ }
+ },
+ [4187]={
+ ["next_chapter"]=4188,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=993560,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=218583,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1399,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=15000,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1606,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=418,
+ ["unit"]=0
+ }
+ },
+ [4188]={
+ ["next_chapter"]=4189,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=996682,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=219270,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1409,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=15200,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1606,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=418,
+ ["unit"]=0
+ }
+ },
+ [4189]={
+ ["next_chapter"]=4190,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=999838,
+ ["unit"]=6
+ },
+ ["hp_coefficient"]={
+ ["value"]=219964,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1419,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=15400,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1606,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=418,
+ ["unit"]=0
+ }
+ },
+ [4190]={
+ ["next_chapter"]=4191,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=1003,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=220666,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1429,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=15600,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1762,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=419,
+ ["unit"]=0
+ }
+ },
+ [4191]={
+ ["next_chapter"]=4192,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1006,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=221375,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1439,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=15800,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1762,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=419,
+ ["unit"]=0
+ }
+ },
+ [4192]={
+ ["next_chapter"]=4193,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1010,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=222091,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1449,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=16000,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1762,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=419,
+ ["unit"]=0
+ }
+ },
+ [4193]={
+ ["next_chapter"]=4194,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1013,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=222815,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1459,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=16200,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1762,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=419,
+ ["unit"]=0
+ }
+ },
+ [4194]={
+ ["next_chapter"]=4195,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1016,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=223547,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1469,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=16400,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1762,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=419,
+ ["unit"]=0
+ }
+ },
+ [4195]={
+ ["next_chapter"]=4196,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1019,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224286,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1479,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=16600,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1762,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=419,
+ ["unit"]=0
+ }
+ },
+ [4196]={
+ ["next_chapter"]=4197,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1023,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=225032,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1489,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=16800,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1762,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=419,
+ ["unit"]=0
+ }
+ },
+ [4197]={
+ ["next_chapter"]=4198,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1026,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=225787,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1499,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=17000,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1762,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=419,
+ ["unit"]=0
+ }
+ },
+ [4198]={
+ ["next_chapter"]=4199,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1030,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=226549,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1509,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=17200,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1762,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=419,
+ ["unit"]=0
+ }
+ },
+ [4199]={
+ ["next_chapter"]=4200,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1033,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=227318,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1519,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=17400,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1762,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=419,
+ ["unit"]=0
+ }
+ },
+ [4200]={
+ ["next_chapter"]=4201,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=1037,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=228096,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1529,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=17600,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1938,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=420,
+ ["unit"]=0
+ }
+ },
+ [4201]={
+ ["next_chapter"]=4202,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1040,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=228881,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1539,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=17800,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1938,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=420,
+ ["unit"]=0
+ }
+ },
+ [4202]={
+ ["next_chapter"]=4203,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1044,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=229675,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1549,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=18000,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1938,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=420,
+ ["unit"]=0
+ }
+ },
+ [4203]={
+ ["next_chapter"]=4204,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1048,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=230476,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1559,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=18200,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1938,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=420,
+ ["unit"]=0
+ }
+ },
+ [4204]={
+ ["next_chapter"]=4205,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1051,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=231285,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1569,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=18400,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1938,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=420,
+ ["unit"]=0
+ }
+ },
+ [4205]={
+ ["next_chapter"]=4206,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1055,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=232102,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1579,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=18600,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1938,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=420,
+ ["unit"]=0
+ }
+ },
+ [4206]={
+ ["next_chapter"]=4207,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1059,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=232927,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1589,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=18800,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1938,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=420,
+ ["unit"]=0
+ }
+ },
+ [4207]={
+ ["next_chapter"]=4208,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1063,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=233760,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1599,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=19000,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1938,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=420,
+ ["unit"]=0
+ }
+ },
+ [4208]={
+ ["next_chapter"]=4209,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1066,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=234601,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1609,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=19200,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1938,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=420,
+ ["unit"]=0
+ }
+ },
+ [4209]={
+ ["next_chapter"]=4210,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1070,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=235450,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1619,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=19400,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1938,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=420,
+ ["unit"]=0
+ }
+ },
+ [4210]={
+ ["next_chapter"]=4211,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=1074,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=236308,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1629,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=19600,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2134,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=421,
+ ["unit"]=0
+ }
+ },
+ [4211]={
+ ["next_chapter"]=4212,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1078,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=237173,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1639,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=19800,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2134,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=421,
+ ["unit"]=0
+ }
+ },
+ [4212]={
+ ["next_chapter"]=4213,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1082,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=238047,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1659,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=20000,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2134,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=421,
+ ["unit"]=0
+ }
+ },
+ [4213]={
+ ["next_chapter"]=4214,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1086,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=238929,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1679,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=20200,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2134,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=421,
+ ["unit"]=0
+ }
+ },
+ [4214]={
+ ["next_chapter"]=4215,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1090,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=239820,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1699,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=20400,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2134,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=421,
+ ["unit"]=0
+ }
+ },
+ [4215]={
+ ["next_chapter"]=4216,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1094,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=240719,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1719,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=20600,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2134,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=421,
+ ["unit"]=0
+ }
+ },
+ [4216]={
+ ["next_chapter"]=4217,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1098,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=241626,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1739,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=20800,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2134,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=421,
+ ["unit"]=0
+ }
+ },
+ [4217]={
+ ["next_chapter"]=4218,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1102,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=242542,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1759,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=21000,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2134,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=421,
+ ["unit"]=0
+ }
+ },
+ [4218]={
+ ["next_chapter"]=4219,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1107,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=243466,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1779,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=21200,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2134,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=421,
+ ["unit"]=0
+ }
+ },
+ [4219]={
+ ["next_chapter"]=4220,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1111,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=244399,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1799,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=21400,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2134,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=421,
+ ["unit"]=0
+ }
+ },
+ [4220]={
+ ["next_chapter"]=4221,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=1115,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=245340,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1819,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=21600,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2350,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=422,
+ ["unit"]=0
+ }
+ },
+ [4221]={
+ ["next_chapter"]=4222,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1119,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=246290,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1839,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=21800,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2350,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=422,
+ ["unit"]=0
+ }
+ },
+ [4222]={
+ ["next_chapter"]=4223,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1124,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=247248,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1859,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=22000,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2350,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=422,
+ ["unit"]=0
+ }
+ },
+ [4223]={
+ ["next_chapter"]=4224,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1128,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=248215,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1879,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=22200,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2350,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=422,
+ ["unit"]=0
+ }
+ },
+ [4224]={
+ ["next_chapter"]=4225,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1133,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=249191,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1899,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=22400,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2350,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=422,
+ ["unit"]=0
+ }
+ },
+ [4225]={
+ ["next_chapter"]=4226,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1137,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=250176,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1919,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=22600,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2350,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=422,
+ ["unit"]=0
+ }
+ },
+ [4226]={
+ ["next_chapter"]=4227,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1142,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=251169,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1939,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=22800,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2350,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=422,
+ ["unit"]=0
+ }
+ },
+ [4227]={
+ ["next_chapter"]=4228,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1146,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=252171,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1959,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=23000,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2350,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=422,
+ ["unit"]=0
+ }
+ },
+ [4228]={
+ ["next_chapter"]=4229,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1151,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=253183,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1979,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=23200,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2350,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=422,
+ ["unit"]=0
+ }
+ },
+ [4229]={
+ ["next_chapter"]=4230,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1155,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=254203,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1999,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=23400,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2350,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=422,
+ ["unit"]=0
+ }
+ },
+ [4230]={
+ ["next_chapter"]=4231,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=1160,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=255232,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2019,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=23600,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2586,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=423,
+ ["unit"]=0
+ }
+ },
+ [4231]={
+ ["next_chapter"]=4232,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1165,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=256269,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2039,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=23800,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2586,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=423,
+ ["unit"]=0
+ }
+ },
+ [4232]={
+ ["next_chapter"]=4233,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1170,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=257316,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2059,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=24000,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2586,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=423,
+ ["unit"]=0
+ }
+ },
+ [4233]={
+ ["next_chapter"]=4234,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1174,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=258372,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2079,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=24200,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2586,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=423,
+ ["unit"]=0
+ }
+ },
+ [4234]={
+ ["next_chapter"]=4235,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1179,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=259438,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2099,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=24400,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2586,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=423,
+ ["unit"]=0
+ }
+ },
+ [4235]={
+ ["next_chapter"]=4236,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1184,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=260512,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2119,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=24600,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2586,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=423,
+ ["unit"]=0
+ }
+ },
+ [4236]={
+ ["next_chapter"]=4237,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1189,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=261595,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2139,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=24800,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2586,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=423,
+ ["unit"]=0
+ }
+ },
+ [4237]={
+ ["next_chapter"]=4238,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1194,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=262688,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2159,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=25000,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2586,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=423,
+ ["unit"]=0
+ }
+ },
+ [4238]={
+ ["next_chapter"]=4239,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1199,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=263790,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2179,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=25300,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2586,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=423,
+ ["unit"]=0
+ }
+ },
+ [4239]={
+ ["next_chapter"]=4240,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1204,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=264901,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2199,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=25600,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2586,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=423,
+ ["unit"]=0
+ }
+ },
+ [4240]={
+ ["next_chapter"]=4241,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=1209,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=266022,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2219,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=25900,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2845,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=424,
+ ["unit"]=0
+ }
+ },
+ [4241]={
+ ["next_chapter"]=4242,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1214,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=267152,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2239,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=26200,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2845,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=424,
+ ["unit"]=0
+ }
+ },
+ [4242]={
+ ["next_chapter"]=4243,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1220,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=268291,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2259,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=26500,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2845,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=424,
+ ["unit"]=0
+ }
+ },
+ [4243]={
+ ["next_chapter"]=4244,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1225,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=269440,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2279,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=26800,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2845,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=424,
+ ["unit"]=0
+ }
+ },
+ [4244]={
+ ["next_chapter"]=4245,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1230,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=270598,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2299,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=27100,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2845,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=424,
+ ["unit"]=0
+ }
+ },
+ [4245]={
+ ["next_chapter"]=4246,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1235,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=271766,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2319,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=27400,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2845,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=424,
+ ["unit"]=0
+ }
+ },
+ [4246]={
+ ["next_chapter"]=4247,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1241,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=272944,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2339,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=27700,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2845,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=424,
+ ["unit"]=0
+ }
+ },
+ [4247]={
+ ["next_chapter"]=4248,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1246,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=274131,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2359,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=28000,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2845,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=424,
+ ["unit"]=0
+ }
+ },
+ [4248]={
+ ["next_chapter"]=4249,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1251,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=275327,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2379,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=28300,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2845,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=424,
+ ["unit"]=0
+ }
+ },
+ [4249]={
+ ["next_chapter"]=4250,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1257,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=276534,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2399,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=28600,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2845,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=424,
+ ["unit"]=0
+ }
+ },
+ [4250]={
+ ["next_chapter"]=4251,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=1263,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=277750,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2419,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=28900,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3134,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=425,
+ ["unit"]=0
+ }
+ },
+ [4251]={
+ ["next_chapter"]=4252,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1268,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=278976,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2439,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=29200,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3134,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=425,
+ ["unit"]=0
+ }
+ },
+ [4252]={
+ ["next_chapter"]=4253,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1274,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=280212,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2459,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=29500,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3134,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=425,
+ ["unit"]=0
+ }
+ },
+ [4253]={
+ ["next_chapter"]=4254,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1279,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=281457,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=20000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2479,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=29800,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3134,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=425,
+ ["unit"]=0
+ }
+ },
+ [4254]={
+ ["next_chapter"]=4255,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1285,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=282713,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2509,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=30100,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3134,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=425,
+ ["unit"]=0
+ }
+ },
+ [4255]={
+ ["next_chapter"]=4256,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1291,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=283978,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2539,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=30400,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3134,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=425,
+ ["unit"]=0
+ }
+ },
+ [4256]={
+ ["next_chapter"]=4257,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1297,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=285253,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2569,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=30700,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3134,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=425,
+ ["unit"]=0
+ }
+ },
+ [4257]={
+ ["next_chapter"]=4258,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1302,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=286539,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2599,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=31000,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3134,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=425,
+ ["unit"]=0
+ }
+ },
+ [4258]={
+ ["next_chapter"]=4259,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1308,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=287834,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2629,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=31300,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3134,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=425,
+ ["unit"]=0
+ }
+ },
+ [4259]={
+ ["next_chapter"]=4260,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1314,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=289139,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2659,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=31600,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3134,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=425,
+ ["unit"]=0
+ }
+ },
+ [4260]={
+ ["next_chapter"]=4261,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=1320,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=290455,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2689,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=31900,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3453,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=426,
+ ["unit"]=0
+ }
+ },
+ [4261]={
+ ["next_chapter"]=4262,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1326,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=291781,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2719,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=32200,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3453,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=426,
+ ["unit"]=0
+ }
+ },
+ [4262]={
+ ["next_chapter"]=4263,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1332,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=293117,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2749,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=32500,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3453,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=426,
+ ["unit"]=0
+ }
+ },
+ [4263]={
+ ["next_chapter"]=4264,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1338,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=294463,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2779,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=32800,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3453,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=426,
+ ["unit"]=0
+ }
+ },
+ [4264]={
+ ["next_chapter"]=4265,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1345,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=295819,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2809,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=33100,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3453,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=426,
+ ["unit"]=0
+ }
+ },
+ [4265]={
+ ["next_chapter"]=4266,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1351,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=297186,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2839,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=33400,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3453,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=426,
+ ["unit"]=0
+ }
+ },
+ [4266]={
+ ["next_chapter"]=4267,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1357,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=298563,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2869,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=33700,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3453,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=426,
+ ["unit"]=0
+ }
+ },
+ [4267]={
+ ["next_chapter"]=4268,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1363,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=299950,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2899,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=34000,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3453,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=426,
+ ["unit"]=0
+ }
+ },
+ [4268]={
+ ["next_chapter"]=4269,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1370,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=301348,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2929,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=34300,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3453,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=426,
+ ["unit"]=0
+ }
+ },
+ [4269]={
+ ["next_chapter"]=4270,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1376,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=302757,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2959,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=34600,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3453,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=426,
+ ["unit"]=0
+ }
+ },
+ [4270]={
+ ["next_chapter"]=4271,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=1383,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=304176,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2989,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=34900,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3802,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=427,
+ ["unit"]=0
+ }
+ },
+ [4271]={
+ ["next_chapter"]=4272,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1389,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=305605,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3019,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=35200,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3802,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=427,
+ ["unit"]=0
+ }
+ },
+ [4272]={
+ ["next_chapter"]=4273,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1396,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=307045,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3049,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=35600,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3802,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=427,
+ ["unit"]=0
+ }
+ },
+ [4273]={
+ ["next_chapter"]=4274,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1402,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=308496,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3079,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=36000,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3802,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=427,
+ ["unit"]=0
+ }
+ },
+ [4274]={
+ ["next_chapter"]=4275,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1409,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=309957,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3109,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=36400,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3802,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=427,
+ ["unit"]=0
+ }
+ },
+ [4275]={
+ ["next_chapter"]=4276,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1416,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=311429,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3139,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=36800,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3802,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=427,
+ ["unit"]=0
+ }
+ },
+ [4276]={
+ ["next_chapter"]=4277,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1422,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=312912,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3169,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=37200,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3802,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=427,
+ ["unit"]=0
+ }
+ },
+ [4277]={
+ ["next_chapter"]=4278,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1429,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=314406,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3199,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=37600,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3802,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=427,
+ ["unit"]=0
+ }
+ },
+ [4278]={
+ ["next_chapter"]=4279,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1436,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=315910,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3229,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=38000,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3802,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=427,
+ ["unit"]=0
+ }
+ },
+ [4279]={
+ ["next_chapter"]=4280,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1443,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=317425,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3259,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=38400,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3802,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=427,
+ ["unit"]=0
+ }
+ },
+ [4280]={
+ ["next_chapter"]=4281,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=1450,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=318951,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3289,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=38800,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=4190,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=428,
+ ["unit"]=0
+ }
+ },
+ [4281]={
+ ["next_chapter"]=4282,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1457,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=320489,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3319,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=39200,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=4190,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=428,
+ ["unit"]=0
+ }
+ },
+ [4282]={
+ ["next_chapter"]=4283,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1464,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=322037,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=30000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3349,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=39600,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=4190,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=428,
+ ["unit"]=0
+ }
+ },
+ [4283]={
+ ["next_chapter"]=4284,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1471,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=323596,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3389,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=40000,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=4190,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=428,
+ ["unit"]=0
+ }
+ },
+ [4284]={
+ ["next_chapter"]=4285,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1478,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=325166,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3429,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=40400,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=4190,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=428,
+ ["unit"]=0
+ }
+ },
+ [4285]={
+ ["next_chapter"]=4286,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1485,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=326747,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3469,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=40800,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=4190,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=428,
+ ["unit"]=0
+ }
+ },
+ [4286]={
+ ["next_chapter"]=4287,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1492,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=328339,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3509,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=41200,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=4190,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=428,
+ ["unit"]=0
+ }
+ },
+ [4287]={
+ ["next_chapter"]=4288,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1500,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=329943,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3549,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=41600,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=4190,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=428,
+ ["unit"]=0
+ }
+ },
+ [4288]={
+ ["next_chapter"]=4289,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1507,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=331558,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3589,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=42000,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=4190,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=428,
+ ["unit"]=0
+ }
+ },
+ [4289]={
+ ["next_chapter"]=4290,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1514,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=333184,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3629,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=42400,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=4190,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=428,
+ ["unit"]=0
+ }
+ },
+ [4290]={
+ ["next_chapter"]=4291,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=1522,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=334821,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3669,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=42800,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=4618,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=429,
+ ["unit"]=0
+ }
+ },
+ [4291]={
+ ["next_chapter"]=4292,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1529,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=336470,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3709,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=43200,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=4618,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=429,
+ ["unit"]=0
+ }
+ },
+ [4292]={
+ ["next_chapter"]=4293,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1537,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=338130,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3749,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=43600,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=4618,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=429,
+ ["unit"]=0
+ }
+ },
+ [4293]={
+ ["next_chapter"]=4294,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1545,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=339801,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3789,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=44000,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=4618,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=429,
+ ["unit"]=0
+ }
+ },
+ [4294]={
+ ["next_chapter"]=4295,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1552,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=341484,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3829,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=44400,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=4618,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=429,
+ ["unit"]=0
+ }
+ },
+ [4295]={
+ ["next_chapter"]=4296,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1560,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=343179,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3869,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=44800,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=4618,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=429,
+ ["unit"]=0
+ }
+ },
+ [4296]={
+ ["next_chapter"]=4297,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1568,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=344884,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3909,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=45200,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=4618,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=429,
+ ["unit"]=0
+ }
+ },
+ [4297]={
+ ["next_chapter"]=4298,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1575,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=346602,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3949,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=45700,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=4618,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=429,
+ ["unit"]=0
+ }
+ },
+ [4298]={
+ ["next_chapter"]=4299,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1583,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=348331,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3989,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=46200,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=4618,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=429,
+ ["unit"]=0
+ }
+ },
+ [4299]={
+ ["next_chapter"]=4300,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1591,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=350072,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4029,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=46700,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=4618,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=429,
+ ["unit"]=0
+ }
+ },
+ [4300]={
+ ["next_chapter"]=4301,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=1599,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=351824,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4069,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=47200,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=5090,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=430,
+ ["unit"]=0
+ }
+ },
+ [4301]={
+ ["next_chapter"]=4302,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1607,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=353588,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4109,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=47700,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=5090,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=430,
+ ["unit"]=0
+ }
+ },
+ [4302]={
+ ["next_chapter"]=4303,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1615,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=355364,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4149,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=48200,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=5090,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=430,
+ ["unit"]=0
+ }
+ },
+ [4303]={
+ ["next_chapter"]=4304,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1623,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=357152,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4189,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=48700,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=5090,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=430,
+ ["unit"]=0
+ }
+ },
+ [4304]={
+ ["next_chapter"]=4305,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1632,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=358951,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4229,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=49200,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=5090,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=430,
+ ["unit"]=0
+ }
+ },
+ [4305]={
+ ["next_chapter"]=4306,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1640,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=360763,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=40000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4269,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=49700,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=5090,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=430,
+ ["unit"]=0
+ }
+ },
+ [4306]={
+ ["next_chapter"]=4307,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1648,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=362586,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4319,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=50200,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=5090,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=430,
+ ["unit"]=0
+ }
+ },
+ [4307]={
+ ["next_chapter"]=4308,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1656,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=364421,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4369,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=50700,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=5090,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=430,
+ ["unit"]=0
+ }
+ },
+ [4308]={
+ ["next_chapter"]=4309,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1665,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=366268,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4419,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=51200,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=5090,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=430,
+ ["unit"]=0
+ }
+ },
+ [4309]={
+ ["next_chapter"]=4310,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1673,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=368128,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4469,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=51700,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=5090,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=430,
+ ["unit"]=0
+ }
+ },
+ [4310]={
+ ["next_chapter"]=4311,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=1682,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=369999,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4519,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=52200,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=5612,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=431,
+ ["unit"]=0
+ }
+ },
+ [4311]={
+ ["next_chapter"]=4312,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1690,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=371882,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4569,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=52700,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=5612,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=431,
+ ["unit"]=0
+ }
+ },
+ [4312]={
+ ["next_chapter"]=4313,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1699,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=373778,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4619,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=53200,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=5612,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=431,
+ ["unit"]=0
+ }
+ },
+ [4313]={
+ ["next_chapter"]=4314,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1708,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=375686,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4669,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=53700,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=5612,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=431,
+ ["unit"]=0
+ }
+ },
+ [4314]={
+ ["next_chapter"]=4315,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1716,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=377606,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4719,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=54200,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=5612,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=431,
+ ["unit"]=0
+ }
+ },
+ [4315]={
+ ["next_chapter"]=4316,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1725,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=379538,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4769,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=54700,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=5612,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=431,
+ ["unit"]=0
+ }
+ },
+ [4316]={
+ ["next_chapter"]=4317,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1734,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=381483,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4819,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=55200,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=5612,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=431,
+ ["unit"]=0
+ }
+ },
+ [4317]={
+ ["next_chapter"]=4318,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1743,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=383440,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4869,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=55800,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=5612,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=431,
+ ["unit"]=0
+ }
+ },
+ [4318]={
+ ["next_chapter"]=4319,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1752,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=385409,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4919,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=56400,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=5612,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=431,
+ ["unit"]=0
+ }
+ },
+ [4319]={
+ ["next_chapter"]=4320,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1761,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=387391,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4969,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=57000,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=5612,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=431,
+ ["unit"]=0
+ }
+ },
+ [4320]={
+ ["next_chapter"]=4321,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=1770,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=389385,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5019,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=57600,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=6188,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=432,
+ ["unit"]=0
+ }
+ },
+ [4321]={
+ ["next_chapter"]=4322,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1779,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=391392,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5069,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=58200,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=6188,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=432,
+ ["unit"]=0
+ }
+ },
+ [4322]={
+ ["next_chapter"]=4323,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1788,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=393411,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5119,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=58800,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=6188,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=432,
+ ["unit"]=0
+ }
+ },
+ [4323]={
+ ["next_chapter"]=4324,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1797,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=395443,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=50000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5169,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=59400,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=6188,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=432,
+ ["unit"]=0
+ }
+ },
+ [4324]={
+ ["next_chapter"]=4325,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1807,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=397488,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5229,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=60000,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=6188,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=432,
+ ["unit"]=0
+ }
+ },
+ [4325]={
+ ["next_chapter"]=4326,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1816,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=399545,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5289,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=60600,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=6188,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=432,
+ ["unit"]=0
+ }
+ },
+ [4326]={
+ ["next_chapter"]=4327,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1826,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=401615,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5349,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=61200,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=6188,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=432,
+ ["unit"]=0
+ }
+ },
+ [4327]={
+ ["next_chapter"]=4328,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1835,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=403697,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5409,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=61800,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=6188,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=432,
+ ["unit"]=0
+ }
+ },
+ [4328]={
+ ["next_chapter"]=4329,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1845,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=405793,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5469,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=62400,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=6188,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=432,
+ ["unit"]=0
+ }
+ },
+ [4329]={
+ ["next_chapter"]=4330,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1854,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=407901,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5529,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=63000,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=6188,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=432,
+ ["unit"]=0
+ }
+ },
+ [4330]={
+ ["next_chapter"]=4331,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=1864,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=410022,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5589,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=63600,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=6824,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=433,
+ ["unit"]=0
+ }
+ },
+ [4331]={
+ ["next_chapter"]=4332,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1873,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=412156,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5649,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=64200,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=6824,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=433,
+ ["unit"]=0
+ }
+ },
+ [4332]={
+ ["next_chapter"]=4333,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1883,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=414303,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5709,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=64800,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=6824,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=433,
+ ["unit"]=0
+ }
+ },
+ [4333]={
+ ["next_chapter"]=4334,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1893,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=416462,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5769,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=65400,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=6824,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=433,
+ ["unit"]=0
+ }
+ },
+ [4334]={
+ ["next_chapter"]=4335,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1903,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=418635,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5829,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=66100,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=6824,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=433,
+ ["unit"]=0
+ }
+ },
+ [4335]={
+ ["next_chapter"]=4336,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1913,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=420821,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5889,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=66800,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=6824,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=433,
+ ["unit"]=0
+ }
+ },
+ [4336]={
+ ["next_chapter"]=4337,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1923,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=423020,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5949,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=67500,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=6824,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=433,
+ ["unit"]=0
+ }
+ },
+ [4337]={
+ ["next_chapter"]=4338,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1933,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=425232,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6009,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=68200,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=6824,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=433,
+ ["unit"]=0
+ }
+ },
+ [4338]={
+ ["next_chapter"]=4339,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1943,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=427457,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6069,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=68900,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=6824,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=433,
+ ["unit"]=0
+ }
+ },
+ [4339]={
+ ["next_chapter"]=4340,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1953,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=429696,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=60000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6129,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=69600,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=6824,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=433,
+ ["unit"]=0
+ }
+ },
+ [4340]={
+ ["next_chapter"]=4341,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=1963,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=431948,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6199,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=70300,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=7527,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=434,
+ ["unit"]=0
+ }
+ },
+ [4341]={
+ ["next_chapter"]=4342,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1974,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=434213,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6269,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=71000,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=7527,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=434,
+ ["unit"]=0
+ }
+ },
+ [4342]={
+ ["next_chapter"]=4343,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1984,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=436491,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6339,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=71700,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=7527,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=434,
+ ["unit"]=0
+ }
+ },
+ [4343]={
+ ["next_chapter"]=4344,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1994,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=438783,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6409,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=72400,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=7527,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=434,
+ ["unit"]=0
+ }
+ },
+ [4344]={
+ ["next_chapter"]=4345,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2005,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=441088,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6479,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=73100,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=7527,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=434,
+ ["unit"]=0
+ }
+ },
+ [4345]={
+ ["next_chapter"]=4346,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2015,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=443406,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6549,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=73800,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=7527,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=434,
+ ["unit"]=0
+ }
+ },
+ [4346]={
+ ["next_chapter"]=4347,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2026,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=445738,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6619,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=74500,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=7527,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=434,
+ ["unit"]=0
+ }
+ },
+ [4347]={
+ ["next_chapter"]=4348,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2037,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=448084,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6689,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=75200,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=7527,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=434,
+ ["unit"]=0
+ }
+ },
+ [4348]={
+ ["next_chapter"]=4349,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2047,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=450443,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6759,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=76000,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=7527,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=434,
+ ["unit"]=0
+ }
+ },
+ [4349]={
+ ["next_chapter"]=4350,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2058,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=452816,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6829,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=76800,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=7527,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=434,
+ ["unit"]=0
+ }
+ },
+ [4350]={
+ ["next_chapter"]=4351,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=2069,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=455202,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6899,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=77600,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=8303,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=435,
+ ["unit"]=0
+ }
+ },
+ [4351]={
+ ["next_chapter"]=4352,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2080,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=457602,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6969,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=78400,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=8303,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=435,
+ ["unit"]=0
+ }
+ },
+ [4352]={
+ ["next_chapter"]=4353,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2091,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=460016,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=70000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7039,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=79200,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=8303,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=435,
+ ["unit"]=0
+ }
+ },
+ [4353]={
+ ["next_chapter"]=4354,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2102,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=462443,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7119,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=80000,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=8303,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=435,
+ ["unit"]=0
+ }
+ },
+ [4354]={
+ ["next_chapter"]=4355,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2113,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=464884,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7199,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=80800,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=8303,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=435,
+ ["unit"]=0
+ }
+ },
+ [4355]={
+ ["next_chapter"]=4356,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2124,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=467340,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7279,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=81600,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=8303,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=435,
+ ["unit"]=0
+ }
+ },
+ [4356]={
+ ["next_chapter"]=4357,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2135,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=469809,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7359,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=82400,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=8303,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=435,
+ ["unit"]=0
+ }
+ },
+ [4357]={
+ ["next_chapter"]=4358,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2147,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=472291,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7439,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=83200,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=8303,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=435,
+ ["unit"]=0
+ }
+ },
+ [4358]={
+ ["next_chapter"]=4359,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2158,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=474788,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7519,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=84000,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=8303,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=435,
+ ["unit"]=0
+ }
+ },
+ [4359]={
+ ["next_chapter"]=4360,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2170,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=477299,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7599,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=84800,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=8303,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=435,
+ ["unit"]=0
+ }
+ },
+ [4360]={
+ ["next_chapter"]=4361,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=2181,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=479824,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7679,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=85600,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=9159,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=436,
+ ["unit"]=0
+ }
+ },
+ [4361]={
+ ["next_chapter"]=4362,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2193,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=482363,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7759,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=86500,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=9159,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=436,
+ ["unit"]=0
+ }
+ },
+ [4362]={
+ ["next_chapter"]=4363,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2204,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=484916,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7839,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=87400,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=9159,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=436,
+ ["unit"]=0
+ }
+ },
+ [4363]={
+ ["next_chapter"]=4364,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2216,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=487483,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7919,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=88300,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=9159,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=436,
+ ["unit"]=0
+ }
+ },
+ [4364]={
+ ["next_chapter"]=4365,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2228,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=490064,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=80000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7999,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=89200,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=9159,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=436,
+ ["unit"]=0
+ }
+ },
+ [4365]={
+ ["next_chapter"]=4366,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2239,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=492660,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8089,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=90100,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=9159,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=436,
+ ["unit"]=0
+ }
+ },
+ [4366]={
+ ["next_chapter"]=4367,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2251,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=495270,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8179,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=91000,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=9159,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=436,
+ ["unit"]=0
+ }
+ },
+ [4367]={
+ ["next_chapter"]=4368,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2263,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=497894,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8269,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=91900,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=9159,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=436,
+ ["unit"]=0
+ }
+ },
+ [4368]={
+ ["next_chapter"]=4369,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2275,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=500532,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8359,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=92800,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=9159,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=436,
+ ["unit"]=0
+ }
+ },
+ [4369]={
+ ["next_chapter"]=4370,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2287,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=503185,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8449,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=93700,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=9159,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=436,
+ ["unit"]=0
+ }
+ },
+ [4370]={
+ ["next_chapter"]=4371,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=2299,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=505852,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8539,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=94600,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=10105,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=437,
+ ["unit"]=0
+ }
+ },
+ [4371]={
+ ["next_chapter"]=4372,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2312,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=508534,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8629,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=95500,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=10105,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=437,
+ ["unit"]=0
+ }
+ },
+ [4372]={
+ ["next_chapter"]=4373,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2324,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=511230,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8719,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=96500,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=10105,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=437,
+ ["unit"]=0
+ }
+ },
+ [4373]={
+ ["next_chapter"]=4374,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2336,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=513941,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8809,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=97500,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=10105,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=437,
+ ["unit"]=0
+ }
+ },
+ [4374]={
+ ["next_chapter"]=4375,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2348,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=516666,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8899,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=98500,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=10105,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=437,
+ ["unit"]=0
+ }
+ },
+ [4375]={
+ ["next_chapter"]=4376,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2361,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=519406,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=90000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8989,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=99500,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=10105,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=437,
+ ["unit"]=0
+ }
+ },
+ [4376]={
+ ["next_chapter"]=4377,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2373,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=522161,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=100500,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9089,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=100500,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=10105,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=437,
+ ["unit"]=0
+ }
+ },
+ [4377]={
+ ["next_chapter"]=4378,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2386,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=524930,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=101505,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9191,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=101505,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=10105,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=437,
+ ["unit"]=0
+ }
+ },
+ [4378]={
+ ["next_chapter"]=4379,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2399,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=527714,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=102520,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9293,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=102520,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=10105,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=437,
+ ["unit"]=0
+ }
+ },
+ [4379]={
+ ["next_chapter"]=4380,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2411,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=530513,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=103545,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9397,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=103545,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=10105,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=437,
+ ["unit"]=0
+ }
+ },
+ [4380]={
+ ["next_chapter"]=4381,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=2424,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=533326,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=104581,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9502,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=104581,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=11150,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=438,
+ ["unit"]=0
+ }
+ },
+ [4381]={
+ ["next_chapter"]=4382,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2437,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=536155,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=105627,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9607,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=105627,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=11150,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=438,
+ ["unit"]=0
+ }
+ },
+ [4382]={
+ ["next_chapter"]=4383,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2450,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=538998,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=106683,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9714,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=106683,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=11150,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=438,
+ ["unit"]=0
+ }
+ },
+ [4383]={
+ ["next_chapter"]=4384,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2463,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=541856,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=107750,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9822,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=107750,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=11150,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=438,
+ ["unit"]=0
+ }
+ },
+ [4384]={
+ ["next_chapter"]=4385,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2476,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=544730,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=108827,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9930,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=108827,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=11150,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=438,
+ ["unit"]=0
+ }
+ },
+ [4385]={
+ ["next_chapter"]=4386,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2489,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=547618,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=109915,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10040,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=109915,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=11150,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=438,
+ ["unit"]=0
+ }
+ },
+ [4386]={
+ ["next_chapter"]=4387,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2502,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=550521,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=111015,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10151,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=111015,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=11150,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=438,
+ ["unit"]=0
+ }
+ },
+ [4387]={
+ ["next_chapter"]=4388,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2516,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=553439,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=112125,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10263,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=112125,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=11150,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=438,
+ ["unit"]=0
+ }
+ },
+ [4388]={
+ ["next_chapter"]=4389,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2529,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=556373,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=113246,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10377,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=113246,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=11150,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=438,
+ ["unit"]=0
+ }
+ },
+ [4389]={
+ ["next_chapter"]=4390,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2542,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=559322,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=114378,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10491,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=114378,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=11150,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=438,
+ ["unit"]=0
+ }
+ },
+ [4390]={
+ ["next_chapter"]=4391,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=2556,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=562285,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=115522,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10607,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=115522,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=12306,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=439,
+ ["unit"]=0
+ }
+ },
+ [4391]={
+ ["next_chapter"]=4392,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2569,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=565264,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=116677,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10723,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=116677,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=12306,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=439,
+ ["unit"]=0
+ }
+ },
+ [4392]={
+ ["next_chapter"]=4393,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2583,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=568259,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=117844,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10841,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=117844,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=12306,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=439,
+ ["unit"]=0
+ }
+ },
+ [4393]={
+ ["next_chapter"]=4394,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2597,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=571268,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=119023,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10960,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=119023,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=12306,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=439,
+ ["unit"]=0
+ }
+ },
+ [4394]={
+ ["next_chapter"]=4395,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2610,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=574293,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=120213,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11080,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=120213,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=12306,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=439,
+ ["unit"]=0
+ }
+ },
+ [4395]={
+ ["next_chapter"]=4396,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2624,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=577334,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=121415,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11202,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=121415,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=12306,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=439,
+ ["unit"]=0
+ }
+ },
+ [4396]={
+ ["next_chapter"]=4397,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2638,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=580390,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=122629,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11324,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=122629,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=12306,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=439,
+ ["unit"]=0
+ }
+ },
+ [4397]={
+ ["next_chapter"]=4398,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2652,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=583461,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=123855,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11448,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=123855,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=12306,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=439,
+ ["unit"]=0
+ }
+ },
+ [4398]={
+ ["next_chapter"]=4399,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2666,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=586548,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=125094,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11573,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=125094,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=12306,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=439,
+ ["unit"]=0
+ }
+ },
+ [4399]={
+ ["next_chapter"]=4400,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2680,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=589650,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=126345,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11700,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=126345,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=12306,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=439,
+ ["unit"]=0
+ }
+ },
+ [4400]={
+ ["next_chapter"]=4401,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=2694,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=592768,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=127608,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11827,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=127608,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=13582,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=440,
+ ["unit"]=0
+ }
+ },
+ [4401]={
+ ["next_chapter"]=4402,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2709,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=595902,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=128884,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11956,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=128884,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=13582,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=440,
+ ["unit"]=0
+ }
+ },
+ [4402]={
+ ["next_chapter"]=4403,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2723,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=599051,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=130173,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12086,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=130173,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=13582,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=440,
+ ["unit"]=0
+ }
+ },
+ [4403]={
+ ["next_chapter"]=4404,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2737,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=602216,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=131475,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12218,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=131475,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=13582,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=440,
+ ["unit"]=0
+ }
+ },
+ [4404]={
+ ["next_chapter"]=4405,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2752,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=605396,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=132790,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12351,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=132790,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=13582,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=440,
+ ["unit"]=0
+ }
+ },
+ [4405]={
+ ["next_chapter"]=4406,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2766,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=608593,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=134118,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12485,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=134118,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=13582,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=440,
+ ["unit"]=0
+ }
+ },
+ [4406]={
+ ["next_chapter"]=4407,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2781,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=611805,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=135459,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12620,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=135459,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=13582,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=440,
+ ["unit"]=0
+ }
+ },
+ [4407]={
+ ["next_chapter"]=4408,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2796,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=615033,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=136813,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12757,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=136813,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=13582,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=440,
+ ["unit"]=0
+ }
+ },
+ [4408]={
+ ["next_chapter"]=4409,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2810,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=618278,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=138182,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12895,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=138182,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=13582,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=440,
+ ["unit"]=0
+ }
+ },
+ [4409]={
+ ["next_chapter"]=4410,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2825,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=621538,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=139563,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13035,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=139563,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=13582,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=440,
+ ["unit"]=0
+ }
+ },
+ [4410]={
+ ["next_chapter"]=4411,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=2840,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=624814,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=140959,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13176,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=140959,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=14991,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=441,
+ ["unit"]=0
+ }
+ },
+ [4411]={
+ ["next_chapter"]=4412,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2855,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=628106,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=142369,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13318,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=142369,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=14991,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=441,
+ ["unit"]=0
+ }
+ },
+ [4412]={
+ ["next_chapter"]=4413,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2870,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=631414,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=143792,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13462,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=143792,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=14991,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=441,
+ ["unit"]=0
+ }
+ },
+ [4413]={
+ ["next_chapter"]=4414,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2885,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=634738,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=145230,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13607,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=145230,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=14991,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=441,
+ ["unit"]=0
+ }
+ },
+ [4414]={
+ ["next_chapter"]=4415,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2900,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=638078,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=146682,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13754,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=146682,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=14991,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=441,
+ ["unit"]=0
+ }
+ },
+ [4415]={
+ ["next_chapter"]=4416,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2916,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=641435,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=148149,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13902,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=148149,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=14991,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=441,
+ ["unit"]=0
+ }
+ },
+ [4416]={
+ ["next_chapter"]=4417,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2931,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=644807,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=149631,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14052,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=149631,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=14991,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=441,
+ ["unit"]=0
+ }
+ },
+ [4417]={
+ ["next_chapter"]=4418,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2946,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=648196,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=151127,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14203,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=151127,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=14991,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=441,
+ ["unit"]=0
+ }
+ },
+ [4418]={
+ ["next_chapter"]=4419,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2962,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=651602,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=152638,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14355,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=152638,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=14991,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=441,
+ ["unit"]=0
+ }
+ },
+ [4419]={
+ ["next_chapter"]=4420,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2977,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=655023,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=154165,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14510,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=154165,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=14991,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=441,
+ ["unit"]=0
+ }
+ },
+ [4420]={
+ ["next_chapter"]=4421,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=2993,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=658461,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=155706,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14665,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=155706,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=16548,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=442,
+ ["unit"]=0
+ }
+ },
+ [4421]={
+ ["next_chapter"]=4422,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3009,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=661915,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=157263,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14822,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=157263,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=16548,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=442,
+ ["unit"]=0
+ }
+ },
+ [4422]={
+ ["next_chapter"]=4423,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3024,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=665386,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=158836,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14981,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=158836,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=16548,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=442,
+ ["unit"]=0
+ }
+ },
+ [4423]={
+ ["next_chapter"]=4424,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3040,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=668874,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=160424,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15142,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=160424,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=16548,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=442,
+ ["unit"]=0
+ }
+ },
+ [4424]={
+ ["next_chapter"]=4425,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3056,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=672377,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=162029,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15304,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=162029,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=16548,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=442,
+ ["unit"]=0
+ }
+ },
+ [4425]={
+ ["next_chapter"]=4426,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3072,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=675898,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=163649,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15467,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=163649,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=16548,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=442,
+ ["unit"]=0
+ }
+ },
+ [4426]={
+ ["next_chapter"]=4427,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3088,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=679435,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=165285,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15633,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=165285,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=16548,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=442,
+ ["unit"]=0
+ }
+ },
+ [4427]={
+ ["next_chapter"]=4428,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3104,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=682988,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=166938,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15800,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=166938,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=16548,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=442,
+ ["unit"]=0
+ }
+ },
+ [4428]={
+ ["next_chapter"]=4429,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3121,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=686559,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=168608,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15968,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=168608,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=16548,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=442,
+ ["unit"]=0
+ }
+ },
+ [4429]={
+ ["next_chapter"]=4430,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3137,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=690146,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=170294,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16139,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=170294,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=16548,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=442,
+ ["unit"]=0
+ }
+ },
+ [4430]={
+ ["next_chapter"]=4431,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=3153,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=693750,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=171997,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16311,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=171997,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=18268,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=443,
+ ["unit"]=0
+ }
+ },
+ [4431]={
+ ["next_chapter"]=4432,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3170,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=697370,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=173717,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16484,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=173717,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=18268,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=443,
+ ["unit"]=0
+ }
+ },
+ [4432]={
+ ["next_chapter"]=4433,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3186,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=701008,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=175454,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16660,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=175454,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=18268,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=443,
+ ["unit"]=0
+ }
+ },
+ [4433]={
+ ["next_chapter"]=4434,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3203,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=704662,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=177208,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16837,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=177208,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=18268,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=443,
+ ["unit"]=0
+ }
+ },
+ [4434]={
+ ["next_chapter"]=4435,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3220,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=708333,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=178981,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17016,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=178981,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=18268,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=443,
+ ["unit"]=0
+ }
+ },
+ [4435]={
+ ["next_chapter"]=4436,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3236,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=712021,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=180770,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17197,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=180770,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=18268,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=443,
+ ["unit"]=0
+ }
+ },
+ [4436]={
+ ["next_chapter"]=4437,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3253,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=715727,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=182578,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17379,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=182578,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=18268,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=443,
+ ["unit"]=0
+ }
+ },
+ [4437]={
+ ["next_chapter"]=4438,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3270,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=719449,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=184404,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17564,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=184404,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=18268,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=443,
+ ["unit"]=0
+ }
+ },
+ [4438]={
+ ["next_chapter"]=4439,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3287,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=723188,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=186248,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17750,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=186248,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=18268,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=443,
+ ["unit"]=0
+ }
+ },
+ [4439]={
+ ["next_chapter"]=4440,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3304,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=726945,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=188110,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17938,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=188110,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=18268,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=443,
+ ["unit"]=0
+ }
+ },
+ [4440]={
+ ["next_chapter"]=4441,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=3321,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=730718,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=189991,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18128,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=189991,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=20168,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=444,
+ ["unit"]=0
+ }
+ },
+ [4441]={
+ ["next_chapter"]=4442,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3339,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=734509,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=191891,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18320,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=191891,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=20168,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=444,
+ ["unit"]=0
+ }
+ },
+ [4442]={
+ ["next_chapter"]=4443,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3356,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=738317,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=193810,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18514,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=193810,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=20168,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=444,
+ ["unit"]=0
+ }
+ },
+ [4443]={
+ ["next_chapter"]=4444,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3373,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=742142,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=195748,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18709,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=195748,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=20168,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=444,
+ ["unit"]=0
+ }
+ },
+ [4444]={
+ ["next_chapter"]=4445,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3391,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=745985,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=197706,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18907,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=197706,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=20168,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=444,
+ ["unit"]=0
+ }
+ },
+ [4445]={
+ ["next_chapter"]=4446,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3408,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=749845,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=199683,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19107,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=199683,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=20168,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=444,
+ ["unit"]=0
+ }
+ },
+ [4446]={
+ ["next_chapter"]=4447,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3426,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=753722,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=201680,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19309,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=201680,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=20168,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=444,
+ ["unit"]=0
+ }
+ },
+ [4447]={
+ ["next_chapter"]=4448,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3444,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=757617,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=203697,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19512,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=203697,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=20168,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=444,
+ ["unit"]=0
+ }
+ },
+ [4448]={
+ ["next_chapter"]=4449,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3461,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=761529,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=205733,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19718,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=205733,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=20168,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=444,
+ ["unit"]=0
+ }
+ },
+ [4449]={
+ ["next_chapter"]=4450,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3479,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=765459,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=207791,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19926,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=207791,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=20168,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=444,
+ ["unit"]=0
+ }
+ },
+ [4450]={
+ ["next_chapter"]=4451,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=3497,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=769406,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=209869,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20136,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=209869,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=22267,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=445,
+ ["unit"]=0
+ }
+ },
+ [4451]={
+ ["next_chapter"]=4452,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3515,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=773371,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=211967,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20348,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=211967,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=22267,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=445,
+ ["unit"]=0
+ }
+ },
+ [4452]={
+ ["next_chapter"]=4453,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3533,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=777353,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=214087,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20562,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=214087,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=22267,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=445,
+ ["unit"]=0
+ }
+ },
+ [4453]={
+ ["next_chapter"]=4454,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3552,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=781353,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=216228,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20778,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=216228,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=22267,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=445,
+ ["unit"]=0
+ }
+ },
+ [4454]={
+ ["next_chapter"]=4455,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3570,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=785371,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=218390,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20996,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=218390,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=22267,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=445,
+ ["unit"]=0
+ }
+ },
+ [4455]={
+ ["next_chapter"]=4456,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3588,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=789407,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=220574,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21217,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=220574,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=22267,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=445,
+ ["unit"]=0
+ }
+ },
+ [4456]={
+ ["next_chapter"]=4457,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3607,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=793460,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=222780,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21440,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=222780,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=22267,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=445,
+ ["unit"]=0
+ }
+ },
+ [4457]={
+ ["next_chapter"]=4458,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3625,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=797531,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=225008,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21665,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=225008,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=22267,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=445,
+ ["unit"]=0
+ }
+ },
+ [4458]={
+ ["next_chapter"]=4459,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3644,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=801620,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=227258,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21892,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=227258,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=22267,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=445,
+ ["unit"]=0
+ }
+ },
+ [4459]={
+ ["next_chapter"]=4460,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3662,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=805727,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=229530,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22121,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=229530,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=22267,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=445,
+ ["unit"]=0
+ }
+ },
+ [4460]={
+ ["next_chapter"]=4461,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=3681,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=809852,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=231826,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22353,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=231826,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=24585,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=446,
+ ["unit"]=0
+ }
+ },
+ [4461]={
+ ["next_chapter"]=4462,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3700,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=813995,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=234144,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22587,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=234144,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=24585,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=446,
+ ["unit"]=0
+ }
+ },
+ [4462]={
+ ["next_chapter"]=4463,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3719,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=818156,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=236485,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22824,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=236485,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=24585,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=446,
+ ["unit"]=0
+ }
+ },
+ [4463]={
+ ["next_chapter"]=4464,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3738,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=822335,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=238850,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23063,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=238850,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=24585,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=446,
+ ["unit"]=0
+ }
+ },
+ [4464]={
+ ["next_chapter"]=4465,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3757,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=826532,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=241239,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23304,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=241239,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=24585,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=446,
+ ["unit"]=0
+ }
+ },
+ [4465]={
+ ["next_chapter"]=4466,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3776,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=830747,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=243651,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23548,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=243651,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=24585,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=446,
+ ["unit"]=0
+ }
+ },
+ [4466]={
+ ["next_chapter"]=4467,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3795,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=834980,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=246088,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23794,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=246088,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=24585,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=446,
+ ["unit"]=0
+ }
+ },
+ [4467]={
+ ["next_chapter"]=4468,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3815,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=839231,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=248548,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24042,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=248548,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=24585,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=446,
+ ["unit"]=0
+ }
+ },
+ [4468]={
+ ["next_chapter"]=4469,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3834,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=843501,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=251034,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24293,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=251034,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=24585,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=446,
+ ["unit"]=0
+ }
+ },
+ [4469]={
+ ["next_chapter"]=4470,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3854,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=847789,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=253544,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24547,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=253544,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=24585,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=446,
+ ["unit"]=0
+ }
+ },
+ [4470]={
+ ["next_chapter"]=4471,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=3873,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=852095,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=256080,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24803,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=256080,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=27146,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=447,
+ ["unit"]=0
+ }
+ },
+ [4471]={
+ ["next_chapter"]=4472,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3893,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=856420,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=258641,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25062,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=258641,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=27146,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=447,
+ ["unit"]=0
+ }
+ },
+ [4472]={
+ ["next_chapter"]=4473,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3913,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=860763,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=261227,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25323,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=261227,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=27146,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=447,
+ ["unit"]=0
+ }
+ },
+ [4473]={
+ ["next_chapter"]=4474,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3932,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=865125,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=263839,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25587,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=263839,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=27146,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=447,
+ ["unit"]=0
+ }
+ },
+ [4474]={
+ ["next_chapter"]=4475,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3952,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=869505,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=266478,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25853,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=266478,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=27146,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=447,
+ ["unit"]=0
+ }
+ },
+ [4475]={
+ ["next_chapter"]=4476,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3972,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=873903,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=269142,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26122,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=269142,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=27146,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=447,
+ ["unit"]=0
+ }
+ },
+ [4476]={
+ ["next_chapter"]=4477,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3992,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=878320,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=271834,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26394,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=271834,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=27146,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=447,
+ ["unit"]=0
+ }
+ },
+ [4477]={
+ ["next_chapter"]=4478,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4013,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=882756,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=274552,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26669,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=274552,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=27146,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=447,
+ ["unit"]=0
+ }
+ },
+ [4478]={
+ ["next_chapter"]=4479,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4033,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=887210,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=277298,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26946,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=277298,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=27146,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=447,
+ ["unit"]=0
+ }
+ },
+ [4479]={
+ ["next_chapter"]=4480,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4053,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=891683,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=280071,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27226,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=280071,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=27146,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=447,
+ ["unit"]=0
+ }
+ },
+ [4480]={
+ ["next_chapter"]=4481,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=4074,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=896175,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=282871,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27509,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=282871,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=29975,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=448,
+ ["unit"]=0
+ }
+ },
+ [4481]={
+ ["next_chapter"]=4482,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4094,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=900686,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=285700,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27795,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=285700,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=29975,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=448,
+ ["unit"]=0
+ }
+ },
+ [4482]={
+ ["next_chapter"]=4483,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4115,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=905215,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=288557,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28083,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=288557,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=29975,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=448,
+ ["unit"]=0
+ }
+ },
+ [4483]={
+ ["next_chapter"]=4484,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4135,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=909763,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=291443,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28375,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=291443,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=29975,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=448,
+ ["unit"]=0
+ }
+ },
+ [4484]={
+ ["next_chapter"]=4485,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4156,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=914330,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=294357,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28669,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=294357,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=29975,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=448,
+ ["unit"]=0
+ }
+ },
+ [4485]={
+ ["next_chapter"]=4486,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4177,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=918916,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=297301,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28966,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=297301,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=29975,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=448,
+ ["unit"]=0
+ }
+ },
+ [4486]={
+ ["next_chapter"]=4487,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4198,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=923521,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=300274,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29267,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=300274,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=29975,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=448,
+ ["unit"]=0
+ }
+ },
+ [4487]={
+ ["next_chapter"]=4488,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4219,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=928144,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=303276,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29570,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=303276,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=29975,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=448,
+ ["unit"]=0
+ }
+ },
+ [4488]={
+ ["next_chapter"]=4489,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4240,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=932787,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=306309,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29876,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=306309,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=29975,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=448,
+ ["unit"]=0
+ }
+ },
+ [4489]={
+ ["next_chapter"]=4490,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4261,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=937449,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=309372,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30185,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=309372,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=29975,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=448,
+ ["unit"]=0
+ }
+ },
+ [4490]={
+ ["next_chapter"]=4491,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=4282,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=942130,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=312466,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30498,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=312466,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=33099,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=449,
+ ["unit"]=0
+ }
+ },
+ [4491]={
+ ["next_chapter"]=4492,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4304,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=946830,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=315591,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30814,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=315591,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=33099,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=449,
+ ["unit"]=0
+ }
+ },
+ [4492]={
+ ["next_chapter"]=4493,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4325,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=951550,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=318746,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31132,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=318746,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=33099,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=449,
+ ["unit"]=0
+ }
+ },
+ [4493]={
+ ["next_chapter"]=4494,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4347,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=956288,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=321934,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31454,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=321934,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=33099,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=449,
+ ["unit"]=0
+ }
+ },
+ [4494]={
+ ["next_chapter"]=4495,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4368,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=961046,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=325153,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31779,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=325153,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=33099,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=449,
+ ["unit"]=0
+ }
+ },
+ [4495]={
+ ["next_chapter"]=4496,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4390,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=965823,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=328405,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32108,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=328405,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=33099,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=449,
+ ["unit"]=0
+ }
+ },
+ [4496]={
+ ["next_chapter"]=4497,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4412,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=970620,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=331689,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32439,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=331689,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=33099,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=449,
+ ["unit"]=0
+ }
+ },
+ [4497]={
+ ["next_chapter"]=4498,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4434,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=975436,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=335006,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32774,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=335006,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=33099,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=449,
+ ["unit"]=0
+ }
+ },
+ [4498]={
+ ["next_chapter"]=4499,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4456,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=980271,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=338356,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33113,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=338356,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=33099,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=449,
+ ["unit"]=0
+ }
+ },
+ [4499]={
+ ["next_chapter"]=4500,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4478,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=985126,
+ ["unit"]=7
+ },
+ ["gold_reward"]={
+ ["value"]=341739,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33455,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=341739,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=33099,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=449,
+ ["unit"]=0
+ }
+ },
+ [4500]={
+ ["next_chapter"]=4501,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=4500,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1035,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=345157,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33800,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=345157,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=36551,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=450,
+ ["unit"]=0
+ }
+ },
+ [4501]={
+ ["next_chapter"]=4502,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4500,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1035,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=348608,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34148,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=348608,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=36551,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=450,
+ ["unit"]=0
+ }
+ },
+ [4502]={
+ ["next_chapter"]=4503,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4500,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1035,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=352094,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34500,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=352094,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=36551,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=450,
+ ["unit"]=0
+ }
+ },
+ [4503]={
+ ["next_chapter"]=4504,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4500,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1035,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=355615,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34856,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=355615,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=36551,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=450,
+ ["unit"]=0
+ }
+ },
+ [4504]={
+ ["next_chapter"]=4505,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4500,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1035,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=359172,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35215,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=359172,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=36551,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=450,
+ ["unit"]=0
+ }
+ },
+ [4505]={
+ ["next_chapter"]=4506,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4500,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1035,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=362763,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35578,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=362763,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=36551,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=450,
+ ["unit"]=0
+ }
+ },
+ [4506]={
+ ["next_chapter"]=4507,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4500,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1035,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=366391,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35944,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=366391,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=36551,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=450,
+ ["unit"]=0
+ }
+ },
+ [4507]={
+ ["next_chapter"]=4508,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4500,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1035,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=370055,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36314,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=370055,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=36551,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=450,
+ ["unit"]=0
+ }
+ },
+ [4508]={
+ ["next_chapter"]=4509,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4500,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1035,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=373755,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36688,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=373755,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=36551,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=450,
+ ["unit"]=0
+ }
+ },
+ [4509]={
+ ["next_chapter"]=4510,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4500,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1035,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=377493,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37066,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=377493,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=36551,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=450,
+ ["unit"]=0
+ }
+ },
+ [4510]={
+ ["next_chapter"]=4511,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=4500,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1035,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=381268,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37447,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=381268,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=40364,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=451,
+ ["unit"]=0
+ }
+ },
+ [4511]={
+ ["next_chapter"]=4512,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4500,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1035,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=385080,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37832,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=385080,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=40364,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=451,
+ ["unit"]=0
+ }
+ },
+ [4512]={
+ ["next_chapter"]=4513,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4500,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1035,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=388931,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=38221,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=388931,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=40364,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=451,
+ ["unit"]=0
+ }
+ },
+ [4513]={
+ ["next_chapter"]=4514,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4500,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1035,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=392821,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=38614,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=392821,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=40364,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=451,
+ ["unit"]=0
+ }
+ },
+ [4514]={
+ ["next_chapter"]=4515,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4500,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1035,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=396749,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39011,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=396749,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=40364,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=451,
+ ["unit"]=0
+ }
+ },
+ [4515]={
+ ["next_chapter"]=4516,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4500,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1035,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=400716,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39411,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=400716,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=40364,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=451,
+ ["unit"]=0
+ }
+ },
+ [4516]={
+ ["next_chapter"]=4517,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4500,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1035,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=404723,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39816,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=404723,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=40364,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=451,
+ ["unit"]=0
+ }
+ },
+ [4517]={
+ ["next_chapter"]=4518,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4501,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1035,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=408771,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=40225,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=408771,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=40364,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=451,
+ ["unit"]=0
+ }
+ },
+ [4518]={
+ ["next_chapter"]=4519,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4501,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1035,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=412858,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=40638,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=412858,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=40364,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=451,
+ ["unit"]=0
+ }
+ },
+ [4519]={
+ ["next_chapter"]=4520,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4501,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1035,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=416987,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41055,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=416987,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=40364,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=451,
+ ["unit"]=0
+ }
+ },
+ [4520]={
+ ["next_chapter"]=4521,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=4501,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1035,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=421157,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41476,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=421157,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=44575,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=452,
+ ["unit"]=0
+ }
+ },
+ [4521]={
+ ["next_chapter"]=4522,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4501,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1035,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=425368,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41901,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=425368,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=44575,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=452,
+ ["unit"]=0
+ }
+ },
+ [4522]={
+ ["next_chapter"]=4523,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4501,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1035,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=429622,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=42331,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=429622,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=44575,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=452,
+ ["unit"]=0
+ }
+ },
+ [4523]={
+ ["next_chapter"]=4524,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4501,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1035,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=433918,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=42765,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=433918,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=44575,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=452,
+ ["unit"]=0
+ }
+ },
+ [4524]={
+ ["next_chapter"]=4525,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4501,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1035,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=438258,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=43203,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=438258,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=44575,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=452,
+ ["unit"]=0
+ }
+ },
+ [4525]={
+ ["next_chapter"]=4526,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4502,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1035,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=442640,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=43646,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=442640,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=44575,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=452,
+ ["unit"]=0
+ }
+ },
+ [4526]={
+ ["next_chapter"]=4527,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4502,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1035,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=447067,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=44093,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=447067,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=44575,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=452,
+ ["unit"]=0
+ }
+ },
+ [4527]={
+ ["next_chapter"]=4528,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4502,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1035,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=451537,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=44544,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=451537,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=44575,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=452,
+ ["unit"]=0
+ }
+ },
+ [4528]={
+ ["next_chapter"]=4529,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4502,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1036,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=456053,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=45000,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=456053,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=44575,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=452,
+ ["unit"]=0
+ }
+ },
+ [4529]={
+ ["next_chapter"]=4530,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4503,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1036,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=460613,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=45461,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=460613,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=44575,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=452,
+ ["unit"]=0
+ }
+ },
+ [4530]={
+ ["next_chapter"]=4531,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=4503,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1036,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=465219,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=45926,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=465219,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=49227,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=453,
+ ["unit"]=0
+ }
+ },
+ [4531]={
+ ["next_chapter"]=4532,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4503,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1036,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=469871,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=46396,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=469871,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=49227,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=453,
+ ["unit"]=0
+ }
+ },
+ [4532]={
+ ["next_chapter"]=4533,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4504,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1036,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=474570,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=46870,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=474570,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=49227,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=453,
+ ["unit"]=0
+ }
+ },
+ [4533]={
+ ["next_chapter"]=4534,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4504,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1036,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=479316,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=47350,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=479316,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=49227,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=453,
+ ["unit"]=0
+ }
+ },
+ [4534]={
+ ["next_chapter"]=4535,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4504,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1036,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=484109,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=47834,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=484109,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=49227,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=453,
+ ["unit"]=0
+ }
+ },
+ [4535]={
+ ["next_chapter"]=4536,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4505,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1036,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=488950,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=48323,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=488950,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=49227,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=453,
+ ["unit"]=0
+ }
+ },
+ [4536]={
+ ["next_chapter"]=4537,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4505,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1036,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=493840,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=48817,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=493840,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=49227,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=453,
+ ["unit"]=0
+ }
+ },
+ [4537]={
+ ["next_chapter"]=4538,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4505,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1036,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=498778,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=49315,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=498778,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=49227,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=453,
+ ["unit"]=0
+ }
+ },
+ [4538]={
+ ["next_chapter"]=4539,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4506,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1036,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=503766,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=49819,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=503766,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=49227,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=453,
+ ["unit"]=0
+ }
+ },
+ [4539]={
+ ["next_chapter"]=4540,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4506,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1036,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=508803,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=50328,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=508803,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=49227,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=453,
+ ["unit"]=0
+ }
+ },
+ [4540]={
+ ["next_chapter"]=4541,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=4507,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1037,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=513891,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=50842,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=513891,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=54366,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=454,
+ ["unit"]=0
+ }
+ },
+ [4541]={
+ ["next_chapter"]=4542,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4507,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1037,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=519030,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=51361,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=519030,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=54366,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=454,
+ ["unit"]=0
+ }
+ },
+ [4542]={
+ ["next_chapter"]=4543,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4508,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1037,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=524221,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=51885,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=524221,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=54366,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=454,
+ ["unit"]=0
+ }
+ },
+ [4543]={
+ ["next_chapter"]=4544,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4509,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1037,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=529463,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=52415,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=529463,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=54366,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=454,
+ ["unit"]=0
+ }
+ },
+ [4544]={
+ ["next_chapter"]=4545,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4509,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1037,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=534757,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=52949,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=534757,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=54366,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=454,
+ ["unit"]=0
+ }
+ },
+ [4545]={
+ ["next_chapter"]=4546,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4510,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1037,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=540105,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=53489,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=540105,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=54366,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=454,
+ ["unit"]=0
+ }
+ },
+ [4546]={
+ ["next_chapter"]=4547,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4511,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1037,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=545506,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=54035,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=545506,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=54366,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=454,
+ ["unit"]=0
+ }
+ },
+ [4547]={
+ ["next_chapter"]=4548,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4511,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1038,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=550961,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=54586,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=550961,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=54366,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=454,
+ ["unit"]=0
+ }
+ },
+ [4548]={
+ ["next_chapter"]=4549,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4512,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1038,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=556471,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=55142,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=556471,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=54366,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=454,
+ ["unit"]=0
+ }
+ },
+ [4549]={
+ ["next_chapter"]=4550,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4513,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1038,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=562035,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=55704,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=562035,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=54366,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=454,
+ ["unit"]=0
+ }
+ },
+ [4550]={
+ ["next_chapter"]=4551,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=4514,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1038,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=567656,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=56272,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=567656,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=60043,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=455,
+ ["unit"]=0
+ }
+ },
+ [4551]={
+ ["next_chapter"]=4552,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4514,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1038,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=573332,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=56845,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=573332,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=60043,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=455,
+ ["unit"]=0
+ }
+ },
+ [4552]={
+ ["next_chapter"]=4553,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4515,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1038,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=579066,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=57425,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=579066,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=60043,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=455,
+ ["unit"]=0
+ }
+ },
+ [4553]={
+ ["next_chapter"]=4554,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4516,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1039,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=584856,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=58009,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=584856,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=60043,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=455,
+ ["unit"]=0
+ }
+ },
+ [4554]={
+ ["next_chapter"]=4555,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4517,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1039,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=590705,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=58600,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=590705,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=60043,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=455,
+ ["unit"]=0
+ }
+ },
+ [4555]={
+ ["next_chapter"]=4556,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4518,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1039,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=596612,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=59197,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=596612,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=60043,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=455,
+ ["unit"]=0
+ }
+ },
+ [4556]={
+ ["next_chapter"]=4557,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4519,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1039,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=602578,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=59799,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=602578,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=60043,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=455,
+ ["unit"]=0
+ }
+ },
+ [4557]={
+ ["next_chapter"]=4558,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4520,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1040,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=608604,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=60408,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=608604,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=60043,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=455,
+ ["unit"]=0
+ }
+ },
+ [4558]={
+ ["next_chapter"]=4559,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4521,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1040,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=614690,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=61023,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=614690,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=60043,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=455,
+ ["unit"]=0
+ }
+ },
+ [4559]={
+ ["next_chapter"]=4560,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4522,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1040,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=620837,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=61643,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=620837,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=60043,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=455,
+ ["unit"]=0
+ }
+ },
+ [4560]={
+ ["next_chapter"]=4561,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=4523,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1040,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=627045,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=62270,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=627045,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=66313,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=456,
+ ["unit"]=0
+ }
+ },
+ [4561]={
+ ["next_chapter"]=4562,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4525,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1041,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=633316,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=62904,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=633316,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=66313,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=456,
+ ["unit"]=0
+ }
+ },
+ [4562]={
+ ["next_chapter"]=4563,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4526,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1041,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=639649,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=63543,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=639649,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=66313,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=456,
+ ["unit"]=0
+ }
+ },
+ [4563]={
+ ["next_chapter"]=4564,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4527,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1041,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=646045,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=64189,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=646045,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=66313,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=456,
+ ["unit"]=0
+ }
+ },
+ [4564]={
+ ["next_chapter"]=4565,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4528,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1042,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=652506,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=64842,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=652506,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=66313,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=456,
+ ["unit"]=0
+ }
+ },
+ [4565]={
+ ["next_chapter"]=4566,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4530,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1042,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=659031,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=65501,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=659031,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=66313,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=456,
+ ["unit"]=0
+ }
+ },
+ [4566]={
+ ["next_chapter"]=4567,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4531,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1042,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=665621,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=66167,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=665621,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=66313,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=456,
+ ["unit"]=0
+ }
+ },
+ [4567]={
+ ["next_chapter"]=4568,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4532,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1042,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=672277,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=66839,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=672277,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=66313,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=456,
+ ["unit"]=0
+ }
+ },
+ [4568]={
+ ["next_chapter"]=4569,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4534,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1043,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=679000,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=67518,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=679000,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=66313,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=456,
+ ["unit"]=0
+ }
+ },
+ [4569]={
+ ["next_chapter"]=4570,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4535,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1043,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=685790,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=68204,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=685790,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=66313,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=456,
+ ["unit"]=0
+ }
+ },
+ [4570]={
+ ["next_chapter"]=4571,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=4537,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1044,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=692648,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=68896,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=692648,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=73240,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=457,
+ ["unit"]=0
+ }
+ },
+ [4571]={
+ ["next_chapter"]=4572,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4539,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1044,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=699574,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=69596,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=699574,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=73240,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=457,
+ ["unit"]=0
+ }
+ },
+ [4572]={
+ ["next_chapter"]=4573,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4540,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1044,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=706570,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=70302,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=706570,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=73240,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=457,
+ ["unit"]=0
+ }
+ },
+ [4573]={
+ ["next_chapter"]=4574,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4542,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1045,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=713636,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=71016,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=713636,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=73240,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=457,
+ ["unit"]=0
+ }
+ },
+ [4574]={
+ ["next_chapter"]=4575,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4544,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1045,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=720772,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=71737,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=720772,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=73240,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=457,
+ ["unit"]=0
+ }
+ },
+ [4575]={
+ ["next_chapter"]=4576,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4546,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1045,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=727980,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=72465,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=727980,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=73240,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=457,
+ ["unit"]=0
+ }
+ },
+ [4576]={
+ ["next_chapter"]=4577,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4547,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1046,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=735260,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=73200,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=735260,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=73240,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=457,
+ ["unit"]=0
+ }
+ },
+ [4577]={
+ ["next_chapter"]=4578,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4549,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1046,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=742612,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=73943,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=742612,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=73240,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=457,
+ ["unit"]=0
+ }
+ },
+ [4578]={
+ ["next_chapter"]=4579,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4551,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1047,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=750039,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=74693,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=750039,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=73240,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=457,
+ ["unit"]=0
+ }
+ },
+ [4579]={
+ ["next_chapter"]=4580,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4553,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1047,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=757539,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=75450,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=757539,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=73240,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=457,
+ ["unit"]=0
+ }
+ },
+ [4580]={
+ ["next_chapter"]=4581,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=4555,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1048,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=765114,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=76215,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=765114,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=80891,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=458,
+ ["unit"]=0
+ }
+ },
+ [4581]={
+ ["next_chapter"]=4582,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4557,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1048,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=772765,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=76988,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=772765,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=80891,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=458,
+ ["unit"]=0
+ }
+ },
+ [4582]={
+ ["next_chapter"]=4583,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4560,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1049,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=780493,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=77769,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=780493,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=80891,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=458,
+ ["unit"]=0
+ }
+ },
+ [4583]={
+ ["next_chapter"]=4584,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4562,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1049,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=788298,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=78557,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=788298,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=80891,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=458,
+ ["unit"]=0
+ }
+ },
+ [4584]={
+ ["next_chapter"]=4585,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4564,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1050,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=796181,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=79353,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=796181,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=80891,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=458,
+ ["unit"]=0
+ }
+ },
+ [4585]={
+ ["next_chapter"]=4586,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4566,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1050,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=804143,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=80157,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=804143,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=80891,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=458,
+ ["unit"]=0
+ }
+ },
+ [4586]={
+ ["next_chapter"]=4587,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4569,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1051,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=812184,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=80969,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=812184,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=80891,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=458,
+ ["unit"]=0
+ }
+ },
+ [4587]={
+ ["next_chapter"]=4588,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4571,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1051,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=820306,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=81790,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=820306,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=80891,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=458,
+ ["unit"]=0
+ }
+ },
+ [4588]={
+ ["next_chapter"]=4589,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4574,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1052,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=828509,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=82618,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=828509,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=80891,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=458,
+ ["unit"]=0
+ }
+ },
+ [4589]={
+ ["next_chapter"]=4590,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4576,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1053,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=836794,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=83455,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=836794,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=80891,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=458,
+ ["unit"]=0
+ }
+ },
+ [4590]={
+ ["next_chapter"]=4591,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=4579,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1053,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=845162,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=84300,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=845162,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=89343,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=459,
+ ["unit"]=0
+ }
+ },
+ [4591]={
+ ["next_chapter"]=4592,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4581,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1054,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=853614,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=85154,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=853614,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=89343,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=459,
+ ["unit"]=0
+ }
+ },
+ [4592]={
+ ["next_chapter"]=4593,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4584,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1054,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=862150,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=86016,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=862150,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=89343,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=459,
+ ["unit"]=0
+ }
+ },
+ [4593]={
+ ["next_chapter"]=4594,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4587,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1055,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=870771,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=86887,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=870771,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=89343,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=459,
+ ["unit"]=0
+ }
+ },
+ [4594]={
+ ["next_chapter"]=4595,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4590,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1056,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=879479,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=87766,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=879479,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=89343,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=459,
+ ["unit"]=0
+ }
+ },
+ [4595]={
+ ["next_chapter"]=4596,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4593,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1056,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=888274,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=88655,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=888274,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=89343,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=459,
+ ["unit"]=0
+ }
+ },
+ [4596]={
+ ["next_chapter"]=4597,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4596,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1057,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=897157,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=89552,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=897157,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=89343,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=459,
+ ["unit"]=0
+ }
+ },
+ [4597]={
+ ["next_chapter"]=4598,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4599,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1058,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=906128,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=90458,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=906128,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=89343,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=459,
+ ["unit"]=0
+ }
+ },
+ [4598]={
+ ["next_chapter"]=4599,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4602,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1058,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=915190,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=91373,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=915190,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=89343,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=459,
+ ["unit"]=0
+ }
+ },
+ [4599]={
+ ["next_chapter"]=4600,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4605,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1059,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=924341,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=92297,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=924341,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=89343,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=459,
+ ["unit"]=0
+ }
+ },
+ [4600]={
+ ["next_chapter"]=4601,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=4608,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1060,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=933585,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=93231,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=933585,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=98678,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=460,
+ ["unit"]=0
+ }
+ },
+ [4601]={
+ ["next_chapter"]=4602,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4611,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1061,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=942921,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=94174,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=942921,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=98678,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=460,
+ ["unit"]=0
+ }
+ },
+ [4602]={
+ ["next_chapter"]=4603,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4615,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1061,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=952350,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=95126,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=952350,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=98678,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=460,
+ ["unit"]=0
+ }
+ },
+ [4603]={
+ ["next_chapter"]=4604,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4618,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1062,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=961873,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=96088,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=961873,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=98678,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=460,
+ ["unit"]=0
+ }
+ },
+ [4604]={
+ ["next_chapter"]=4605,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4621,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1063,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=971492,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=97060,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=971492,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=98678,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=460,
+ ["unit"]=0
+ }
+ },
+ [4605]={
+ ["next_chapter"]=4606,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4625,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1064,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=981207,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=98041,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=981207,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=98678,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=460,
+ ["unit"]=0
+ }
+ },
+ [4606]={
+ ["next_chapter"]=4607,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4629,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1065,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=991019,
+ ["unit"]=5
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=99032,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=991019,
+ ["unit"]=5
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=98678,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=460,
+ ["unit"]=0
+ }
+ },
+ [4607]={
+ ["next_chapter"]=4608,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4632,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1065,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1001,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=100033,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1001,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=98678,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=460,
+ ["unit"]=0
+ }
+ },
+ [4608]={
+ ["next_chapter"]=4609,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4636,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1066,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1011,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=101044,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1011,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=98678,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=460,
+ ["unit"]=0
+ }
+ },
+ [4609]={
+ ["next_chapter"]=4610,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4640,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1067,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1021,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=102065,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1021,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=98678,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=460,
+ ["unit"]=0
+ }
+ },
+ [4610]={
+ ["next_chapter"]=4611,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=4644,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1068,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1031,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=103096,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1031,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=108991,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=461,
+ ["unit"]=0
+ }
+ },
+ [4611]={
+ ["next_chapter"]=4612,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4648,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1069,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1042,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=104138,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1042,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=108991,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=461,
+ ["unit"]=0
+ }
+ },
+ [4612]={
+ ["next_chapter"]=4613,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4652,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1070,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1052,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=105190,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1052,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=108991,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=461,
+ ["unit"]=0
+ }
+ },
+ [4613]={
+ ["next_chapter"]=4614,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4656,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1071,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1063,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=106252,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1063,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=108991,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=461,
+ ["unit"]=0
+ }
+ },
+ [4614]={
+ ["next_chapter"]=4615,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4660,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1072,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1073,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=107325,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1073,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=108991,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=461,
+ ["unit"]=0
+ }
+ },
+ [4615]={
+ ["next_chapter"]=4616,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4664,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1073,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1084,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=108409,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1084,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=108991,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=461,
+ ["unit"]=0
+ }
+ },
+ [4616]={
+ ["next_chapter"]=4617,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4669,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1074,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1095,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=109504,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1095,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=108991,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=461,
+ ["unit"]=0
+ }
+ },
+ [4617]={
+ ["next_chapter"]=4618,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4673,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1075,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1106,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=110609,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1106,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=108991,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=461,
+ ["unit"]=0
+ }
+ },
+ [4618]={
+ ["next_chapter"]=4619,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4677,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1076,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1117,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=111726,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1117,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=108991,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=461,
+ ["unit"]=0
+ }
+ },
+ [4619]={
+ ["next_chapter"]=4620,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4682,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1077,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1128,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=112854,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1128,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=108991,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=461,
+ ["unit"]=0
+ }
+ },
+ [4620]={
+ ["next_chapter"]=4621,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=4687,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1078,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1139,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=113993,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1139,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=120383,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=462,
+ ["unit"]=0
+ }
+ },
+ [4621]={
+ ["next_chapter"]=4622,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4691,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1079,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1151,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=115144,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1151,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=120383,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=462,
+ ["unit"]=0
+ }
+ },
+ [4622]={
+ ["next_chapter"]=4623,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4696,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1080,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1162,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=116306,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1162,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=120383,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=462,
+ ["unit"]=0
+ }
+ },
+ [4623]={
+ ["next_chapter"]=4624,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4701,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1081,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1174,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=117479,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1174,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=120383,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=462,
+ ["unit"]=0
+ }
+ },
+ [4624]={
+ ["next_chapter"]=4625,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4706,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1082,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1185,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=118665,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1185,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=120383,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=462,
+ ["unit"]=0
+ }
+ },
+ [4625]={
+ ["next_chapter"]=4626,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4711,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1084,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1197,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=119862,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1197,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=120383,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=462,
+ ["unit"]=0
+ }
+ },
+ [4626]={
+ ["next_chapter"]=4627,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4716,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1085,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1209,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=121071,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1209,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=120383,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=462,
+ ["unit"]=0
+ }
+ },
+ [4627]={
+ ["next_chapter"]=4628,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4721,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1086,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1221,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=122293,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1221,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=120383,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=462,
+ ["unit"]=0
+ }
+ },
+ [4628]={
+ ["next_chapter"]=4629,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4726,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1087,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1234,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=123526,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1234,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=120383,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=462,
+ ["unit"]=0
+ }
+ },
+ [4629]={
+ ["next_chapter"]=4630,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4732,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1088,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1246,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=124772,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1246,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=120383,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=462,
+ ["unit"]=0
+ }
+ },
+ [4630]={
+ ["next_chapter"]=4631,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=4737,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1090,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1258,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=126030,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1258,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=132966,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=463,
+ ["unit"]=0
+ }
+ },
+ [4631]={
+ ["next_chapter"]=4632,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4743,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1091,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1271,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=127301,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1271,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=132966,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=463,
+ ["unit"]=0
+ }
+ },
+ [4632]={
+ ["next_chapter"]=4633,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4748,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1092,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1284,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=128585,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1284,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=132966,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=463,
+ ["unit"]=0
+ }
+ },
+ [4633]={
+ ["next_chapter"]=4634,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4754,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1093,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1296,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=129881,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1296,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=132966,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=463,
+ ["unit"]=0
+ }
+ },
+ [4634]={
+ ["next_chapter"]=4635,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4760,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1095,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1309,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=131191,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1309,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=132966,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=463,
+ ["unit"]=0
+ }
+ },
+ [4635]={
+ ["next_chapter"]=4636,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4766,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1096,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1323,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=132513,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1323,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=132966,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=463,
+ ["unit"]=0
+ }
+ },
+ [4636]={
+ ["next_chapter"]=4637,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4772,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1097,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1336,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=133849,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1336,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=132966,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=463,
+ ["unit"]=0
+ }
+ },
+ [4637]={
+ ["next_chapter"]=4638,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4778,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1099,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1349,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=135198,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1349,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=132966,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=463,
+ ["unit"]=0
+ }
+ },
+ [4638]={
+ ["next_chapter"]=4639,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4784,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1100,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1363,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=136561,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1363,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=132966,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=463,
+ ["unit"]=0
+ }
+ },
+ [4639]={
+ ["next_chapter"]=4640,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4790,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1102,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1376,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=137937,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1376,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=132966,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=463,
+ ["unit"]=0
+ }
+ },
+ [4640]={
+ ["next_chapter"]=4641,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=4796,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1103,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1390,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=139327,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1390,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=146866,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=464,
+ ["unit"]=0
+ }
+ },
+ [4641]={
+ ["next_chapter"]=4642,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4803,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1105,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1404,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=140731,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1404,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=146866,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=464,
+ ["unit"]=0
+ }
+ },
+ [4642]={
+ ["next_chapter"]=4643,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4809,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1106,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1418,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=142149,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1418,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=146866,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=464,
+ ["unit"]=0
+ }
+ },
+ [4643]={
+ ["next_chapter"]=4644,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4816,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1108,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1432,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=143581,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1432,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=146866,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=464,
+ ["unit"]=0
+ }
+ },
+ [4644]={
+ ["next_chapter"]=4645,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4822,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1109,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1446,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=145027,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1446,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=146866,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=464,
+ ["unit"]=0
+ }
+ },
+ [4645]={
+ ["next_chapter"]=4646,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4829,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1111,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1461,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=146488,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1461,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=146866,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=464,
+ ["unit"]=0
+ }
+ },
+ [4646]={
+ ["next_chapter"]=4647,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4836,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1112,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1475,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=147964,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1475,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=146866,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=464,
+ ["unit"]=0
+ }
+ },
+ [4647]={
+ ["next_chapter"]=4648,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4843,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1114,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1490,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=149454,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1490,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=146866,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=464,
+ ["unit"]=0
+ }
+ },
+ [4648]={
+ ["next_chapter"]=4649,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4850,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1116,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1505,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=150959,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1505,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=146866,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=464,
+ ["unit"]=0
+ }
+ },
+ [4649]={
+ ["next_chapter"]=4650,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4857,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1117,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1520,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=152479,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1520,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=146866,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=464,
+ ["unit"]=0
+ }
+ },
+ [4650]={
+ ["next_chapter"]=4651,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=4865,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1119,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1535,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=154015,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1535,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=162220,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=465,
+ ["unit"]=0
+ }
+ },
+ [4651]={
+ ["next_chapter"]=4652,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4872,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1121,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1551,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=155565,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1551,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=162220,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=465,
+ ["unit"]=0
+ }
+ },
+ [4652]={
+ ["next_chapter"]=4653,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4879,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1122,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1566,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=157132,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1566,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=162220,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=465,
+ ["unit"]=0
+ }
+ },
+ [4653]={
+ ["next_chapter"]=4654,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4887,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1124,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1582,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=158714,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1582,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=162220,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=465,
+ ["unit"]=0
+ }
+ },
+ [4654]={
+ ["next_chapter"]=4655,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4894,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1126,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1598,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=160311,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1598,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=162220,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=465,
+ ["unit"]=0
+ }
+ },
+ [4655]={
+ ["next_chapter"]=4656,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4902,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1128,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1614,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=161925,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1614,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=162220,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=465,
+ ["unit"]=0
+ }
+ },
+ [4656]={
+ ["next_chapter"]=4657,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4910,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1129,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1630,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=163555,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1630,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=162220,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=465,
+ ["unit"]=0
+ }
+ },
+ [4657]={
+ ["next_chapter"]=4658,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4918,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1131,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1646,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=165201,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1646,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=162220,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=465,
+ ["unit"]=0
+ }
+ },
+ [4658]={
+ ["next_chapter"]=4659,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4926,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1133,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1663,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=166864,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1663,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=162220,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=465,
+ ["unit"]=0
+ }
+ },
+ [4659]={
+ ["next_chapter"]=4660,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4934,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1135,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1679,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=168543,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1679,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=162220,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=465,
+ ["unit"]=0
+ }
+ },
+ [4660]={
+ ["next_chapter"]=4661,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=4942,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1137,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1696,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=170239,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1696,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=179180,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=466,
+ ["unit"]=0
+ }
+ },
+ [4661]={
+ ["next_chapter"]=4662,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4951,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1139,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1713,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=171952,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1713,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=179180,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=466,
+ ["unit"]=0
+ }
+ },
+ [4662]={
+ ["next_chapter"]=4663,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4959,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1141,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1730,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=173682,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1730,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=179180,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=466,
+ ["unit"]=0
+ }
+ },
+ [4663]={
+ ["next_chapter"]=4664,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4968,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1143,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1747,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=175430,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1747,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=179180,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=466,
+ ["unit"]=0
+ }
+ },
+ [4664]={
+ ["next_chapter"]=4665,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4976,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1145,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1765,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=177194,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1765,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=179180,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=466,
+ ["unit"]=0
+ }
+ },
+ [4665]={
+ ["next_chapter"]=4666,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4985,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1147,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1783,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=178977,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1783,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=179180,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=466,
+ ["unit"]=0
+ }
+ },
+ [4666]={
+ ["next_chapter"]=4667,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4994,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1149,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1800,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=180777,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1800,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=179180,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=466,
+ ["unit"]=0
+ }
+ },
+ [4667]={
+ ["next_chapter"]=4668,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5003,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1151,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1818,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=182596,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1818,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=179180,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=466,
+ ["unit"]=0
+ }
+ },
+ [4668]={
+ ["next_chapter"]=4669,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5012,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1153,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1837,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=184432,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1837,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=179180,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=466,
+ ["unit"]=0
+ }
+ },
+ [4669]={
+ ["next_chapter"]=4670,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5021,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1155,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1855,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=186287,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1855,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=179180,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=466,
+ ["unit"]=0
+ }
+ },
+ [4670]={
+ ["next_chapter"]=4671,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=5031,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1157,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1873,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=188161,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1873,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=197915,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=467,
+ ["unit"]=0
+ }
+ },
+ [4671]={
+ ["next_chapter"]=4672,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5040,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1159,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1892,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=190053,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1892,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=197915,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=467,
+ ["unit"]=0
+ }
+ },
+ [4672]={
+ ["next_chapter"]=4673,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5050,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1161,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1911,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=191964,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1911,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=197915,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=467,
+ ["unit"]=0
+ }
+ },
+ [4673]={
+ ["next_chapter"]=4674,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5059,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1164,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1930,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=193894,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1930,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=197915,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=467,
+ ["unit"]=0
+ }
+ },
+ [4674]={
+ ["next_chapter"]=4675,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5069,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1166,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1950,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=195844,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1950,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=197915,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=467,
+ ["unit"]=0
+ }
+ },
+ [4675]={
+ ["next_chapter"]=4676,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5079,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1168,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1969,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=197813,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1969,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=197915,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=467,
+ ["unit"]=0
+ }
+ },
+ [4676]={
+ ["next_chapter"]=4677,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5089,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1170,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1989,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=199802,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=1989,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=197915,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=467,
+ ["unit"]=0
+ }
+ },
+ [4677]={
+ ["next_chapter"]=4678,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5099,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1173,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2009,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=201810,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=2009,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=197915,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=467,
+ ["unit"]=0
+ }
+ },
+ [4678]={
+ ["next_chapter"]=4679,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5109,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1175,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2029,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=203839,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=2029,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=197915,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=467,
+ ["unit"]=0
+ }
+ },
+ [4679]={
+ ["next_chapter"]=4680,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5119,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1177,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2049,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=205888,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=2049,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=197915,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=467,
+ ["unit"]=0
+ }
+ },
+ [4680]={
+ ["next_chapter"]=4681,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=5130,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1180,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2069,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=207958,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=2069,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=218610,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=468,
+ ["unit"]=0
+ }
+ },
+ [4681]={
+ ["next_chapter"]=4682,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5140,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1182,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2090,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=210048,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=2090,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=218610,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=468,
+ ["unit"]=0
+ }
+ },
+ [4682]={
+ ["next_chapter"]=4683,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5151,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1185,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2111,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=212159,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=2111,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=218610,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=468,
+ ["unit"]=0
+ }
+ },
+ [4683]={
+ ["next_chapter"]=4684,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5162,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1187,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2132,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=214291,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=2132,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=218610,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=468,
+ ["unit"]=0
+ }
+ },
+ [4684]={
+ ["next_chapter"]=4685,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5173,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1190,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2154,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=216445,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=2154,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=218610,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=468,
+ ["unit"]=0
+ }
+ },
+ [4685]={
+ ["next_chapter"]=4686,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5184,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1192,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2175,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=218620,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=2175,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=218610,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=468,
+ ["unit"]=0
+ }
+ },
+ [4686]={
+ ["next_chapter"]=4687,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5195,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1195,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2197,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=220816,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=2197,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=218610,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=468,
+ ["unit"]=0
+ }
+ },
+ [4687]={
+ ["next_chapter"]=4688,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5206,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1197,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2219,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=223035,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=2219,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=218610,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=468,
+ ["unit"]=0
+ }
+ },
+ [4688]={
+ ["next_chapter"]=4689,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5218,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1200,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2241,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=225276,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=2241,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=218610,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=468,
+ ["unit"]=0
+ }
+ },
+ [4689]={
+ ["next_chapter"]=4690,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5229,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1203,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2263,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=227540,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=2263,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=218610,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=468,
+ ["unit"]=0
+ }
+ },
+ [4690]={
+ ["next_chapter"]=4691,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=5241,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1205,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2286,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=229826,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=2286,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=241470,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=469,
+ ["unit"]=0
+ }
+ },
+ [4691]={
+ ["next_chapter"]=4692,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5253,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1208,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2309,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=232134,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=2309,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=241470,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=469,
+ ["unit"]=0
+ }
+ },
+ [4692]={
+ ["next_chapter"]=4693,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5264,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1211,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2332,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=234466,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=2332,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=241470,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=469,
+ ["unit"]=0
+ }
+ },
+ [4693]={
+ ["next_chapter"]=4694,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5276,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1214,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2355,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=236822,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=2355,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=241470,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=469,
+ ["unit"]=0
+ }
+ },
+ [4694]={
+ ["next_chapter"]=4695,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5289,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1216,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2379,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=239200,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=2379,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=241470,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=469,
+ ["unit"]=0
+ }
+ },
+ [4695]={
+ ["next_chapter"]=4696,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5301,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1219,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2403,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=241603,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=2403,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=241470,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=469,
+ ["unit"]=0
+ }
+ },
+ [4696]={
+ ["next_chapter"]=4697,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5313,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1222,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2427,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=244030,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=2427,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=241470,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=469,
+ ["unit"]=0
+ }
+ },
+ [4697]={
+ ["next_chapter"]=4698,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5326,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1225,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2451,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=246481,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=2451,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=241470,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=469,
+ ["unit"]=0
+ }
+ },
+ [4698]={
+ ["next_chapter"]=4699,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5338,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1228,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2475,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=248956,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=2475,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=241470,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=469,
+ ["unit"]=0
+ }
+ },
+ [4699]={
+ ["next_chapter"]=4700,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5351,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1231,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2500,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=251456,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=2500,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=241470,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=469,
+ ["unit"]=0
+ }
+ },
+ [4700]={
+ ["next_chapter"]=4701,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=5364,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1234,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2525,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=253981,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=2525,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=266722,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=470,
+ ["unit"]=0
+ }
+ },
+ [4701]={
+ ["next_chapter"]=4702,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5377,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1237,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2550,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=256532,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=2550,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=266722,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=470,
+ ["unit"]=0
+ }
+ },
+ [4702]={
+ ["next_chapter"]=4703,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5390,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1240,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2576,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=259108,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=2576,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=266722,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=470,
+ ["unit"]=0
+ }
+ },
+ [4703]={
+ ["next_chapter"]=4704,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5403,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1243,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2602,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=261709,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=2602,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=266722,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=470,
+ ["unit"]=0
+ }
+ },
+ [4704]={
+ ["next_chapter"]=4705,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5417,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1246,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2628,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=264337,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=2628,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=266722,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=470,
+ ["unit"]=0
+ }
+ },
+ [4705]={
+ ["next_chapter"]=4706,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5430,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1249,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2654,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=266991,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=2654,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=266722,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=470,
+ ["unit"]=0
+ }
+ },
+ [4706]={
+ ["next_chapter"]=4707,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5444,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1252,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2681,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=269672,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=2681,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=266722,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=470,
+ ["unit"]=0
+ }
+ },
+ [4707]={
+ ["next_chapter"]=4708,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5458,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1255,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2707,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=272379,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=2707,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=266722,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=470,
+ ["unit"]=0
+ }
+ },
+ [4708]={
+ ["next_chapter"]=4709,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5472,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1259,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2734,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=275113,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=2734,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=266722,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=470,
+ ["unit"]=0
+ }
+ },
+ [4709]={
+ ["next_chapter"]=4710,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5486,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1262,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2762,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=277875,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=2762,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=266722,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=470,
+ ["unit"]=0
+ }
+ },
+ [4710]={
+ ["next_chapter"]=4711,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=5500,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1265,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2789,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=280664,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=2789,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=294615,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=471,
+ ["unit"]=0
+ }
+ },
+ [4711]={
+ ["next_chapter"]=4712,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5515,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1268,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2817,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=283482,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=2817,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=294615,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=471,
+ ["unit"]=0
+ }
+ },
+ [4712]={
+ ["next_chapter"]=4713,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5529,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1272,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2845,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=286327,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=2845,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=294615,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=471,
+ ["unit"]=0
+ }
+ },
+ [4713]={
+ ["next_chapter"]=4714,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5544,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1275,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2874,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=289201,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=2874,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=294615,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=471,
+ ["unit"]=0
+ }
+ },
+ [4714]={
+ ["next_chapter"]=4715,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5558,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1278,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2903,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=292104,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=2903,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=294615,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=471,
+ ["unit"]=0
+ }
+ },
+ [4715]={
+ ["next_chapter"]=4716,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5573,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1282,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2932,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=295035,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=2932,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=294615,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=471,
+ ["unit"]=0
+ }
+ },
+ [4716]={
+ ["next_chapter"]=4717,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5588,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1285,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2961,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=297996,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=2961,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=294615,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=471,
+ ["unit"]=0
+ }
+ },
+ [4717]={
+ ["next_chapter"]=4718,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5604,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1289,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2991,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=300987,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=2991,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=294615,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=471,
+ ["unit"]=0
+ }
+ },
+ [4718]={
+ ["next_chapter"]=4719,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5619,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1292,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3020,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=304007,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=3020,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=294615,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=471,
+ ["unit"]=0
+ }
+ },
+ [4719]={
+ ["next_chapter"]=4720,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5634,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1296,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3051,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=307058,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=3051,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=294615,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=471,
+ ["unit"]=0
+ }
+ },
+ [4720]={
+ ["next_chapter"]=4721,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=5650,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1299,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3081,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=310139,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=3081,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=325427,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=472,
+ ["unit"]=0
+ }
+ },
+ [4721]={
+ ["next_chapter"]=4722,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5666,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1303,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3112,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=313251,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=3112,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=325427,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=472,
+ ["unit"]=0
+ }
+ },
+ [4722]={
+ ["next_chapter"]=4723,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5682,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1307,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3143,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=316394,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=3143,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=325427,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=472,
+ ["unit"]=0
+ }
+ },
+ [4723]={
+ ["next_chapter"]=4724,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5698,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1310,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3175,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=319569,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=3175,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=325427,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=472,
+ ["unit"]=0
+ }
+ },
+ [4724]={
+ ["next_chapter"]=4725,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5714,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1314,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3206,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=322775,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=3206,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=325427,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=472,
+ ["unit"]=0
+ }
+ },
+ [4725]={
+ ["next_chapter"]=4726,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5730,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1318,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3238,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=326014,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=3238,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=325427,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=472,
+ ["unit"]=0
+ }
+ },
+ [4726]={
+ ["next_chapter"]=4727,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5747,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1322,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3271,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=329284,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=3271,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=325427,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=472,
+ ["unit"]=0
+ }
+ },
+ [4727]={
+ ["next_chapter"]=4728,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5763,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1326,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3303,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=332588,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=3303,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=325427,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=472,
+ ["unit"]=0
+ }
+ },
+ [4728]={
+ ["next_chapter"]=4729,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5780,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1329,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3336,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=335924,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=3336,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=325427,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=472,
+ ["unit"]=0
+ }
+ },
+ [4729]={
+ ["next_chapter"]=4730,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5797,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1333,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3370,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=339294,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=3370,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=325427,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=472,
+ ["unit"]=0
+ }
+ },
+ [4730]={
+ ["next_chapter"]=4731,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=5814,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1337,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3404,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=342698,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=3404,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=359463,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=473,
+ ["unit"]=0
+ }
+ },
+ [4731]={
+ ["next_chapter"]=4732,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5831,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1341,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3438,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=346135,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=3438,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=359463,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=473,
+ ["unit"]=0
+ }
+ },
+ [4732]={
+ ["next_chapter"]=4733,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5849,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1345,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3472,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=349607,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=3472,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=359463,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=473,
+ ["unit"]=0
+ }
+ },
+ [4733]={
+ ["next_chapter"]=4734,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5866,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1349,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3507,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=353114,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=3507,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=359463,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=473,
+ ["unit"]=0
+ }
+ },
+ [4734]={
+ ["next_chapter"]=4735,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5884,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1353,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3542,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=356656,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=3542,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=359463,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=473,
+ ["unit"]=0
+ }
+ },
+ [4735]={
+ ["next_chapter"]=4736,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5902,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1357,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3577,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=360233,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=3577,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=359463,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=473,
+ ["unit"]=0
+ }
+ },
+ [4736]={
+ ["next_chapter"]=4737,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5920,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1362,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3613,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=363846,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=3613,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=359463,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=473,
+ ["unit"]=0
+ }
+ },
+ [4737]={
+ ["next_chapter"]=4738,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5938,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1366,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3649,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=367495,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=3649,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=359463,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=473,
+ ["unit"]=0
+ }
+ },
+ [4738]={
+ ["next_chapter"]=4739,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5956,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1370,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3686,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=371180,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=3686,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=359463,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=473,
+ ["unit"]=0
+ }
+ },
+ [4739]={
+ ["next_chapter"]=4740,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5974,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1374,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3722,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=374903,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=3722,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=359463,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=473,
+ ["unit"]=0
+ }
+ },
+ [4740]={
+ ["next_chapter"]=4741,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=5993,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1378,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3760,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=378662,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=3760,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=397059,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=474,
+ ["unit"]=0
+ }
+ },
+ [4741]={
+ ["next_chapter"]=4742,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6012,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1383,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3797,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=382460,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=3797,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=397059,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=474,
+ ["unit"]=0
+ }
+ },
+ [4742]={
+ ["next_chapter"]=4743,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6031,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1387,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3835,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=386295,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=3835,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=397059,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=474,
+ ["unit"]=0
+ }
+ },
+ [4743]={
+ ["next_chapter"]=4744,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6050,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1391,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3874,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=390168,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=3874,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=397059,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=474,
+ ["unit"]=0
+ }
+ },
+ [4744]={
+ ["next_chapter"]=4745,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6069,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1396,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3912,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=394081,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=3912,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=397059,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=474,
+ ["unit"]=0
+ }
+ },
+ [4745]={
+ ["next_chapter"]=4746,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6088,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1400,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3951,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=398032,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=3951,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=397059,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=474,
+ ["unit"]=0
+ }
+ },
+ [4746]={
+ ["next_chapter"]=4747,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6108,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1405,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3991,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=402023,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=3991,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=397059,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=474,
+ ["unit"]=0
+ }
+ },
+ [4747]={
+ ["next_chapter"]=4748,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6127,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1409,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4031,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=406054,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=4031,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=397059,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=474,
+ ["unit"]=0
+ }
+ },
+ [4748]={
+ ["next_chapter"]=4749,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6147,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1414,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4071,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=410125,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=4071,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=397059,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=474,
+ ["unit"]=0
+ }
+ },
+ [4749]={
+ ["next_chapter"]=4750,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6167,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1418,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4112,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=414237,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=4112,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=397059,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=474,
+ ["unit"]=0
+ }
+ },
+ [4750]={
+ ["next_chapter"]=4751,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=6188,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1423,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4153,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=418390,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=4153,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=438589,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=475,
+ ["unit"]=0
+ }
+ },
+ [4751]={
+ ["next_chapter"]=4752,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6208,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1428,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4195,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=422584,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=4195,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=438589,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=475,
+ ["unit"]=0
+ }
+ },
+ [4752]={
+ ["next_chapter"]=4753,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6228,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1433,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4236,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=426821,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=4236,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=438589,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=475,
+ ["unit"]=0
+ }
+ },
+ [4753]={
+ ["next_chapter"]=4754,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6249,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1437,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4279,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=431100,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=4279,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=438589,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=475,
+ ["unit"]=0
+ }
+ },
+ [4754]={
+ ["next_chapter"]=4755,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6270,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1442,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4322,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=435421,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=4322,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=438589,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=475,
+ ["unit"]=0
+ }
+ },
+ [4755]={
+ ["next_chapter"]=4756,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6291,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1447,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4365,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=439786,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=4365,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=438589,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=475,
+ ["unit"]=0
+ }
+ },
+ [4756]={
+ ["next_chapter"]=4757,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6312,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1452,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4408,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=444195,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=4408,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=438589,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=475,
+ ["unit"]=0
+ }
+ },
+ [4757]={
+ ["next_chapter"]=4758,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6333,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1457,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4453,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=448647,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=4453,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=438589,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=475,
+ ["unit"]=0
+ }
+ },
+ [4758]={
+ ["next_chapter"]=4759,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6355,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1462,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4497,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=453144,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=4497,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=438589,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=475,
+ ["unit"]=0
+ }
+ },
+ [4759]={
+ ["next_chapter"]=4760,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6376,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1467,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4542,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=457686,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=4542,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=438589,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=475,
+ ["unit"]=0
+ }
+ },
+ [4760]={
+ ["next_chapter"]=4761,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=6398,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1472,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4587,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=462274,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=4587,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=484464,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=476,
+ ["unit"]=0
+ }
+ },
+ [4761]={
+ ["next_chapter"]=4762,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6420,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1477,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4633,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=466907,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=4633,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=484464,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=476,
+ ["unit"]=0
+ }
+ },
+ [4762]={
+ ["next_chapter"]=4763,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6442,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1482,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4680,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=471587,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=4680,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=484464,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=476,
+ ["unit"]=0
+ }
+ },
+ [4763]={
+ ["next_chapter"]=4764,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6465,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1487,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4726,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=476313,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=4726,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=484464,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=476,
+ ["unit"]=0
+ }
+ },
+ [4764]={
+ ["next_chapter"]=4765,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6487,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1492,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4774,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=481087,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=4774,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=484464,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=476,
+ ["unit"]=0
+ }
+ },
+ [4765]={
+ ["next_chapter"]=4766,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6510,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1497,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4821,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=485908,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=4821,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=484464,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=476,
+ ["unit"]=0
+ }
+ },
+ [4766]={
+ ["next_chapter"]=4767,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6533,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1503,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4870,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=490778,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=4870,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=484464,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=476,
+ ["unit"]=0
+ }
+ },
+ [4767]={
+ ["next_chapter"]=4768,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6556,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1508,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4918,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=495697,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=4918,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=484464,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=476,
+ ["unit"]=0
+ }
+ },
+ [4768]={
+ ["next_chapter"]=4769,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6579,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1513,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4968,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=500664,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=4968,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=484464,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=476,
+ ["unit"]=0
+ }
+ },
+ [4769]={
+ ["next_chapter"]=4770,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6602,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1519,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5017,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=505681,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=5017,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=484464,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=476,
+ ["unit"]=0
+ }
+ },
+ [4770]={
+ ["next_chapter"]=4771,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=6626,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1524,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5067,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=510749,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=5067,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=535138,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=477,
+ ["unit"]=0
+ }
+ },
+ [4771]={
+ ["next_chapter"]=4772,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6649,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1529,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5118,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=515867,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=5118,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=535138,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=477,
+ ["unit"]=0
+ }
+ },
+ [4772]={
+ ["next_chapter"]=4773,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6673,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1535,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5169,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=521036,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=5169,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=535138,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=477,
+ ["unit"]=0
+ }
+ },
+ [4773]={
+ ["next_chapter"]=4774,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6697,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1540,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5221,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=526257,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=5221,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=535138,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=477,
+ ["unit"]=0
+ }
+ },
+ [4774]={
+ ["next_chapter"]=4775,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6722,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1546,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5273,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=531530,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=5273,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=535138,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=477,
+ ["unit"]=0
+ }
+ },
+ [4775]={
+ ["next_chapter"]=4776,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6746,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1552,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5326,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=536856,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=5326,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=535138,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=477,
+ ["unit"]=0
+ }
+ },
+ [4776]={
+ ["next_chapter"]=4777,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6771,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1557,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5379,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=542235,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=5379,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=535138,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=477,
+ ["unit"]=0
+ }
+ },
+ [4777]={
+ ["next_chapter"]=4778,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6795,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1563,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5433,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=547668,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=5433,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=535138,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=477,
+ ["unit"]=0
+ }
+ },
+ [4778]={
+ ["next_chapter"]=4779,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6820,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1569,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5487,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=553156,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=5487,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=535138,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=477,
+ ["unit"]=0
+ }
+ },
+ [4779]={
+ ["next_chapter"]=4780,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6846,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1574,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5542,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=558698,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=5542,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=535138,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=477,
+ ["unit"]=0
+ }
+ },
+ [4780]={
+ ["next_chapter"]=4781,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=6871,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1580,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5598,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=564295,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=5598,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=591114,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=478,
+ ["unit"]=0
+ }
+ },
+ [4781]={
+ ["next_chapter"]=4782,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6896,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1586,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5654,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=569949,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=5654,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=591114,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=478,
+ ["unit"]=0
+ }
+ },
+ [4782]={
+ ["next_chapter"]=4783,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6922,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1592,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5710,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=575659,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=5710,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=591114,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=478,
+ ["unit"]=0
+ }
+ },
+ [4783]={
+ ["next_chapter"]=4784,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6948,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1598,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5767,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=581426,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=5767,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=591114,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=478,
+ ["unit"]=0
+ }
+ },
+ [4784]={
+ ["next_chapter"]=4785,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6974,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1604,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5825,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=587251,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=5825,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=591114,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=478,
+ ["unit"]=0
+ }
+ },
+ [4785]={
+ ["next_chapter"]=4786,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7000,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1610,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5883,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=593134,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=5883,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=591114,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=478,
+ ["unit"]=0
+ }
+ },
+ [4786]={
+ ["next_chapter"]=4787,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7027,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1616,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5942,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=599076,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=5942,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=591114,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=478,
+ ["unit"]=0
+ }
+ },
+ [4787]={
+ ["next_chapter"]=4788,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7053,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1622,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6001,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=605078,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=6001,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=591114,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=478,
+ ["unit"]=0
+ }
+ },
+ [4788]={
+ ["next_chapter"]=4789,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7080,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1628,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6061,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=611139,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=6061,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=591114,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=478,
+ ["unit"]=0
+ }
+ },
+ [4789]={
+ ["next_chapter"]=4790,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7107,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1635,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6122,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=617261,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=6122,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=591114,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=478,
+ ["unit"]=0
+ }
+ },
+ [4790]={
+ ["next_chapter"]=4791,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=7134,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1641,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6183,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=623444,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=6183,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=652946,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=479,
+ ["unit"]=0
+ }
+ },
+ [4791]={
+ ["next_chapter"]=4792,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7161,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1647,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6245,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=629689,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=6245,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=652946,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=479,
+ ["unit"]=0
+ }
+ },
+ [4792]={
+ ["next_chapter"]=4793,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7189,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1653,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6308,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=635997,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=6308,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=652946,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=479,
+ ["unit"]=0
+ }
+ },
+ [4793]={
+ ["next_chapter"]=4794,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7217,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1660,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6371,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=642367,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=6371,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=652946,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=479,
+ ["unit"]=0
+ }
+ },
+ [4794]={
+ ["next_chapter"]=4795,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7245,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1666,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6434,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=648802,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=6434,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=652946,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=479,
+ ["unit"]=0
+ }
+ },
+ [4795]={
+ ["next_chapter"]=4796,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7273,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1673,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6499,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=655300,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=6499,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=652946,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=479,
+ ["unit"]=0
+ }
+ },
+ [4796]={
+ ["next_chapter"]=4797,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7301,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1679,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6564,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=661864,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=6564,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=652946,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=479,
+ ["unit"]=0
+ }
+ },
+ [4797]={
+ ["next_chapter"]=4798,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7329,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1686,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6629,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=668493,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=6629,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=652946,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=479,
+ ["unit"]=0
+ }
+ },
+ [4798]={
+ ["next_chapter"]=4799,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7358,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1692,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6696,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=675189,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=6696,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=652946,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=479,
+ ["unit"]=0
+ }
+ },
+ [4799]={
+ ["next_chapter"]=4800,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7387,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1699,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6762,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=681951,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=6762,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=652946,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=479,
+ ["unit"]=0
+ }
+ },
+ [4800]={
+ ["next_chapter"]=4801,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=7416,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1706,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6830,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=688781,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=6830,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=721247,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=480,
+ ["unit"]=0
+ }
+ },
+ [4801]={
+ ["next_chapter"]=4802,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7445,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1712,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6898,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=695680,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=6898,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=721247,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=480,
+ ["unit"]=0
+ }
+ },
+ [4802]={
+ ["next_chapter"]=4803,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7475,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1719,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6967,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=702647,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=6967,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=721247,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=480,
+ ["unit"]=0
+ }
+ },
+ [4803]={
+ ["next_chapter"]=4804,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7504,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1726,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7037,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=709684,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=7037,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=721247,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=480,
+ ["unit"]=0
+ }
+ },
+ [4804]={
+ ["next_chapter"]=4805,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7534,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1733,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7107,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=716792,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=7107,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=721247,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=480,
+ ["unit"]=0
+ }
+ },
+ [4805]={
+ ["next_chapter"]=4806,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7564,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1740,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7179,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=723970,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=7179,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=721247,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=480,
+ ["unit"]=0
+ }
+ },
+ [4806]={
+ ["next_chapter"]=4807,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7594,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1747,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7250,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=731221,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=7250,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=721247,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=480,
+ ["unit"]=0
+ }
+ },
+ [4807]={
+ ["next_chapter"]=4808,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7625,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1754,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7323,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=738543,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=7323,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=721247,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=480,
+ ["unit"]=0
+ }
+ },
+ [4808]={
+ ["next_chapter"]=4809,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7656,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1761,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7396,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=745939,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=7396,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=721247,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=480,
+ ["unit"]=0
+ }
+ },
+ [4809]={
+ ["next_chapter"]=4810,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7686,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1768,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7470,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=753409,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=7470,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=721247,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=480,
+ ["unit"]=0
+ }
+ },
+ [4810]={
+ ["next_chapter"]=4811,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=7717,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1775,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7545,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=760954,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=7545,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=796694,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=481,
+ ["unit"]=0
+ }
+ },
+ [4811]={
+ ["next_chapter"]=4812,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7749,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1782,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7620,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=768574,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=7620,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=796694,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=481,
+ ["unit"]=0
+ }
+ },
+ [4812]={
+ ["next_chapter"]=4813,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7780,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1789,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7696,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=776271,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=7696,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=796694,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=481,
+ ["unit"]=0
+ }
+ },
+ [4813]={
+ ["next_chapter"]=4814,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7812,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1797,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7773,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=784044,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=7773,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=796694,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=481,
+ ["unit"]=0
+ }
+ },
+ [4814]={
+ ["next_chapter"]=4815,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7844,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1804,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7851,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=791895,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=7851,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=796694,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=481,
+ ["unit"]=0
+ }
+ },
+ [4815]={
+ ["next_chapter"]=4816,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7876,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1811,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7930,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=799825,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=7930,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=796694,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=481,
+ ["unit"]=0
+ }
+ },
+ [4816]={
+ ["next_chapter"]=4817,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7908,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1819,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8009,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=807833,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=8009,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=796694,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=481,
+ ["unit"]=0
+ }
+ },
+ [4817]={
+ ["next_chapter"]=4818,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7940,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1826,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8089,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=815922,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=8089,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=796694,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=481,
+ ["unit"]=0
+ }
+ },
+ [4818]={
+ ["next_chapter"]=4819,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7973,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1834,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8170,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=824092,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=8170,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=796694,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=481,
+ ["unit"]=0
+ }
+ },
+ [4819]={
+ ["next_chapter"]=4820,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8006,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1841,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8252,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=832344,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=8252,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=796694,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=481,
+ ["unit"]=0
+ }
+ },
+ [4820]={
+ ["next_chapter"]=4821,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=8039,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1849,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8334,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=840678,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=8334,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=880035,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=482,
+ ["unit"]=0
+ }
+ },
+ [4821]={
+ ["next_chapter"]=4822,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8072,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1857,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8417,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=849095,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=8417,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=880035,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=482,
+ ["unit"]=0
+ }
+ },
+ [4822]={
+ ["next_chapter"]=4823,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8106,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1864,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8502,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=857597,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=8502,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=880035,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=482,
+ ["unit"]=0
+ }
+ },
+ [4823]={
+ ["next_chapter"]=4824,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8139,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1872,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8587,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=866183,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=8587,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=880035,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=482,
+ ["unit"]=0
+ }
+ },
+ [4824]={
+ ["next_chapter"]=4825,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8173,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1880,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8672,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=874856,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=8672,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=880035,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=482,
+ ["unit"]=0
+ }
+ },
+ [4825]={
+ ["next_chapter"]=4826,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8207,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1888,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8759,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=883615,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=8759,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=880035,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=482,
+ ["unit"]=0
+ }
+ },
+ [4826]={
+ ["next_chapter"]=4827,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8242,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1896,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8847,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=892462,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=8847,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=880035,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=482,
+ ["unit"]=0
+ }
+ },
+ [4827]={
+ ["next_chapter"]=4828,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8276,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1904,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8935,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=901397,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=8935,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=880035,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=482,
+ ["unit"]=0
+ }
+ },
+ [4828]={
+ ["next_chapter"]=4829,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8311,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1912,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=9025,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=910421,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=9025,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=880035,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=482,
+ ["unit"]=0
+ }
+ },
+ [4829]={
+ ["next_chapter"]=4830,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8346,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1920,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=9115,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=919536,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=9115,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=880035,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=482,
+ ["unit"]=0
+ }
+ },
+ [4830]={
+ ["next_chapter"]=4831,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=8381,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1928,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=9206,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=928742,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=9206,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=972095,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=483,
+ ["unit"]=0
+ }
+ },
+ [4831]={
+ ["next_chapter"]=4832,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8417,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1936,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=9298,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=938040,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=9298,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=972095,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=483,
+ ["unit"]=0
+ }
+ },
+ [4832]={
+ ["next_chapter"]=4833,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8452,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1944,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=9391,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=947431,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=9391,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=972095,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=483,
+ ["unit"]=0
+ }
+ },
+ [4833]={
+ ["next_chapter"]=4834,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8488,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1952,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=9485,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=956916,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=9485,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=972095,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=483,
+ ["unit"]=0
+ }
+ },
+ [4834]={
+ ["next_chapter"]=4835,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8524,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1961,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=9580,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=966496,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=9580,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=972095,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=483,
+ ["unit"]=0
+ }
+ },
+ [4835]={
+ ["next_chapter"]=4836,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8560,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1969,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=9676,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=976172,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=9676,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=972095,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=483,
+ ["unit"]=0
+ }
+ },
+ [4836]={
+ ["next_chapter"]=4837,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8597,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1977,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=9772,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=985944,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=9772,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=972095,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=483,
+ ["unit"]=0
+ }
+ },
+ [4837]={
+ ["next_chapter"]=4838,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8633,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1986,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=9870,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=995814,
+ ["unit"]=6
+ },
+ ["idle_gold"]={
+ ["value"]=9870,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=972095,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=483,
+ ["unit"]=0
+ }
+ },
+ [4838]={
+ ["next_chapter"]=4839,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8670,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=1994,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=9969,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1006,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=9969,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=972095,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=483,
+ ["unit"]=0
+ }
+ },
+ [4839]={
+ ["next_chapter"]=4840,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8707,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2003,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=10068,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1016,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=10068,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=972095,
+ ["unit"]=6
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=483,
+ ["unit"]=0
+ }
+ },
+ [4840]={
+ ["next_chapter"]=4841,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=8745,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2011,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=10169,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1026,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=10169,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1074,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=484,
+ ["unit"]=0
+ }
+ },
+ [4841]={
+ ["next_chapter"]=4842,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8782,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2020,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=10271,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1036,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=10271,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1074,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=484,
+ ["unit"]=0
+ }
+ },
+ [4842]={
+ ["next_chapter"]=4843,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8820,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2029,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=10374,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1047,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=10374,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1074,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=484,
+ ["unit"]=0
+ }
+ },
+ [4843]={
+ ["next_chapter"]=4844,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8858,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2037,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=10477,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1057,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=10477,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1074,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=484,
+ ["unit"]=0
+ }
+ },
+ [4844]={
+ ["next_chapter"]=4845,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8896,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2046,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=10582,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1068,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=10582,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1074,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=484,
+ ["unit"]=0
+ }
+ },
+ [4845]={
+ ["next_chapter"]=4846,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8935,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2055,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=10688,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1078,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=10688,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1074,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=484,
+ ["unit"]=0
+ }
+ },
+ [4846]={
+ ["next_chapter"]=4847,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8974,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2064,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=10795,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1089,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=10795,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1074,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=484,
+ ["unit"]=0
+ }
+ },
+ [4847]={
+ ["next_chapter"]=4848,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9012,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2073,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=10903,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1100,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=10903,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1074,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=484,
+ ["unit"]=0
+ }
+ },
+ [4848]={
+ ["next_chapter"]=4849,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9052,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2082,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=11012,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1111,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=11012,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1074,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=484,
+ ["unit"]=0
+ }
+ },
+ [4849]={
+ ["next_chapter"]=4850,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9091,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2091,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=11122,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1122,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=11122,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1074,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=484,
+ ["unit"]=0
+ }
+ },
+ [4850]={
+ ["next_chapter"]=4851,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=9131,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2100,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=11233,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1133,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=11233,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1186,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=485,
+ ["unit"]=0
+ }
+ },
+ [4851]={
+ ["next_chapter"]=4852,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9170,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2109,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=11345,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1145,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=11345,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1186,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=485,
+ ["unit"]=0
+ }
+ },
+ [4852]={
+ ["next_chapter"]=4853,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9210,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2118,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=11459,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1156,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=11459,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1186,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=485,
+ ["unit"]=0
+ }
+ },
+ [4853]={
+ ["next_chapter"]=4854,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9251,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2128,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=11573,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1168,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=11573,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1186,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=485,
+ ["unit"]=0
+ }
+ },
+ [4854]={
+ ["next_chapter"]=4855,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9291,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2137,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=11689,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1180,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=11689,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1186,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=485,
+ ["unit"]=0
+ }
+ },
+ [4855]={
+ ["next_chapter"]=4856,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9332,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2146,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=11806,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1191,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=11806,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1186,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=485,
+ ["unit"]=0
+ }
+ },
+ [4856]={
+ ["next_chapter"]=4857,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9373,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2156,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=11924,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1203,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=11924,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1186,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=485,
+ ["unit"]=0
+ }
+ },
+ [4857]={
+ ["next_chapter"]=4858,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9414,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2165,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=12043,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1215,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=12043,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1186,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=485,
+ ["unit"]=0
+ }
+ },
+ [4858]={
+ ["next_chapter"]=4859,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9455,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2175,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=12164,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1227,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=12164,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1186,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=485,
+ ["unit"]=0
+ }
+ },
+ [4859]={
+ ["next_chapter"]=4860,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9497,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2184,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=12285,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1240,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=12285,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1186,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=485,
+ ["unit"]=0
+ }
+ },
+ [4860]={
+ ["next_chapter"]=4861,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=9539,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2194,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=12408,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1252,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=12408,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1310,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=486,
+ ["unit"]=0
+ }
+ },
+ [4861]={
+ ["next_chapter"]=4862,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9581,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2204,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=12532,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1265,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=12532,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1310,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=486,
+ ["unit"]=0
+ }
+ },
+ [4862]={
+ ["next_chapter"]=4863,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9623,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2213,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=12658,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1277,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=12658,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1310,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=486,
+ ["unit"]=0
+ }
+ },
+ [4863]={
+ ["next_chapter"]=4864,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9666,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2223,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=12784,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1290,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=12784,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1310,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=486,
+ ["unit"]=0
+ }
+ },
+ [4864]={
+ ["next_chapter"]=4865,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9709,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2233,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=12912,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1303,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=12912,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1310,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=486,
+ ["unit"]=0
+ }
+ },
+ [4865]={
+ ["next_chapter"]=4866,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9752,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2243,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=13041,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1316,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=13041,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1310,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=486,
+ ["unit"]=0
+ }
+ },
+ [4866]={
+ ["next_chapter"]=4867,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9795,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2253,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=13172,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1329,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=13172,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1310,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=486,
+ ["unit"]=0
+ }
+ },
+ [4867]={
+ ["next_chapter"]=4868,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9839,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2263,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=13303,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1343,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=13303,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1310,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=486,
+ ["unit"]=0
+ }
+ },
+ [4868]={
+ ["next_chapter"]=4869,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9882,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2273,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=13436,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1356,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=13436,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1310,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=486,
+ ["unit"]=0
+ }
+ },
+ [4869]={
+ ["next_chapter"]=4870,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9926,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2283,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=13571,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1370,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=13571,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1310,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=486,
+ ["unit"]=0
+ }
+ },
+ [4870]={
+ ["next_chapter"]=4871,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=9971,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2293,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=13706,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1383,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=13706,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1447,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=487,
+ ["unit"]=0
+ }
+ },
+ [4871]={
+ ["next_chapter"]=4872,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10015,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2303,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=13844,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1397,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=13844,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1447,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=487,
+ ["unit"]=0
+ }
+ },
+ [4872]={
+ ["next_chapter"]=4873,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10060,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2314,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=13982,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1411,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=13982,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1447,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=487,
+ ["unit"]=0
+ }
+ },
+ [4873]={
+ ["next_chapter"]=4874,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10105,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2324,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=14122,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1425,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=14122,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1447,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=487,
+ ["unit"]=0
+ }
+ },
+ [4874]={
+ ["next_chapter"]=4875,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10150,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2334,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=14263,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1439,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=14263,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1447,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=487,
+ ["unit"]=0
+ }
+ },
+ [4875]={
+ ["next_chapter"]=4876,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10195,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2345,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=14406,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1454,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=14406,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1447,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=487,
+ ["unit"]=0
+ }
+ },
+ [4876]={
+ ["next_chapter"]=4877,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10241,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2355,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=14550,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1468,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=14550,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1447,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=487,
+ ["unit"]=0
+ }
+ },
+ [4877]={
+ ["next_chapter"]=4878,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10287,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2366,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=14695,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1483,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=14695,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1447,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=487,
+ ["unit"]=0
+ }
+ },
+ [4878]={
+ ["next_chapter"]=4879,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10333,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2377,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=14842,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1498,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=14842,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1447,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=487,
+ ["unit"]=0
+ }
+ },
+ [4879]={
+ ["next_chapter"]=4880,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10380,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2387,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=14991,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1513,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=14991,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1447,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=487,
+ ["unit"]=0
+ }
+ },
+ [4880]={
+ ["next_chapter"]=4881,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=10426,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2398,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=15140,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1528,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=15140,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1599,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=488,
+ ["unit"]=0
+ }
+ },
+ [4881]={
+ ["next_chapter"]=4882,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10473,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2409,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=15292,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1543,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=15292,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1599,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=488,
+ ["unit"]=0
+ }
+ },
+ [4882]={
+ ["next_chapter"]=4883,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10520,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2420,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=15445,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1559,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=15445,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1599,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=488,
+ ["unit"]=0
+ }
+ },
+ [4883]={
+ ["next_chapter"]=4884,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10568,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2431,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=15599,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1574,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=15599,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1599,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=488,
+ ["unit"]=0
+ }
+ },
+ [4884]={
+ ["next_chapter"]=4885,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10615,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2442,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=15755,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1590,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=15755,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1599,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=488,
+ ["unit"]=0
+ }
+ },
+ [4885]={
+ ["next_chapter"]=4886,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10663,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2453,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=15913,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1606,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=15913,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1599,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=488,
+ ["unit"]=0
+ }
+ },
+ [4886]={
+ ["next_chapter"]=4887,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10711,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2464,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=16072,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1622,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=16072,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1599,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=488,
+ ["unit"]=0
+ }
+ },
+ [4887]={
+ ["next_chapter"]=4888,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10760,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2475,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=16233,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1638,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=16233,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1599,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=488,
+ ["unit"]=0
+ }
+ },
+ [4888]={
+ ["next_chapter"]=4889,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10808,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2486,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=16395,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1655,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=16395,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1599,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=488,
+ ["unit"]=0
+ }
+ },
+ [4889]={
+ ["next_chapter"]=4890,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10857,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2497,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=16559,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1671,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=16559,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1599,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=488,
+ ["unit"]=0
+ }
+ },
+ [4890]={
+ ["next_chapter"]=4891,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=10906,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2508,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=16724,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1688,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=16724,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1766,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=489,
+ ["unit"]=0
+ }
+ },
+ [4891]={
+ ["next_chapter"]=4892,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10956,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2520,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=16892,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1705,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=16892,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1766,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=489,
+ ["unit"]=0
+ }
+ },
+ [4892]={
+ ["next_chapter"]=4893,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11006,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2531,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=17061,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1722,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=17061,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1766,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=489,
+ ["unit"]=0
+ }
+ },
+ [4893]={
+ ["next_chapter"]=4894,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11055,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2543,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=17231,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1739,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=17231,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1766,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=489,
+ ["unit"]=0
+ }
+ },
+ [4894]={
+ ["next_chapter"]=4895,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11106,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2554,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=17404,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1757,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=17404,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1766,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=489,
+ ["unit"]=0
+ }
+ },
+ [4895]={
+ ["next_chapter"]=4896,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11156,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2566,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=17578,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1774,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=17578,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1766,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=489,
+ ["unit"]=0
+ }
+ },
+ [4896]={
+ ["next_chapter"]=4897,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11207,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2578,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=17753,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1792,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=17753,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1766,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=489,
+ ["unit"]=0
+ }
+ },
+ [4897]={
+ ["next_chapter"]=4898,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11258,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2589,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=17931,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1810,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=17931,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1766,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=489,
+ ["unit"]=0
+ }
+ },
+ [4898]={
+ ["next_chapter"]=4899,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11309,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2601,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=18110,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1828,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=18110,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1766,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=489,
+ ["unit"]=0
+ }
+ },
+ [4899]={
+ ["next_chapter"]=4900,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11360,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2613,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=18291,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1846,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=18291,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1766,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=489,
+ ["unit"]=0
+ }
+ },
+ [4900]={
+ ["next_chapter"]=4901,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=11412,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2625,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=18474,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1865,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=18474,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1951,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=490,
+ ["unit"]=0
+ }
+ },
+ [4901]={
+ ["next_chapter"]=4902,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11464,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2637,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=18659,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1883,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=18659,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1951,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=490,
+ ["unit"]=0
+ }
+ },
+ [4902]={
+ ["next_chapter"]=4903,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11516,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2649,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=18846,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1902,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=18846,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1951,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=490,
+ ["unit"]=0
+ }
+ },
+ [4903]={
+ ["next_chapter"]=4904,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11569,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2661,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=19034,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1921,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=19034,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1951,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=490,
+ ["unit"]=0
+ }
+ },
+ [4904]={
+ ["next_chapter"]=4905,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11621,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2673,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=19224,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1941,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=19224,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1951,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=490,
+ ["unit"]=0
+ }
+ },
+ [4905]={
+ ["next_chapter"]=4906,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11674,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2685,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=19417,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1960,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=19417,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1951,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=490,
+ ["unit"]=0
+ }
+ },
+ [4906]={
+ ["next_chapter"]=4907,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11728,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2697,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=19611,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1980,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=19611,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1951,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=490,
+ ["unit"]=0
+ }
+ },
+ [4907]={
+ ["next_chapter"]=4908,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11781,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2710,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=19807,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1999,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=19807,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1951,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=490,
+ ["unit"]=0
+ }
+ },
+ [4908]={
+ ["next_chapter"]=4909,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11835,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2722,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=20005,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2019,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=20005,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1951,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=490,
+ ["unit"]=0
+ }
+ },
+ [4909]={
+ ["next_chapter"]=4910,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11889,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2735,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=20205,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2040,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=20205,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=1951,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=490,
+ ["unit"]=0
+ }
+ },
+ [4910]={
+ ["next_chapter"]=4911,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=11943,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2747,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=20407,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2060,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=20407,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2155,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=491,
+ ["unit"]=0
+ }
+ },
+ [4911]={
+ ["next_chapter"]=4912,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11998,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2760,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=20611,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2081,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=20611,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2155,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=491,
+ ["unit"]=0
+ }
+ },
+ [4912]={
+ ["next_chapter"]=4913,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12053,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2772,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=20817,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2101,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=20817,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2155,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=491,
+ ["unit"]=0
+ }
+ },
+ [4913]={
+ ["next_chapter"]=4914,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12108,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2785,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=21025,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2123,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=21025,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2155,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=491,
+ ["unit"]=0
+ }
+ },
+ [4914]={
+ ["next_chapter"]=4915,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12163,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2798,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=21236,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2144,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=21236,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2155,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=491,
+ ["unit"]=0
+ }
+ },
+ [4915]={
+ ["next_chapter"]=4916,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12219,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2810,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=21448,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2165,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=21448,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2155,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=491,
+ ["unit"]=0
+ }
+ },
+ [4916]={
+ ["next_chapter"]=4917,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12275,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2823,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=21662,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2187,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=21662,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2155,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=491,
+ ["unit"]=0
+ }
+ },
+ [4917]={
+ ["next_chapter"]=4918,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12331,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2836,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=21879,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2209,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=21879,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2155,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=491,
+ ["unit"]=0
+ }
+ },
+ [4918]={
+ ["next_chapter"]=4919,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12388,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2849,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=22098,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2231,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=22098,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2155,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=491,
+ ["unit"]=0
+ }
+ },
+ [4919]={
+ ["next_chapter"]=4920,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12444,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2862,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=22319,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2253,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=22319,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2155,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=491,
+ ["unit"]=0
+ }
+ },
+ [4920]={
+ ["next_chapter"]=4921,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=12502,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2875,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=22542,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2276,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=22542,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2380,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=492,
+ ["unit"]=0
+ }
+ },
+ [4921]={
+ ["next_chapter"]=4922,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12559,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2889,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=22767,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2298,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=22767,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2380,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=492,
+ ["unit"]=0
+ }
+ },
+ [4922]={
+ ["next_chapter"]=4923,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12616,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2902,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=22995,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2321,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=22995,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2380,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=492,
+ ["unit"]=0
+ }
+ },
+ [4923]={
+ ["next_chapter"]=4924,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12674,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2915,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=23225,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2345,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=23225,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2380,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=492,
+ ["unit"]=0
+ }
+ },
+ [4924]={
+ ["next_chapter"]=4925,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12732,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2928,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=23457,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2368,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=23457,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2380,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=492,
+ ["unit"]=0
+ }
+ },
+ [4925]={
+ ["next_chapter"]=4926,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12791,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2942,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=23692,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2392,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=23692,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2380,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=492,
+ ["unit"]=0
+ }
+ },
+ [4926]={
+ ["next_chapter"]=4927,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12849,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2955,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=23929,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2416,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=23929,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2380,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=492,
+ ["unit"]=0
+ }
+ },
+ [4927]={
+ ["next_chapter"]=4928,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12908,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2969,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=24168,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2440,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=24168,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2380,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=492,
+ ["unit"]=0
+ }
+ },
+ [4928]={
+ ["next_chapter"]=4929,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12967,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2983,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=24410,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2464,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=24410,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2380,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=492,
+ ["unit"]=0
+ }
+ },
+ [4929]={
+ ["next_chapter"]=4930,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13027,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=2996,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=24654,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2489,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=24654,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2380,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=492,
+ ["unit"]=0
+ }
+ },
+ [4930]={
+ ["next_chapter"]=4931,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=13087,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3010,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=24900,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2514,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=24900,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2629,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=493,
+ ["unit"]=0
+ }
+ },
+ [4931]={
+ ["next_chapter"]=4932,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13147,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3024,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=25149,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2539,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=25149,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2629,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=493,
+ ["unit"]=0
+ }
+ },
+ [4932]={
+ ["next_chapter"]=4933,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13207,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3038,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=25401,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2564,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=25401,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2629,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=493,
+ ["unit"]=0
+ }
+ },
+ [4933]={
+ ["next_chapter"]=4934,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13268,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3052,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=25655,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2590,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=25655,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2629,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=493,
+ ["unit"]=0
+ }
+ },
+ [4934]={
+ ["next_chapter"]=4935,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13329,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3066,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=25912,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2616,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=25912,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2629,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=493,
+ ["unit"]=0
+ }
+ },
+ [4935]={
+ ["next_chapter"]=4936,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13390,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3080,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=26171,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2642,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=26171,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2629,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=493,
+ ["unit"]=0
+ }
+ },
+ [4936]={
+ ["next_chapter"]=4937,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13451,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3094,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=26432,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2669,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=26432,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2629,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=493,
+ ["unit"]=0
+ }
+ },
+ [4937]={
+ ["next_chapter"]=4938,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13513,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3108,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=26697,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2695,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=26697,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2629,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=493,
+ ["unit"]=0
+ }
+ },
+ [4938]={
+ ["next_chapter"]=4939,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13575,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3122,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=26964,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2722,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=26964,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2629,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=493,
+ ["unit"]=0
+ }
+ },
+ [4939]={
+ ["next_chapter"]=4940,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13637,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3137,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=27233,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2749,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=27233,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2629,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=493,
+ ["unit"]=0
+ }
+ },
+ [4940]={
+ ["next_chapter"]=4941,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=13700,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3151,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=27506,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2777,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=27506,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2904,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=494,
+ ["unit"]=0
+ }
+ },
+ [4941]={
+ ["next_chapter"]=4942,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13763,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3165,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=27781,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2805,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=27781,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2904,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=494,
+ ["unit"]=0
+ }
+ },
+ [4942]={
+ ["next_chapter"]=4943,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13826,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3180,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=28058,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2833,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=28058,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2904,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=494,
+ ["unit"]=0
+ }
+ },
+ [4943]={
+ ["next_chapter"]=4944,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13889,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3195,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=28339,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2861,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=28339,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2904,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=494,
+ ["unit"]=0
+ }
+ },
+ [4944]={
+ ["next_chapter"]=4945,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13953,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3209,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=28622,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2890,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=28622,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2904,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=494,
+ ["unit"]=0
+ }
+ },
+ [4945]={
+ ["next_chapter"]=4946,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14017,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3224,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=28909,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2919,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=28909,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2904,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=494,
+ ["unit"]=0
+ }
+ },
+ [4946]={
+ ["next_chapter"]=4947,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14081,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3239,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=29198,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2948,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=29198,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2904,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=494,
+ ["unit"]=0
+ }
+ },
+ [4947]={
+ ["next_chapter"]=4948,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14146,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3254,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=29490,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2977,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=29490,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2904,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=494,
+ ["unit"]=0
+ }
+ },
+ [4948]={
+ ["next_chapter"]=4949,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14211,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3268,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=29785,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3007,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=29785,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2904,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=494,
+ ["unit"]=0
+ }
+ },
+ [4949]={
+ ["next_chapter"]=4950,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14276,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3283,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=30082,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3037,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=30082,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=2904,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=494,
+ ["unit"]=0
+ }
+ },
+ [4950]={
+ ["next_chapter"]=4951,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=14342,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3299,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=30383,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3068,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=30383,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3208,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=495,
+ ["unit"]=0
+ }
+ },
+ [4951]={
+ ["next_chapter"]=4952,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14407,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3314,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=30687,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3098,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=30687,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3208,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=495,
+ ["unit"]=0
+ }
+ },
+ [4952]={
+ ["next_chapter"]=4953,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14473,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3329,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=30994,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3129,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=30994,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3208,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=495,
+ ["unit"]=0
+ }
+ },
+ [4953]={
+ ["next_chapter"]=4954,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14540,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3344,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=31304,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3161,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=31304,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3208,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=495,
+ ["unit"]=0
+ }
+ },
+ [4954]={
+ ["next_chapter"]=4955,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14606,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3359,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=31617,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3192,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=31617,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3208,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=495,
+ ["unit"]=0
+ }
+ },
+ [4955]={
+ ["next_chapter"]=4956,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14673,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3375,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=31933,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3224,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=31933,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3208,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=495,
+ ["unit"]=0
+ }
+ },
+ [4956]={
+ ["next_chapter"]=4957,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14740,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3390,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=32252,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3256,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=32252,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3208,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=495,
+ ["unit"]=0
+ }
+ },
+ [4957]={
+ ["next_chapter"]=4958,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14808,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3406,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=32575,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3289,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=32575,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3208,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=495,
+ ["unit"]=0
+ }
+ },
+ [4958]={
+ ["next_chapter"]=4959,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14876,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3421,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=32901,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3322,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=32901,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3208,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=495,
+ ["unit"]=0
+ }
+ },
+ [4959]={
+ ["next_chapter"]=4960,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14944,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3437,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=33230,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3355,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=33230,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3208,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=495,
+ ["unit"]=0
+ }
+ },
+ [4960]={
+ ["next_chapter"]=4961,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=15012,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3453,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=33562,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3389,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=33562,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3544,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=496,
+ ["unit"]=0
+ }
+ },
+ [4961]={
+ ["next_chapter"]=4962,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15081,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3469,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=33898,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3423,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=33898,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3544,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=496,
+ ["unit"]=0
+ }
+ },
+ [4962]={
+ ["next_chapter"]=4963,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15150,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3485,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=34237,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3457,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=34237,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3544,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=496,
+ ["unit"]=0
+ }
+ },
+ [4963]={
+ ["next_chapter"]=4964,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15219,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3500,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=34579,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3491,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=34579,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3544,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=496,
+ ["unit"]=0
+ }
+ },
+ [4964]={
+ ["next_chapter"]=4965,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15289,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3516,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=34925,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3526,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=34925,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3544,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=496,
+ ["unit"]=0
+ }
+ },
+ [4965]={
+ ["next_chapter"]=4966,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15359,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3533,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=35274,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3562,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=35274,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3544,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=496,
+ ["unit"]=0
+ }
+ },
+ [4966]={
+ ["next_chapter"]=4967,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15429,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3549,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=35627,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3597,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=35627,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3544,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=496,
+ ["unit"]=0
+ }
+ },
+ [4967]={
+ ["next_chapter"]=4968,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15500,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3565,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=35983,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3633,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=35983,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3544,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=496,
+ ["unit"]=0
+ }
+ },
+ [4968]={
+ ["next_chapter"]=4969,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15570,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3581,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=36343,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3670,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=36343,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3544,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=496,
+ ["unit"]=0
+ }
+ },
+ [4969]={
+ ["next_chapter"]=4970,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15641,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3598,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=36706,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3706,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=36706,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3544,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=496,
+ ["unit"]=0
+ }
+ },
+ [4970]={
+ ["next_chapter"]=4971,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=15713,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3614,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=37073,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3743,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=37073,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3914,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=497,
+ ["unit"]=0
+ }
+ },
+ [4971]={
+ ["next_chapter"]=4972,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15785,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3630,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=37444,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3781,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=37444,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3914,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=497,
+ ["unit"]=0
+ }
+ },
+ [4972]={
+ ["next_chapter"]=4973,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15857,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3647,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=37819,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3819,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=37819,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3914,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=497,
+ ["unit"]=0
+ }
+ },
+ [4973]={
+ ["next_chapter"]=4974,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15929,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3664,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=38197,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3857,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=38197,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3914,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=497,
+ ["unit"]=0
+ }
+ },
+ [4974]={
+ ["next_chapter"]=4975,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16002,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3680,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=38579,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3895,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=38579,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3914,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=497,
+ ["unit"]=0
+ }
+ },
+ [4975]={
+ ["next_chapter"]=4976,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16075,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3697,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=38964,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3934,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=38964,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3914,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=497,
+ ["unit"]=0
+ }
+ },
+ [4976]={
+ ["next_chapter"]=4977,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16148,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3714,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=39354,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3974,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=39354,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3914,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=497,
+ ["unit"]=0
+ }
+ },
+ [4977]={
+ ["next_chapter"]=4978,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16221,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3731,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=39748,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4013,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=39748,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3914,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=497,
+ ["unit"]=0
+ }
+ },
+ [4978]={
+ ["next_chapter"]=4979,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16295,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3748,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=40145,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4054,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=40145,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3914,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=497,
+ ["unit"]=0
+ }
+ },
+ [4979]={
+ ["next_chapter"]=4980,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16369,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3765,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=40547,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4094,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=40547,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=3914,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=497,
+ ["unit"]=0
+ }
+ },
+ [4980]={
+ ["next_chapter"]=4981,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=16444,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3782,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=40952,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4135,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=40952,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=4324,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=498,
+ ["unit"]=0
+ }
+ },
+ [4981]={
+ ["next_chapter"]=4982,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16519,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3799,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=41362,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4176,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=41362,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=4324,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=498,
+ ["unit"]=0
+ }
+ },
+ [4982]={
+ ["next_chapter"]=4983,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16594,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3817,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=41775,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4218,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=41775,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=4324,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=498,
+ ["unit"]=0
+ }
+ },
+ [4983]={
+ ["next_chapter"]=4984,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16669,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3834,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=42193,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4260,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=42193,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=4324,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=498,
+ ["unit"]=0
+ }
+ },
+ [4984]={
+ ["next_chapter"]=4985,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16745,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3851,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=42615,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4303,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=42615,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=4324,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=498,
+ ["unit"]=0
+ }
+ },
+ [4985]={
+ ["next_chapter"]=4986,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16821,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3869,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=43041,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4346,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=43041,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=4324,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=498,
+ ["unit"]=0
+ }
+ },
+ [4986]={
+ ["next_chapter"]=4987,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16897,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3886,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=43471,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4390,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=43471,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=4324,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=498,
+ ["unit"]=0
+ }
+ },
+ [4987]={
+ ["next_chapter"]=4988,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16974,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3904,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=43906,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4433,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=43906,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=4324,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=498,
+ ["unit"]=0
+ }
+ },
+ [4988]={
+ ["next_chapter"]=4989,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17051,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3922,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=44345,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4478,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=44345,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=4324,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=498,
+ ["unit"]=0
+ }
+ },
+ [4989]={
+ ["next_chapter"]=4990,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17128,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3940,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=44789,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4523,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=44789,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=4324,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=498,
+ ["unit"]=0
+ }
+ },
+ [4990]={
+ ["next_chapter"]=4991,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=17206,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3957,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=45237,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4568,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=45237,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=4776,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=499,
+ ["unit"]=0
+ }
+ },
+ [4991]={
+ ["next_chapter"]=4992,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17284,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3975,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=45689,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4614,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=45689,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=4776,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=499,
+ ["unit"]=0
+ }
+ },
+ [4992]={
+ ["next_chapter"]=4993,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17362,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=3993,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=46146,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4660,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=46146,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=4776,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=499,
+ ["unit"]=0
+ }
+ },
+ [4993]={
+ ["next_chapter"]=4994,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17441,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4011,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=46607,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4706,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=46607,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=4776,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=499,
+ ["unit"]=0
+ }
+ },
+ [4994]={
+ ["next_chapter"]=4995,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17520,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4030,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=47073,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4753,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=47073,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=4776,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=499,
+ ["unit"]=0
+ }
+ },
+ [4995]={
+ ["next_chapter"]=4996,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17599,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4048,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=47544,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4801,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=47544,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=4776,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=499,
+ ["unit"]=0
+ }
+ },
+ [4996]={
+ ["next_chapter"]=4997,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17679,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4066,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=48020,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4849,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=48020,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=4776,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=499,
+ ["unit"]=0
+ }
+ },
+ [4997]={
+ ["next_chapter"]=4998,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17758,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4084,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=48500,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4897,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=48500,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=4776,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=499,
+ ["unit"]=0
+ }
+ },
+ [4998]={
+ ["next_chapter"]=4999,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17839,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4103,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=48985,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4946,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=48985,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=4776,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=499,
+ ["unit"]=0
+ }
+ },
+ [4999]={
+ ["next_chapter"]=5000,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17919,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4121,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=49475,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4996,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=49475,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=4776,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=499,
+ ["unit"]=0
+ }
+ },
+ [5000]={
+ ["next_chapter"]=5001,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=18000,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4320,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=49969,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5046,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=49969,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=5276,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=500,
+ ["unit"]=0
+ }
+ }
+}
+local config = {
+data=chapter1,count=5000
+}
+return config
\ No newline at end of file
diff --git a/lua/app/config/chapter1.lua.meta b/lua/app/config/chapter1.lua.meta
new file mode 100644
index 00000000..c1158819
--- /dev/null
+++ b/lua/app/config/chapter1.lua.meta
@@ -0,0 +1,10 @@
+fileFormatVersion: 2
+guid: 0bc04e38a7190d6418bf4445c8802092
+ScriptedImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 2
+ userData:
+ assetBundleName:
+ assetBundleVariant:
+ script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
diff --git a/lua/app/config/chapter2.lua b/lua/app/config/chapter2.lua
new file mode 100644
index 00000000..d4a1bd0e
--- /dev/null
+++ b/lua/app/config/chapter2.lua
@@ -0,0 +1,175506 @@
+local chapter2 = {
+ [5001]={
+ ["next_chapter"]=5002,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18000,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4320,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=50469,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5096,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=50469,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=5276,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=500,
+ ["unit"]=0
+ }
+ },
+ [5002]={
+ ["next_chapter"]=5003,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18000,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4320,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=50974,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5147,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=50974,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=5276,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=500,
+ ["unit"]=0
+ }
+ },
+ [5003]={
+ ["next_chapter"]=5004,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18000,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4320,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=51483,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5199,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=51483,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=5276,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=500,
+ ["unit"]=0
+ }
+ },
+ [5004]={
+ ["next_chapter"]=5005,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18000,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4320,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=51998,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5251,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=51998,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=5276,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=500,
+ ["unit"]=0
+ }
+ },
+ [5005]={
+ ["next_chapter"]=5006,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18000,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4320,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=52518,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5303,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=52518,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=5276,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=500,
+ ["unit"]=0
+ }
+ },
+ [5006]={
+ ["next_chapter"]=5007,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18000,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4320,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=53043,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5356,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=53043,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=5276,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=500,
+ ["unit"]=0
+ }
+ },
+ [5007]={
+ ["next_chapter"]=5008,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18000,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4320,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=53574,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5410,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=53574,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=5276,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=500,
+ ["unit"]=0
+ }
+ },
+ [5008]={
+ ["next_chapter"]=5009,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18000,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4320,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=54110,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5464,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=54110,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=5276,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=500,
+ ["unit"]=0
+ }
+ },
+ [5009]={
+ ["next_chapter"]=5010,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18000,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4320,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=54651,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5519,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=54651,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=5276,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=500,
+ ["unit"]=0
+ }
+ },
+ [5010]={
+ ["next_chapter"]=5011,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=18000,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4320,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=55197,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5574,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=55197,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=5828,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=501,
+ ["unit"]=0
+ }
+ },
+ [5011]={
+ ["next_chapter"]=5012,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18000,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4320,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=55749,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5630,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=55749,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=5828,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=501,
+ ["unit"]=0
+ }
+ },
+ [5012]={
+ ["next_chapter"]=5013,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18001,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4320,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=56307,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5686,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=56307,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=5828,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=501,
+ ["unit"]=0
+ }
+ },
+ [5013]={
+ ["next_chapter"]=5014,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18001,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4320,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=56870,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5743,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=56870,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=5828,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=501,
+ ["unit"]=0
+ }
+ },
+ [5014]={
+ ["next_chapter"]=5015,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18001,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4320,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=57438,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5800,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=57438,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=5828,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=501,
+ ["unit"]=0
+ }
+ },
+ [5015]={
+ ["next_chapter"]=5016,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18001,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4320,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=58013,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5858,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=58013,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=5828,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=501,
+ ["unit"]=0
+ }
+ },
+ [5016]={
+ ["next_chapter"]=5017,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18001,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4320,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=58593,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5917,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=58593,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=5828,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=501,
+ ["unit"]=0
+ }
+ },
+ [5017]={
+ ["next_chapter"]=5018,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18002,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4320,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=59179,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5976,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=59179,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=5828,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=501,
+ ["unit"]=0
+ }
+ },
+ [5018]={
+ ["next_chapter"]=5019,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18002,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4320,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=59771,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6036,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=59771,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=5828,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=501,
+ ["unit"]=0
+ }
+ },
+ [5019]={
+ ["next_chapter"]=5020,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18002,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4321,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=60368,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6096,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=60368,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=5828,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=501,
+ ["unit"]=0
+ }
+ },
+ [5020]={
+ ["next_chapter"]=5021,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=18003,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4321,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=60972,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6157,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=60972,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=6438,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=502,
+ ["unit"]=0
+ }
+ },
+ [5021]={
+ ["next_chapter"]=5022,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18003,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4321,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=61582,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6219,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=61582,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=6438,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=502,
+ ["unit"]=0
+ }
+ },
+ [5022]={
+ ["next_chapter"]=5023,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18004,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4321,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=62198,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6281,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=62198,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=6438,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=502,
+ ["unit"]=0
+ }
+ },
+ [5023]={
+ ["next_chapter"]=5024,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18004,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4321,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=62820,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6344,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=62820,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=6438,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=502,
+ ["unit"]=0
+ }
+ },
+ [5024]={
+ ["next_chapter"]=5025,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18005,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4321,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=63448,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6407,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=63448,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=6438,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=502,
+ ["unit"]=0
+ }
+ },
+ [5025]={
+ ["next_chapter"]=5026,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18005,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4321,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=64082,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6471,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=64082,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=6438,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=502,
+ ["unit"]=0
+ }
+ },
+ [5026]={
+ ["next_chapter"]=5027,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18006,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4321,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=64723,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6536,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=64723,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=6438,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=502,
+ ["unit"]=0
+ }
+ },
+ [5027]={
+ ["next_chapter"]=5028,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18007,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4322,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=65370,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6601,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=65370,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=6438,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=502,
+ ["unit"]=0
+ }
+ },
+ [5028]={
+ ["next_chapter"]=5029,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18007,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4322,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=66024,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6667,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=66024,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=6438,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=502,
+ ["unit"]=0
+ }
+ },
+ [5029]={
+ ["next_chapter"]=5030,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18008,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4322,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=66684,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6734,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=66684,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=6438,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=502,
+ ["unit"]=0
+ }
+ },
+ [5030]={
+ ["next_chapter"]=5031,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=18009,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4322,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=67351,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6801,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=67351,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=7111,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=503,
+ ["unit"]=0
+ }
+ },
+ [5031]={
+ ["next_chapter"]=5032,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18010,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4322,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=68025,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6869,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=68025,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=7111,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=503,
+ ["unit"]=0
+ }
+ },
+ [5032]={
+ ["next_chapter"]=5033,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18011,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4323,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=68705,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6938,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=68705,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=7111,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=503,
+ ["unit"]=0
+ }
+ },
+ [5033]={
+ ["next_chapter"]=5034,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18012,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4323,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=69392,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7008,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=69392,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=7111,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=503,
+ ["unit"]=0
+ }
+ },
+ [5034]={
+ ["next_chapter"]=5035,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18013,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4323,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=70086,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7078,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=70086,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=7111,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=503,
+ ["unit"]=0
+ }
+ },
+ [5035]={
+ ["next_chapter"]=5036,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18014,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4323,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=70787,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7148,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=70787,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=7111,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=503,
+ ["unit"]=0
+ }
+ },
+ [5036]={
+ ["next_chapter"]=5037,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18016,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4324,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=71495,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7220,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=71495,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=7111,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=503,
+ ["unit"]=0
+ }
+ },
+ [5037]={
+ ["next_chapter"]=5038,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18017,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4324,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=72209,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7292,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=72209,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=7111,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=503,
+ ["unit"]=0
+ }
+ },
+ [5038]={
+ ["next_chapter"]=5039,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18018,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4324,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=72932,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7365,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=72932,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=7111,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=503,
+ ["unit"]=0
+ }
+ },
+ [5039]={
+ ["next_chapter"]=5040,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18020,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4325,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=73661,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7439,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=73661,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=7111,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=503,
+ ["unit"]=0
+ }
+ },
+ [5040]={
+ ["next_chapter"]=5041,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=18022,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4325,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=74397,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7513,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=74397,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=7855,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=504,
+ ["unit"]=0
+ }
+ },
+ [5041]={
+ ["next_chapter"]=5042,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18023,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4326,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=75141,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7588,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=75141,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=7855,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=504,
+ ["unit"]=0
+ }
+ },
+ [5042]={
+ ["next_chapter"]=5043,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18025,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4326,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=75893,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7664,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=75893,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=7855,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=504,
+ ["unit"]=0
+ }
+ },
+ [5043]={
+ ["next_chapter"]=5044,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18027,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4326,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=76652,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7741,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=76652,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=7855,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=504,
+ ["unit"]=0
+ }
+ },
+ [5044]={
+ ["next_chapter"]=5045,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18029,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4327,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=77418,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7818,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=77418,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=7855,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=504,
+ ["unit"]=0
+ }
+ },
+ [5045]={
+ ["next_chapter"]=5046,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18031,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4327,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=78193,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7896,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=78193,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=7855,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=504,
+ ["unit"]=0
+ }
+ },
+ [5046]={
+ ["next_chapter"]=5047,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18033,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4328,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=78974,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7975,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=78974,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=7855,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=504,
+ ["unit"]=0
+ }
+ },
+ [5047]={
+ ["next_chapter"]=5048,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18035,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4328,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=79764,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8055,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=79764,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=7855,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=504,
+ ["unit"]=0
+ }
+ },
+ [5048]={
+ ["next_chapter"]=5049,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18037,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4329,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=80562,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8136,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=80562,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=7855,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=504,
+ ["unit"]=0
+ }
+ },
+ [5049]={
+ ["next_chapter"]=5050,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18040,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4329,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=81367,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8217,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=81367,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=7855,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=504,
+ ["unit"]=0
+ }
+ },
+ [5050]={
+ ["next_chapter"]=5051,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=18042,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4330,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=82181,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8299,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=82181,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=8677,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=505,
+ ["unit"]=0
+ }
+ },
+ [5051]={
+ ["next_chapter"]=5052,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18045,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4331,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=83003,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8382,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=83003,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=8677,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=505,
+ ["unit"]=0
+ }
+ },
+ [5052]={
+ ["next_chapter"]=5053,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18047,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4331,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=83833,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8466,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=83833,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=8677,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=505,
+ ["unit"]=0
+ }
+ },
+ [5053]={
+ ["next_chapter"]=5054,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18050,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4332,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=84671,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8551,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=84671,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=8677,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=505,
+ ["unit"]=0
+ }
+ },
+ [5054]={
+ ["next_chapter"]=5055,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18053,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4333,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=85518,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8636,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=85518,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=8677,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=505,
+ ["unit"]=0
+ }
+ },
+ [5055]={
+ ["next_chapter"]=5056,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18056,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4333,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=86373,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8723,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=86373,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=8677,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=505,
+ ["unit"]=0
+ }
+ },
+ [5056]={
+ ["next_chapter"]=5057,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18059,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4334,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=87237,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8810,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=87237,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=8677,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=505,
+ ["unit"]=0
+ }
+ },
+ [5057]={
+ ["next_chapter"]=5058,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18062,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4335,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=88109,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8898,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=88109,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=8677,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=505,
+ ["unit"]=0
+ }
+ },
+ [5058]={
+ ["next_chapter"]=5059,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18066,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4336,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=88990,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8987,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=88990,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=8677,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=505,
+ ["unit"]=0
+ }
+ },
+ [5059]={
+ ["next_chapter"]=5060,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18069,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4337,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=89880,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9077,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=89880,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=8677,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=505,
+ ["unit"]=0
+ }
+ },
+ [5060]={
+ ["next_chapter"]=5061,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=18073,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4337,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=90779,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9168,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=90779,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=9585,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=506,
+ ["unit"]=0
+ }
+ },
+ [5061]={
+ ["next_chapter"]=5062,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18076,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4338,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=91687,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9259,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=91687,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=9585,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=506,
+ ["unit"]=0
+ }
+ },
+ [5062]={
+ ["next_chapter"]=5063,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18080,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4339,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=92604,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9352,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=92604,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=9585,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=506,
+ ["unit"]=0
+ }
+ },
+ [5063]={
+ ["next_chapter"]=5064,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18084,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4340,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=93530,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9445,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=93530,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=9585,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=506,
+ ["unit"]=0
+ }
+ },
+ [5064]={
+ ["next_chapter"]=5065,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18088,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4341,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=94465,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9540,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=94465,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=9585,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=506,
+ ["unit"]=0
+ }
+ },
+ [5065]={
+ ["next_chapter"]=5066,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18092,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4342,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=95410,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9635,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=95410,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=9585,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=506,
+ ["unit"]=0
+ }
+ },
+ [5066]={
+ ["next_chapter"]=5067,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18097,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4343,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=96364,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9732,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=96364,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=9585,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=506,
+ ["unit"]=0
+ }
+ },
+ [5067]={
+ ["next_chapter"]=5068,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18101,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4344,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=97327,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9829,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=97327,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=9585,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=506,
+ ["unit"]=0
+ }
+ },
+ [5068]={
+ ["next_chapter"]=5069,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18106,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4345,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=98301,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9927,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=98301,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=9585,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=506,
+ ["unit"]=0
+ }
+ },
+ [5069]={
+ ["next_chapter"]=5070,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18110,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4346,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=99284,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10027,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=99284,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=9585,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=506,
+ ["unit"]=0
+ }
+ },
+ [5070]={
+ ["next_chapter"]=5071,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=18115,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4348,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=100277,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10127,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=100277,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=10588,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=507,
+ ["unit"]=0
+ }
+ },
+ [5071]={
+ ["next_chapter"]=5072,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18120,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4349,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=101279,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10228,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=101279,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=10588,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=507,
+ ["unit"]=0
+ }
+ },
+ [5072]={
+ ["next_chapter"]=5073,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18125,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4350,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=102292,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10330,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=102292,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=10588,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=507,
+ ["unit"]=0
+ }
+ },
+ [5073]={
+ ["next_chapter"]=5074,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18131,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4351,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=103315,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10434,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=103315,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=10588,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=507,
+ ["unit"]=0
+ }
+ },
+ [5074]={
+ ["next_chapter"]=5075,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18136,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4353,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=104348,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10538,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=104348,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=10588,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=507,
+ ["unit"]=0
+ }
+ },
+ [5075]={
+ ["next_chapter"]=5076,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18142,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4354,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=105392,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10643,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=105392,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=10588,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=507,
+ ["unit"]=0
+ }
+ },
+ [5076]={
+ ["next_chapter"]=5077,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18147,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4355,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=106446,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10750,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=106446,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=10588,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=507,
+ ["unit"]=0
+ }
+ },
+ [5077]={
+ ["next_chapter"]=5078,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18153,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4357,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=107510,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10857,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=107510,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=10588,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=507,
+ ["unit"]=0
+ }
+ },
+ [5078]={
+ ["next_chapter"]=5079,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18159,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4358,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=108585,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10966,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=108585,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=10588,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=507,
+ ["unit"]=0
+ }
+ },
+ [5079]={
+ ["next_chapter"]=5080,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18166,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4360,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=109671,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11076,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=109671,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=10588,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=507,
+ ["unit"]=0
+ }
+ },
+ [5080]={
+ ["next_chapter"]=5081,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=18172,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4361,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=110768,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11186,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=110768,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=11695,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=508,
+ ["unit"]=0
+ }
+ },
+ [5081]={
+ ["next_chapter"]=5082,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18179,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4363,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=111875,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11298,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=111875,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=11695,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=508,
+ ["unit"]=0
+ }
+ },
+ [5082]={
+ ["next_chapter"]=5083,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18185,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4364,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=112994,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11411,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=112994,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=11695,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=508,
+ ["unit"]=0
+ }
+ },
+ [5083]={
+ ["next_chapter"]=5084,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18192,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4366,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=114124,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11525,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=114124,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=11695,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=508,
+ ["unit"]=0
+ }
+ },
+ [5084]={
+ ["next_chapter"]=5085,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18199,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4368,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=115265,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11641,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=115265,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=11695,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=508,
+ ["unit"]=0
+ }
+ },
+ [5085]={
+ ["next_chapter"]=5086,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18206,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4370,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=116418,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11757,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=116418,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=11695,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=508,
+ ["unit"]=0
+ }
+ },
+ [5086]={
+ ["next_chapter"]=5087,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18214,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4371,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=117582,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11875,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=117582,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=11695,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=508,
+ ["unit"]=0
+ }
+ },
+ [5087]={
+ ["next_chapter"]=5088,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18221,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4373,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=118758,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11993,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=118758,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=11695,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=508,
+ ["unit"]=0
+ }
+ },
+ [5088]={
+ ["next_chapter"]=5089,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18229,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4375,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=119946,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12113,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=119946,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=11695,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=508,
+ ["unit"]=0
+ }
+ },
+ [5089]={
+ ["next_chapter"]=5090,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18237,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4377,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=121145,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12235,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=121145,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=11695,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=508,
+ ["unit"]=0
+ }
+ },
+ [5090]={
+ ["next_chapter"]=5091,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=18245,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4379,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=122356,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12357,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=122356,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=12919,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=509,
+ ["unit"]=0
+ }
+ },
+ [5091]={
+ ["next_chapter"]=5092,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18253,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4381,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=123580,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12481,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=123580,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=12919,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=509,
+ ["unit"]=0
+ }
+ },
+ [5092]={
+ ["next_chapter"]=5093,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18262,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4383,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=124816,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12605,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=124816,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=12919,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=509,
+ ["unit"]=0
+ }
+ },
+ [5093]={
+ ["next_chapter"]=5094,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18270,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4385,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=126064,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12731,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=126064,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=12919,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=509,
+ ["unit"]=0
+ }
+ },
+ [5094]={
+ ["next_chapter"]=5095,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18279,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4387,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=127325,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12859,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=127325,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=12919,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=509,
+ ["unit"]=0
+ }
+ },
+ [5095]={
+ ["next_chapter"]=5096,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18288,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4389,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=128598,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12987,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=128598,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=12919,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=509,
+ ["unit"]=0
+ }
+ },
+ [5096]={
+ ["next_chapter"]=5097,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18297,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4391,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=129884,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13117,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=129884,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=12919,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=509,
+ ["unit"]=0
+ }
+ },
+ [5097]={
+ ["next_chapter"]=5098,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18307,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4394,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=131183,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13248,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=131183,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=12919,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=509,
+ ["unit"]=0
+ }
+ },
+ [5098]={
+ ["next_chapter"]=5099,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18316,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4396,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=132495,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13381,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=132495,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=12919,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=509,
+ ["unit"]=0
+ }
+ },
+ [5099]={
+ ["next_chapter"]=5100,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18326,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4398,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=133819,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13515,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=133819,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=12919,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=509,
+ ["unit"]=0
+ }
+ },
+ [5100]={
+ ["next_chapter"]=5101,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=18336,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4401,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=135158,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13650,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=135158,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=52,
+ ["grasp_gold_reward"]={
+ ["value"]=14270,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=510,
+ ["unit"]=0
+ }
+ },
+ [5101]={
+ ["next_chapter"]=5102,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18346,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4403,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=136509,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13786,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=136509,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=14270,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=510,
+ ["unit"]=0
+ }
+ },
+ [5102]={
+ ["next_chapter"]=5103,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18357,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4406,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=137874,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13924,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=137874,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=14270,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=510,
+ ["unit"]=0
+ }
+ },
+ [5103]={
+ ["next_chapter"]=5104,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18367,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4408,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=139253,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14063,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=139253,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=14270,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=510,
+ ["unit"]=0
+ }
+ },
+ [5104]={
+ ["next_chapter"]=5105,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18378,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4411,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=140646,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14204,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=140646,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=14270,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=510,
+ ["unit"]=0
+ }
+ },
+ [5105]={
+ ["next_chapter"]=5106,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18389,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4413,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=142052,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14346,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=142052,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=14270,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=510,
+ ["unit"]=0
+ }
+ },
+ [5106]={
+ ["next_chapter"]=5107,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18400,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4416,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=143473,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14490,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=143473,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=14270,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=510,
+ ["unit"]=0
+ }
+ },
+ [5107]={
+ ["next_chapter"]=5108,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18412,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4419,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=144907,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14635,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=144907,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=14270,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=510,
+ ["unit"]=0
+ }
+ },
+ [5108]={
+ ["next_chapter"]=5109,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18423,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4422,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=146356,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14781,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=146356,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=14270,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=510,
+ ["unit"]=0
+ }
+ },
+ [5109]={
+ ["next_chapter"]=5110,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18435,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4424,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=147820,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14929,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=147820,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=14270,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=510,
+ ["unit"]=0
+ }
+ },
+ [5110]={
+ ["next_chapter"]=5111,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=18447,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4427,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=149298,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15078,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=149298,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=15763,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=511,
+ ["unit"]=0
+ }
+ },
+ [5111]={
+ ["next_chapter"]=5112,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18460,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4430,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=150791,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15229,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=150791,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=15763,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=511,
+ ["unit"]=0
+ }
+ },
+ [5112]={
+ ["next_chapter"]=5113,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18472,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4433,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=152299,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15381,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=152299,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=15763,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=511,
+ ["unit"]=0
+ }
+ },
+ [5113]={
+ ["next_chapter"]=5114,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18485,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4436,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=153822,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15535,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=153822,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=15763,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=511,
+ ["unit"]=0
+ }
+ },
+ [5114]={
+ ["next_chapter"]=5115,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18498,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4439,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=155360,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15690,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=155360,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=15763,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=511,
+ ["unit"]=0
+ }
+ },
+ [5115]={
+ ["next_chapter"]=5116,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18511,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4443,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=156914,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15847,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=156914,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=15763,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=511,
+ ["unit"]=0
+ }
+ },
+ [5116]={
+ ["next_chapter"]=5117,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18524,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4446,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=158483,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16006,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=158483,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=15763,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=511,
+ ["unit"]=0
+ }
+ },
+ [5117]={
+ ["next_chapter"]=5118,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18538,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4449,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=160068,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16166,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=160068,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=15763,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=511,
+ ["unit"]=0
+ }
+ },
+ [5118]={
+ ["next_chapter"]=5119,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18552,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4452,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=161668,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16327,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=161668,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=15763,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=511,
+ ["unit"]=0
+ }
+ },
+ [5119]={
+ ["next_chapter"]=5120,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18566,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4456,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=163285,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16491,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=163285,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=15763,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=511,
+ ["unit"]=0
+ }
+ },
+ [5120]={
+ ["next_chapter"]=5121,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=18581,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4459,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=164918,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16656,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=164918,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=17412,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=512,
+ ["unit"]=0
+ }
+ },
+ [5121]={
+ ["next_chapter"]=5122,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18595,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4463,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=166567,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16822,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=166567,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=17412,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=512,
+ ["unit"]=0
+ }
+ },
+ [5122]={
+ ["next_chapter"]=5123,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18610,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4466,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=168233,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16990,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=168233,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=17412,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=512,
+ ["unit"]=0
+ }
+ },
+ [5123]={
+ ["next_chapter"]=5124,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18625,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4470,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=169915,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17160,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=169915,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=17412,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=512,
+ ["unit"]=0
+ }
+ },
+ [5124]={
+ ["next_chapter"]=5125,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18641,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4474,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=171614,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17332,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=171614,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=17412,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=512,
+ ["unit"]=0
+ }
+ },
+ [5125]={
+ ["next_chapter"]=5126,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18656,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4478,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=173331,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17505,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=173331,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=17412,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=512,
+ ["unit"]=0
+ }
+ },
+ [5126]={
+ ["next_chapter"]=5127,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18672,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4481,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=175064,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17680,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=175064,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=17412,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=512,
+ ["unit"]=0
+ }
+ },
+ [5127]={
+ ["next_chapter"]=5128,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18688,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4485,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=176814,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17857,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=176814,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=17412,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=512,
+ ["unit"]=0
+ }
+ },
+ [5128]={
+ ["next_chapter"]=5129,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18705,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4489,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=178583,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18036,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=178583,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=17412,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=512,
+ ["unit"]=0
+ }
+ },
+ [5129]={
+ ["next_chapter"]=5130,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18721,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4493,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=180368,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18216,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=180368,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=17412,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=512,
+ ["unit"]=0
+ }
+ },
+ [5130]={
+ ["next_chapter"]=5131,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=18738,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4497,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=182172,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18398,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=182172,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=19234,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=513,
+ ["unit"]=0
+ }
+ },
+ [5131]={
+ ["next_chapter"]=5132,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18755,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4501,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=183994,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18582,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=183994,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=19234,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=513,
+ ["unit"]=0
+ }
+ },
+ [5132]={
+ ["next_chapter"]=5133,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18773,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4505,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=185834,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18768,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=185834,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=19234,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=513,
+ ["unit"]=0
+ }
+ },
+ [5133]={
+ ["next_chapter"]=5134,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18790,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4510,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=187692,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18956,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=187692,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=19234,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=513,
+ ["unit"]=0
+ }
+ },
+ [5134]={
+ ["next_chapter"]=5135,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18808,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4514,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=189569,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19145,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=189569,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=19234,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=513,
+ ["unit"]=0
+ }
+ },
+ [5135]={
+ ["next_chapter"]=5136,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18827,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4518,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=191465,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19337,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=191465,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=19234,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=513,
+ ["unit"]=0
+ }
+ },
+ [5136]={
+ ["next_chapter"]=5137,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18845,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4523,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=193379,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19530,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=193379,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=19234,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=513,
+ ["unit"]=0
+ }
+ },
+ [5137]={
+ ["next_chapter"]=5138,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18864,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4527,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=195313,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19726,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=195313,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=19234,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=513,
+ ["unit"]=0
+ }
+ },
+ [5138]={
+ ["next_chapter"]=5139,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18883,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4532,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=197266,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19923,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=197266,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=19234,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=513,
+ ["unit"]=0
+ }
+ },
+ [5139]={
+ ["next_chapter"]=5140,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18902,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4537,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=199239,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20122,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=199239,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=19234,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=513,
+ ["unit"]=0
+ }
+ },
+ [5140]={
+ ["next_chapter"]=5141,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=18922,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4541,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=201231,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20323,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=201231,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=21247,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=514,
+ ["unit"]=0
+ }
+ },
+ [5141]={
+ ["next_chapter"]=5142,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18942,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4546,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=203244,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20527,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=203244,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=21247,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=514,
+ ["unit"]=0
+ }
+ },
+ [5142]={
+ ["next_chapter"]=5143,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18962,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4551,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=205276,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20732,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=205276,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=21247,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=514,
+ ["unit"]=0
+ }
+ },
+ [5143]={
+ ["next_chapter"]=5144,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18983,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4556,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=207329,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20939,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=207329,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=21247,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=514,
+ ["unit"]=0
+ }
+ },
+ [5144]={
+ ["next_chapter"]=5145,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19003,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4561,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=209402,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21149,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=209402,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=21247,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=514,
+ ["unit"]=0
+ }
+ },
+ [5145]={
+ ["next_chapter"]=5146,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19024,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4566,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=211496,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21360,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=211496,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=21247,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=514,
+ ["unit"]=0
+ }
+ },
+ [5146]={
+ ["next_chapter"]=5147,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19046,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4571,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=213611,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21574,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=213611,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=21247,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=514,
+ ["unit"]=0
+ }
+ },
+ [5147]={
+ ["next_chapter"]=5148,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19067,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4576,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=215747,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21789,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=215747,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=21247,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=514,
+ ["unit"]=0
+ }
+ },
+ [5148]={
+ ["next_chapter"]=5149,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19089,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4581,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=217905,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22007,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=217905,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=21247,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=514,
+ ["unit"]=0
+ }
+ },
+ [5149]={
+ ["next_chapter"]=5150,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19111,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4587,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=220084,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22227,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=220084,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=21247,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=514,
+ ["unit"]=0
+ }
+ },
+ [5150]={
+ ["next_chapter"]=5151,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=19134,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4592,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=222285,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22450,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=222285,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=23469,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=515,
+ ["unit"]=0
+ }
+ },
+ [5151]={
+ ["next_chapter"]=5152,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19157,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4598,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=224507,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22674,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=224507,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=23469,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=515,
+ ["unit"]=0
+ }
+ },
+ [5152]={
+ ["next_chapter"]=5153,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19180,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4603,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=226753,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22901,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=226753,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=23469,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=515,
+ ["unit"]=0
+ }
+ },
+ [5153]={
+ ["next_chapter"]=5154,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19203,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4609,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=229020,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23130,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=229020,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=23469,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=515,
+ ["unit"]=0
+ }
+ },
+ [5154]={
+ ["next_chapter"]=5155,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19227,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4615,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=231310,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23361,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=231310,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=23469,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=515,
+ ["unit"]=0
+ }
+ },
+ [5155]={
+ ["next_chapter"]=5156,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19251,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4620,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=233623,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23595,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=233623,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=23469,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=515,
+ ["unit"]=0
+ }
+ },
+ [5156]={
+ ["next_chapter"]=5157,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19276,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4626,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=235960,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23831,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=235960,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=23469,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=515,
+ ["unit"]=0
+ }
+ },
+ [5157]={
+ ["next_chapter"]=5158,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19300,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4632,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=238319,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24069,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=238319,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=23469,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=515,
+ ["unit"]=0
+ }
+ },
+ [5158]={
+ ["next_chapter"]=5159,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19325,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4638,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=240702,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24310,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=240702,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=23469,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=515,
+ ["unit"]=0
+ }
+ },
+ [5159]={
+ ["next_chapter"]=5160,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19351,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4644,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=243109,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24553,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=243109,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=23469,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=515,
+ ["unit"]=0
+ }
+ },
+ [5160]={
+ ["next_chapter"]=5161,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=19376,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4650,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=245540,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24799,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=245540,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=25925,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=516,
+ ["unit"]=0
+ }
+ },
+ [5161]={
+ ["next_chapter"]=5162,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19402,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4657,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=247996,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25047,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=247996,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=25925,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=516,
+ ["unit"]=0
+ }
+ },
+ [5162]={
+ ["next_chapter"]=5163,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19429,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4663,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=250476,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25297,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=250476,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=25925,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=516,
+ ["unit"]=0
+ }
+ },
+ [5163]={
+ ["next_chapter"]=5164,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19455,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4669,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=252981,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25550,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=252981,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=25925,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=516,
+ ["unit"]=0
+ }
+ },
+ [5164]={
+ ["next_chapter"]=5165,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19482,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4676,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=255510,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25805,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=255510,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=25925,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=516,
+ ["unit"]=0
+ }
+ },
+ [5165]={
+ ["next_chapter"]=5166,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19509,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4682,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=258066,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26064,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=258066,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=25925,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=516,
+ ["unit"]=0
+ }
+ },
+ [5166]={
+ ["next_chapter"]=5167,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19537,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4689,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=260646,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26324,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=260646,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=25925,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=516,
+ ["unit"]=0
+ }
+ },
+ [5167]={
+ ["next_chapter"]=5168,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19565,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4696,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=263253,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26587,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=263253,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=25925,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=516,
+ ["unit"]=0
+ }
+ },
+ [5168]={
+ ["next_chapter"]=5169,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19593,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4702,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=265885,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26853,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=265885,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=25925,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=516,
+ ["unit"]=0
+ }
+ },
+ [5169]={
+ ["next_chapter"]=5170,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19622,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4709,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=268544,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27122,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=268544,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=25925,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=516,
+ ["unit"]=0
+ }
+ },
+ [5170]={
+ ["next_chapter"]=5171,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=19651,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4716,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=271229,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27393,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=271229,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=28637,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=517,
+ ["unit"]=0
+ }
+ },
+ [5171]={
+ ["next_chapter"]=5172,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19680,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4723,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=273942,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27667,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=273942,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=28637,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=517,
+ ["unit"]=0
+ }
+ },
+ [5172]={
+ ["next_chapter"]=5173,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19710,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4730,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=276681,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27944,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=276681,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=28637,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=517,
+ ["unit"]=0
+ }
+ },
+ [5173]={
+ ["next_chapter"]=5174,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19740,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4738,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=279448,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28223,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=279448,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=28637,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=517,
+ ["unit"]=0
+ }
+ },
+ [5174]={
+ ["next_chapter"]=5175,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19770,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4745,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=282242,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28505,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=282242,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=28637,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=517,
+ ["unit"]=0
+ }
+ },
+ [5175]={
+ ["next_chapter"]=5176,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19801,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4752,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=285065,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28790,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=285065,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=28637,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=517,
+ ["unit"]=0
+ }
+ },
+ [5176]={
+ ["next_chapter"]=5177,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19832,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4760,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=287916,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29078,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=287916,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=28637,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=517,
+ ["unit"]=0
+ }
+ },
+ [5177]={
+ ["next_chapter"]=5178,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19863,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4767,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=290795,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29369,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=290795,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=28637,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=517,
+ ["unit"]=0
+ }
+ },
+ [5178]={
+ ["next_chapter"]=5179,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19895,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4775,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=293703,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29663,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=293703,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=28637,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=517,
+ ["unit"]=0
+ }
+ },
+ [5179]={
+ ["next_chapter"]=5180,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19927,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4782,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=296640,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29960,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=296640,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=28637,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=517,
+ ["unit"]=0
+ }
+ },
+ [5180]={
+ ["next_chapter"]=5181,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=19960,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4790,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=299606,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30259,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=299606,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=31633,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=518,
+ ["unit"]=0
+ }
+ },
+ [5181]={
+ ["next_chapter"]=5182,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19992,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4798,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=302602,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30562,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=302602,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=31633,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=518,
+ ["unit"]=0
+ }
+ },
+ [5182]={
+ ["next_chapter"]=5183,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20026,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4806,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=305628,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30867,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=305628,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=31633,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=518,
+ ["unit"]=0
+ }
+ },
+ [5183]={
+ ["next_chapter"]=5184,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20059,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4814,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=308684,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31176,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=308684,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=31633,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=518,
+ ["unit"]=0
+ }
+ },
+ [5184]={
+ ["next_chapter"]=5185,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20093,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4822,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=311771,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31488,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=311771,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=31633,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=518,
+ ["unit"]=0
+ }
+ },
+ [5185]={
+ ["next_chapter"]=5186,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20127,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4831,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=314889,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31803,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=314889,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=31633,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=518,
+ ["unit"]=0
+ }
+ },
+ [5186]={
+ ["next_chapter"]=5187,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20162,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4839,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=318038,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32121,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=318038,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=31633,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=518,
+ ["unit"]=0
+ }
+ },
+ [5187]={
+ ["next_chapter"]=5188,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20197,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4847,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=321218,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32442,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=321218,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=31633,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=518,
+ ["unit"]=0
+ }
+ },
+ [5188]={
+ ["next_chapter"]=5189,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20233,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4856,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=324430,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32766,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=324430,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=31633,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=518,
+ ["unit"]=0
+ }
+ },
+ [5189]={
+ ["next_chapter"]=5190,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20268,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4864,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=327675,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33094,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=327675,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=31633,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=518,
+ ["unit"]=0
+ }
+ },
+ [5190]={
+ ["next_chapter"]=5191,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=20305,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4873,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=330951,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33425,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=330951,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=34943,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=519,
+ ["unit"]=0
+ }
+ },
+ [5191]={
+ ["next_chapter"]=5192,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20341,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4882,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=334261,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33759,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=334261,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=34943,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=519,
+ ["unit"]=0
+ }
+ },
+ [5192]={
+ ["next_chapter"]=5193,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20378,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4891,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=337604,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34097,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=337604,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=34943,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=519,
+ ["unit"]=0
+ }
+ },
+ [5193]={
+ ["next_chapter"]=5194,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20416,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4900,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=340980,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34438,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=340980,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=34943,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=519,
+ ["unit"]=0
+ }
+ },
+ [5194]={
+ ["next_chapter"]=5195,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20453,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4909,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=344389,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34782,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=344389,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=34943,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=519,
+ ["unit"]=0
+ }
+ },
+ [5195]={
+ ["next_chapter"]=5196,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20491,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4918,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=347833,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35130,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=347833,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=34943,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=519,
+ ["unit"]=0
+ }
+ },
+ [5196]={
+ ["next_chapter"]=5197,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20530,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4927,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=351312,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35481,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=351312,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=34943,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=519,
+ ["unit"]=0
+ }
+ },
+ [5197]={
+ ["next_chapter"]=5198,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20569,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4937,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=354825,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35836,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=354825,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=34943,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=519,
+ ["unit"]=0
+ }
+ },
+ [5198]={
+ ["next_chapter"]=5199,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20608,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4946,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=358373,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36195,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=358373,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=34943,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=519,
+ ["unit"]=0
+ }
+ },
+ [5199]={
+ ["next_chapter"]=5200,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20648,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4955,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=361957,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36557,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=361957,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=34943,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=519,
+ ["unit"]=0
+ }
+ },
+ [5200]={
+ ["next_chapter"]=5201,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=20688,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4965,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=365576,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36922,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=365576,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=38598,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=520,
+ ["unit"]=0
+ }
+ },
+ [5201]={
+ ["next_chapter"]=5202,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20729,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4975,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=369232,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37291,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=369232,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=38598,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=520,
+ ["unit"]=0
+ }
+ },
+ [5202]={
+ ["next_chapter"]=5203,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20769,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4985,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=372924,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37664,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=372924,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=38598,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=520,
+ ["unit"]=0
+ }
+ },
+ [5203]={
+ ["next_chapter"]=5204,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20811,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=4995,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=376654,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=38041,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=376654,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=38598,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=520,
+ ["unit"]=0
+ }
+ },
+ [5204]={
+ ["next_chapter"]=5205,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20853,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5005,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=380420,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=38421,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=380420,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=38598,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=520,
+ ["unit"]=0
+ }
+ },
+ [5205]={
+ ["next_chapter"]=5206,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20895,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5015,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=384224,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=38806,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=384224,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=38598,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=520,
+ ["unit"]=0
+ }
+ },
+ [5206]={
+ ["next_chapter"]=5207,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20937,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5025,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=388067,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39194,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=388067,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=38598,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=520,
+ ["unit"]=0
+ }
+ },
+ [5207]={
+ ["next_chapter"]=5208,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20980,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5035,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=391947,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39586,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=391947,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=38598,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=520,
+ ["unit"]=0
+ }
+ },
+ [5208]={
+ ["next_chapter"]=5209,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21024,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5046,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=395867,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39981,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=395867,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=38598,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=520,
+ ["unit"]=0
+ }
+ },
+ [5209]={
+ ["next_chapter"]=5210,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21067,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5056,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=399825,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=40381,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=399825,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=38598,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=520,
+ ["unit"]=0
+ }
+ },
+ [5210]={
+ ["next_chapter"]=5211,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=21112,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5067,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=403824,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=40785,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=403824,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=42637,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=521,
+ ["unit"]=0
+ }
+ },
+ [5211]={
+ ["next_chapter"]=5212,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21156,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5078,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=407862,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41193,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=407862,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=42637,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=521,
+ ["unit"]=0
+ }
+ },
+ [5212]={
+ ["next_chapter"]=5213,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21201,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5088,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=411941,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41605,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=411941,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=42637,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=521,
+ ["unit"]=0
+ }
+ },
+ [5213]={
+ ["next_chapter"]=5214,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21247,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5099,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=416060,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=42021,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=416060,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=42637,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=521,
+ ["unit"]=0
+ }
+ },
+ [5214]={
+ ["next_chapter"]=5215,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21293,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5110,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=420221,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=42441,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=420221,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=42637,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=521,
+ ["unit"]=0
+ }
+ },
+ [5215]={
+ ["next_chapter"]=5216,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21339,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5121,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=424423,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=42866,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=424423,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=42637,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=521,
+ ["unit"]=0
+ }
+ },
+ [5216]={
+ ["next_chapter"]=5217,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21386,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5133,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=428667,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=43294,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=428667,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=42637,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=521,
+ ["unit"]=0
+ }
+ },
+ [5217]={
+ ["next_chapter"]=5218,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21433,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5144,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=432954,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=43727,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=432954,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=42637,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=521,
+ ["unit"]=0
+ }
+ },
+ [5218]={
+ ["next_chapter"]=5219,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21481,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5155,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=437283,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=44165,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=437283,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=42637,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=521,
+ ["unit"]=0
+ }
+ },
+ [5219]={
+ ["next_chapter"]=5220,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21529,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5167,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=441656,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=44606,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=441656,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=42637,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=521,
+ ["unit"]=0
+ }
+ },
+ [5220]={
+ ["next_chapter"]=5221,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=21578,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5179,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=446073,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=45052,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=446073,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=47097,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=522,
+ ["unit"]=0
+ }
+ },
+ [5221]={
+ ["next_chapter"]=5222,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21627,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5190,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=450533,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=45503,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=450533,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=47097,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=522,
+ ["unit"]=0
+ }
+ },
+ [5222]={
+ ["next_chapter"]=5223,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21676,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5202,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=455039,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=45958,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=455039,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=47097,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=522,
+ ["unit"]=0
+ }
+ },
+ [5223]={
+ ["next_chapter"]=5224,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21726,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5214,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=459589,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=46417,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=459589,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=47097,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=522,
+ ["unit"]=0
+ }
+ },
+ [5224]={
+ ["next_chapter"]=5225,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21776,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5226,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=464185,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=46882,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=464185,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=47097,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=522,
+ ["unit"]=0
+ }
+ },
+ [5225]={
+ ["next_chapter"]=5226,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21827,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5239,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=468827,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=47350,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=468827,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=47097,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=522,
+ ["unit"]=0
+ }
+ },
+ [5226]={
+ ["next_chapter"]=5227,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21879,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5251,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=473515,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=47824,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=473515,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=47097,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=522,
+ ["unit"]=0
+ }
+ },
+ [5227]={
+ ["next_chapter"]=5228,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21930,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5263,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=478250,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=48302,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=478250,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=47097,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=522,
+ ["unit"]=0
+ }
+ },
+ [5228]={
+ ["next_chapter"]=5229,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21982,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5276,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=483033,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=48785,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=483033,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=47097,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=522,
+ ["unit"]=0
+ }
+ },
+ [5229]={
+ ["next_chapter"]=5230,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22035,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5288,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=487863,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=49273,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=487863,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=47097,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=522,
+ ["unit"]=0
+ }
+ },
+ [5230]={
+ ["next_chapter"]=5231,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=22088,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5301,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=492742,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=49766,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=492742,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=52025,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=523,
+ ["unit"]=0
+ }
+ },
+ [5231]={
+ ["next_chapter"]=5232,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22142,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5314,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=497669,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=50264,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=497669,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=52025,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=523,
+ ["unit"]=0
+ }
+ },
+ [5232]={
+ ["next_chapter"]=5233,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22196,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5327,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=502646,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=50766,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=502646,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=52025,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=523,
+ ["unit"]=0
+ }
+ },
+ [5233]={
+ ["next_chapter"]=5234,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22250,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5340,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=507672,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=51274,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=507672,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=52025,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=523,
+ ["unit"]=0
+ }
+ },
+ [5234]={
+ ["next_chapter"]=5235,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22305,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5353,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=512749,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=51787,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=512749,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=52025,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=523,
+ ["unit"]=0
+ }
+ },
+ [5235]={
+ ["next_chapter"]=5236,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22361,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5367,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=517876,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=52304,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=517876,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=52025,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=523,
+ ["unit"]=0
+ }
+ },
+ [5236]={
+ ["next_chapter"]=5237,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22416,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5380,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=523055,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=52828,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=523055,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=52025,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=523,
+ ["unit"]=0
+ }
+ },
+ [5237]={
+ ["next_chapter"]=5238,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22473,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5393,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=528286,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=53356,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=528286,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=52025,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=523,
+ ["unit"]=0
+ }
+ },
+ [5238]={
+ ["next_chapter"]=5239,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22530,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5407,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=533569,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=53889,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=533569,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=52025,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=523,
+ ["unit"]=0
+ }
+ },
+ [5239]={
+ ["next_chapter"]=5240,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22587,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5421,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=538904,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=54428,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=538904,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=52025,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=523,
+ ["unit"]=0
+ }
+ },
+ [5240]={
+ ["next_chapter"]=5241,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=22645,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5435,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=544293,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=54973,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=544293,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=57468,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=524,
+ ["unit"]=0
+ }
+ },
+ [5241]={
+ ["next_chapter"]=5242,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22703,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5449,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=549736,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=55522,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=549736,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=57468,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=524,
+ ["unit"]=0
+ }
+ },
+ [5242]={
+ ["next_chapter"]=5243,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22762,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5463,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=555234,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=56078,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=555234,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=57468,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=524,
+ ["unit"]=0
+ }
+ },
+ [5243]={
+ ["next_chapter"]=5244,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22821,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5477,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=560786,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=56638,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=560786,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=57468,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=524,
+ ["unit"]=0
+ }
+ },
+ [5244]={
+ ["next_chapter"]=5245,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22881,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5491,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=566394,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=57205,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=566394,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=57468,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=524,
+ ["unit"]=0
+ }
+ },
+ [5245]={
+ ["next_chapter"]=5246,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22941,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5506,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=572058,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=57777,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=572058,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=57468,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=524,
+ ["unit"]=0
+ }
+ },
+ [5246]={
+ ["next_chapter"]=5247,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23002,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5520,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=577778,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=58355,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=577778,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=57468,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=524,
+ ["unit"]=0
+ }
+ },
+ [5247]={
+ ["next_chapter"]=5248,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23063,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5535,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=583556,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=58938,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=583556,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=57468,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=524,
+ ["unit"]=0
+ }
+ },
+ [5248]={
+ ["next_chapter"]=5249,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23125,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5550,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=589392,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=59527,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=589392,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=57468,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=524,
+ ["unit"]=0
+ }
+ },
+ [5249]={
+ ["next_chapter"]=5250,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23187,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5565,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=595286,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=60123,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=595286,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=57468,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=524,
+ ["unit"]=0
+ }
+ },
+ [5250]={
+ ["next_chapter"]=5251,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=23250,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5580,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=601238,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=60724,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=601238,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=63480,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=525,
+ ["unit"]=0
+ }
+ },
+ [5251]={
+ ["next_chapter"]=5252,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23313,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5595,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=607251,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=61331,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=607251,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=63480,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=525,
+ ["unit"]=0
+ }
+ },
+ [5252]={
+ ["next_chapter"]=5253,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23377,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5610,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=613323,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=61945,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=613323,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=63480,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=525,
+ ["unit"]=0
+ }
+ },
+ [5253]={
+ ["next_chapter"]=5254,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23441,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5626,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=619457,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=62564,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=619457,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=63480,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=525,
+ ["unit"]=0
+ }
+ },
+ [5254]={
+ ["next_chapter"]=5255,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23506,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5641,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=625651,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=63190,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=625651,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=63480,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=525,
+ ["unit"]=0
+ }
+ },
+ [5255]={
+ ["next_chapter"]=5256,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23571,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5657,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=631908,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=63822,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=631908,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=63480,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=525,
+ ["unit"]=0
+ }
+ },
+ [5256]={
+ ["next_chapter"]=5257,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23637,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5673,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=638227,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=64460,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=638227,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=63480,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=525,
+ ["unit"]=0
+ }
+ },
+ [5257]={
+ ["next_chapter"]=5258,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23703,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5689,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=644609,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=65104,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=644609,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=63480,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=525,
+ ["unit"]=0
+ }
+ },
+ [5258]={
+ ["next_chapter"]=5259,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23770,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5705,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=651055,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=65756,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=651055,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=63480,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=525,
+ ["unit"]=0
+ }
+ },
+ [5259]={
+ ["next_chapter"]=5260,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23838,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5721,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=657566,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=66413,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=657566,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=63480,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=525,
+ ["unit"]=0
+ }
+ },
+ [5260]={
+ ["next_chapter"]=5261,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=23906,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5737,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=664141,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=67077,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=664141,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=70122,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=526,
+ ["unit"]=0
+ }
+ },
+ [5261]={
+ ["next_chapter"]=5262,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23974,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5754,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=670783,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=67748,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=670783,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=70122,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=526,
+ ["unit"]=0
+ }
+ },
+ [5262]={
+ ["next_chapter"]=5263,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24043,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5770,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=677491,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=68425,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=677491,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=70122,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=526,
+ ["unit"]=0
+ }
+ },
+ [5263]={
+ ["next_chapter"]=5264,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24112,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5787,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=684265,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=69110,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=684265,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=70122,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=526,
+ ["unit"]=0
+ }
+ },
+ [5264]={
+ ["next_chapter"]=5265,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24182,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5804,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=691108,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=69801,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=691108,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=70122,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=526,
+ ["unit"]=0
+ }
+ },
+ [5265]={
+ ["next_chapter"]=5266,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24253,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5821,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=698019,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=70499,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=698019,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=70122,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=526,
+ ["unit"]=0
+ }
+ },
+ [5266]={
+ ["next_chapter"]=5267,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24324,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5838,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=704999,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=71204,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=704999,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=70122,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=526,
+ ["unit"]=0
+ }
+ },
+ [5267]={
+ ["next_chapter"]=5268,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24395,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5855,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=712049,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=71916,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=712049,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=70122,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=526,
+ ["unit"]=0
+ }
+ },
+ [5268]={
+ ["next_chapter"]=5269,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24468,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5872,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=719170,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=72635,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=719170,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=70122,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=526,
+ ["unit"]=0
+ }
+ },
+ [5269]={
+ ["next_chapter"]=5270,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24540,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5890,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=726362,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=73361,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=726362,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=70122,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=526,
+ ["unit"]=0
+ }
+ },
+ [5270]={
+ ["next_chapter"]=5271,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=24613,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5907,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=733625,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=74095,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=733625,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=77458,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=527,
+ ["unit"]=0
+ }
+ },
+ [5271]={
+ ["next_chapter"]=5272,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24687,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5925,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=740961,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=74836,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=740961,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=77458,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=527,
+ ["unit"]=0
+ }
+ },
+ [5272]={
+ ["next_chapter"]=5273,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24762,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5943,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=748371,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=75584,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=748371,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=77458,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=527,
+ ["unit"]=0
+ }
+ },
+ [5273]={
+ ["next_chapter"]=5274,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24836,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5961,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=755855,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=76340,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=755855,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=77458,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=527,
+ ["unit"]=0
+ }
+ },
+ [5274]={
+ ["next_chapter"]=5275,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24912,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5979,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=763413,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=77104,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=763413,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=77458,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=527,
+ ["unit"]=0
+ }
+ },
+ [5275]={
+ ["next_chapter"]=5276,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24988,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=5997,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=771047,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=77875,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=771047,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=77458,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=527,
+ ["unit"]=0
+ }
+ },
+ [5276]={
+ ["next_chapter"]=5277,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25064,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=6015,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=778758,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=78653,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=778758,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=77458,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=527,
+ ["unit"]=0
+ }
+ },
+ [5277]={
+ ["next_chapter"]=5278,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25141,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=6034,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=786545,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=79440,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=786545,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=77458,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=527,
+ ["unit"]=0
+ }
+ },
+ [5278]={
+ ["next_chapter"]=5279,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25219,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=6053,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=794411,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=80234,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=794411,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=77458,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=527,
+ ["unit"]=0
+ }
+ },
+ [5279]={
+ ["next_chapter"]=5280,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25297,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=6071,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=802355,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=81037,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=802355,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=77458,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=527,
+ ["unit"]=0
+ }
+ },
+ [5280]={
+ ["next_chapter"]=5281,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=25376,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=6090,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=810379,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=81847,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=810379,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=85562,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=528,
+ ["unit"]=0
+ }
+ },
+ [5281]={
+ ["next_chapter"]=5282,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25455,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=6109,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=818482,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=82666,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=818482,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=85562,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=528,
+ ["unit"]=0
+ }
+ },
+ [5282]={
+ ["next_chapter"]=5283,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25535,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=6128,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=826667,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=83492,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=826667,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=85562,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=528,
+ ["unit"]=0
+ }
+ },
+ [5283]={
+ ["next_chapter"]=5284,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25616,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=6148,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=834934,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=84327,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=834934,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=85562,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=528,
+ ["unit"]=0
+ }
+ },
+ [5284]={
+ ["next_chapter"]=5285,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25697,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=6167,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=843283,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=85171,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=843283,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=85562,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=528,
+ ["unit"]=0
+ }
+ },
+ [5285]={
+ ["next_chapter"]=5286,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25778,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=6187,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=851716,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=86022,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=851716,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=85562,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=528,
+ ["unit"]=0
+ }
+ },
+ [5286]={
+ ["next_chapter"]=5287,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25860,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=6206,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=860233,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=86882,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=860233,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=85562,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=528,
+ ["unit"]=0
+ }
+ },
+ [5287]={
+ ["next_chapter"]=5288,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25943,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=6226,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=868836,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=87751,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=868836,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=85562,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=528,
+ ["unit"]=0
+ }
+ },
+ [5288]={
+ ["next_chapter"]=5289,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26026,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=6246,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=877524,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=88629,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=877524,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=85562,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=528,
+ ["unit"]=0
+ }
+ },
+ [5289]={
+ ["next_chapter"]=5290,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26110,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=6266,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=886299,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=89515,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=886299,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=85562,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=528,
+ ["unit"]=0
+ }
+ },
+ [5290]={
+ ["next_chapter"]=5291,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=26195,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=6287,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=895162,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=90410,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=895162,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=94513,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=529,
+ ["unit"]=0
+ }
+ },
+ [5291]={
+ ["next_chapter"]=5292,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26280,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=6307,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=904114,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=91314,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=904114,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=94513,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=529,
+ ["unit"]=0
+ }
+ },
+ [5292]={
+ ["next_chapter"]=5293,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26365,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=6328,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=913155,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=92228,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=913155,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=94513,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=529,
+ ["unit"]=0
+ }
+ },
+ [5293]={
+ ["next_chapter"]=5294,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26452,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=6348,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=922286,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=93150,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=922286,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=94513,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=529,
+ ["unit"]=0
+ }
+ },
+ [5294]={
+ ["next_chapter"]=5295,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26538,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=6369,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=931509,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=94081,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=931509,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=94513,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=529,
+ ["unit"]=0
+ }
+ },
+ [5295]={
+ ["next_chapter"]=5296,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26626,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=6390,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=940824,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=95022,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=940824,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=94513,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=529,
+ ["unit"]=0
+ }
+ },
+ [5296]={
+ ["next_chapter"]=5297,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26714,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=6411,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=950233,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=95972,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=950233,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=94513,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=529,
+ ["unit"]=0
+ }
+ },
+ [5297]={
+ ["next_chapter"]=5298,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26803,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=6433,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=959735,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=96932,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=959735,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=94513,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=529,
+ ["unit"]=0
+ }
+ },
+ [5298]={
+ ["next_chapter"]=5299,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26892,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=6454,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=969332,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=97902,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=969332,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=94513,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=529,
+ ["unit"]=0
+ }
+ },
+ [5299]={
+ ["next_chapter"]=5300,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26982,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=6476,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=979026,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=98881,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=979026,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=94513,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=529,
+ ["unit"]=0
+ }
+ },
+ [5300]={
+ ["next_chapter"]=5301,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=27072,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=6497,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=988816,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=99869,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=988816,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=104401,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=530,
+ ["unit"]=0
+ }
+ },
+ [5301]={
+ ["next_chapter"]=5302,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27163,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=6519,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=998704,
+ ["unit"]=6
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=100868,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=998704,
+ ["unit"]=6
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=104401,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=530,
+ ["unit"]=0
+ }
+ },
+ [5302]={
+ ["next_chapter"]=5303,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27255,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=6541,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1009,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=101877,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1009,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=104401,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=530,
+ ["unit"]=0
+ }
+ },
+ [5303]={
+ ["next_chapter"]=5304,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27347,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=6563,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1019,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=102896,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1019,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=104401,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=530,
+ ["unit"]=0
+ }
+ },
+ [5304]={
+ ["next_chapter"]=5305,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27440,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=6586,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1029,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=103924,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1029,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=104401,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=530,
+ ["unit"]=0
+ }
+ },
+ [5305]={
+ ["next_chapter"]=5306,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27533,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=6608,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1039,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=104964,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1039,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=104401,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=530,
+ ["unit"]=0
+ }
+ },
+ [5306]={
+ ["next_chapter"]=5307,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27627,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=6631,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1050,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=106013,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1050,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=104401,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=530,
+ ["unit"]=0
+ }
+ },
+ [5307]={
+ ["next_chapter"]=5308,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27722,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=6653,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1060,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=107074,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1060,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=104401,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=530,
+ ["unit"]=0
+ }
+ },
+ [5308]={
+ ["next_chapter"]=5309,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27817,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=6676,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1071,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=108144,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1071,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=104401,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=530,
+ ["unit"]=0
+ }
+ },
+ [5309]={
+ ["next_chapter"]=5310,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27913,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=6699,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1081,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=109226,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1081,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=104401,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=530,
+ ["unit"]=0
+ }
+ },
+ [5310]={
+ ["next_chapter"]=5311,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=28010,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=6722,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1092,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=110318,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1092,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=115324,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=531,
+ ["unit"]=0
+ }
+ },
+ [5311]={
+ ["next_chapter"]=5312,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28107,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=6746,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1103,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=111421,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1103,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=115324,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=531,
+ ["unit"]=0
+ }
+ },
+ [5312]={
+ ["next_chapter"]=5313,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28205,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=6769,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1114,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=112535,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1114,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=115324,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=531,
+ ["unit"]=0
+ }
+ },
+ [5313]={
+ ["next_chapter"]=5314,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28303,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=6793,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1125,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=113661,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1125,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=115324,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=531,
+ ["unit"]=0
+ }
+ },
+ [5314]={
+ ["next_chapter"]=5315,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28402,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=6817,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1137,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=114797,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1137,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=115324,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=531,
+ ["unit"]=0
+ }
+ },
+ [5315]={
+ ["next_chapter"]=5316,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28502,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=6840,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1148,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=115945,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1148,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=115324,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=531,
+ ["unit"]=0
+ }
+ },
+ [5316]={
+ ["next_chapter"]=5317,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28602,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=6865,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1159,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=117105,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1159,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=115324,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=531,
+ ["unit"]=0
+ }
+ },
+ [5317]={
+ ["next_chapter"]=5318,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28703,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=6889,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1171,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=118276,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1171,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=115324,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=531,
+ ["unit"]=0
+ }
+ },
+ [5318]={
+ ["next_chapter"]=5319,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28805,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=6913,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1183,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=119459,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1183,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=115324,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=531,
+ ["unit"]=0
+ }
+ },
+ [5319]={
+ ["next_chapter"]=5320,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28907,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=6938,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1195,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=120653,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1195,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=115324,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=531,
+ ["unit"]=0
+ }
+ },
+ [5320]={
+ ["next_chapter"]=5321,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=29010,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=6962,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1207,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=121860,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1207,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=127389,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=532,
+ ["unit"]=0
+ }
+ },
+ [5321]={
+ ["next_chapter"]=5322,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29114,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=6987,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1219,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=123078,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1219,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=127389,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=532,
+ ["unit"]=0
+ }
+ },
+ [5322]={
+ ["next_chapter"]=5323,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29218,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=7012,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1231,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=124309,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1231,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=127389,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=532,
+ ["unit"]=0
+ }
+ },
+ [5323]={
+ ["next_chapter"]=5324,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29323,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=7037,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1243,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=125552,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1243,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=127389,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=532,
+ ["unit"]=0
+ }
+ },
+ [5324]={
+ ["next_chapter"]=5325,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29428,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=7063,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1256,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=126808,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1256,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=127389,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=532,
+ ["unit"]=0
+ }
+ },
+ [5325]={
+ ["next_chapter"]=5326,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29534,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=7088,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1268,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=128076,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1268,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=127389,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=532,
+ ["unit"]=0
+ }
+ },
+ [5326]={
+ ["next_chapter"]=5327,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29641,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=7114,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1281,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=129357,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1281,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=127389,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=532,
+ ["unit"]=0
+ }
+ },
+ [5327]={
+ ["next_chapter"]=5328,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29749,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=7140,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1294,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=130650,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1294,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=127389,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=532,
+ ["unit"]=0
+ }
+ },
+ [5328]={
+ ["next_chapter"]=5329,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29857,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=7166,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1307,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=131957,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1307,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=127389,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=532,
+ ["unit"]=0
+ }
+ },
+ [5329]={
+ ["next_chapter"]=5330,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29965,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=7192,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1320,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=133276,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1320,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=127389,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=532,
+ ["unit"]=0
+ }
+ },
+ [5330]={
+ ["next_chapter"]=5331,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=30075,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=7218,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1333,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=134609,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1333,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=140717,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=533,
+ ["unit"]=0
+ }
+ },
+ [5331]={
+ ["next_chapter"]=5332,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30185,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=7244,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1346,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=135955,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1346,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=140717,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=533,
+ ["unit"]=0
+ }
+ },
+ [5332]={
+ ["next_chapter"]=5333,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30296,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=7271,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1360,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=137315,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1360,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=140717,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=533,
+ ["unit"]=0
+ }
+ },
+ [5333]={
+ ["next_chapter"]=5334,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30407,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=7298,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1373,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=138688,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1373,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=140717,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=533,
+ ["unit"]=0
+ }
+ },
+ [5334]={
+ ["next_chapter"]=5335,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30519,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=7325,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1387,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=140075,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1387,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=140717,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=533,
+ ["unit"]=0
+ }
+ },
+ [5335]={
+ ["next_chapter"]=5336,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30632,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=7352,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1401,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=141476,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1401,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=140717,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=533,
+ ["unit"]=0
+ }
+ },
+ [5336]={
+ ["next_chapter"]=5337,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30746,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=7379,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1415,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=142890,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1415,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=140717,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=533,
+ ["unit"]=0
+ }
+ },
+ [5337]={
+ ["next_chapter"]=5338,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30860,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=7406,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1429,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=144319,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1429,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=140717,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=533,
+ ["unit"]=0
+ }
+ },
+ [5338]={
+ ["next_chapter"]=5339,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30974,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=7434,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1443,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=145763,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1443,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=140717,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=533,
+ ["unit"]=0
+ }
+ },
+ [5339]={
+ ["next_chapter"]=5340,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=31090,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=7462,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1458,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=147220,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1458,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=140717,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=533,
+ ["unit"]=0
+ }
+ },
+ [5340]={
+ ["next_chapter"]=5341,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=31206,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=7489,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1472,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=148692,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1472,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=155439,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=534,
+ ["unit"]=0
+ }
+ },
+ [5341]={
+ ["next_chapter"]=5342,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=31323,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=7518,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1487,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=150179,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1487,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=155439,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=534,
+ ["unit"]=0
+ }
+ },
+ [5342]={
+ ["next_chapter"]=5343,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=31441,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=7546,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1502,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=151681,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1502,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=155439,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=534,
+ ["unit"]=0
+ }
+ },
+ [5343]={
+ ["next_chapter"]=5344,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=31559,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=7574,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1517,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=153198,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1517,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=155439,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=534,
+ ["unit"]=0
+ }
+ },
+ [5344]={
+ ["next_chapter"]=5345,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=31678,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=7603,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1532,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=154730,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1532,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=155439,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=534,
+ ["unit"]=0
+ }
+ },
+ [5345]={
+ ["next_chapter"]=5346,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=31797,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=7631,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1547,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=156277,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1547,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=155439,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=534,
+ ["unit"]=0
+ }
+ },
+ [5346]={
+ ["next_chapter"]=5347,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=31918,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=7660,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1563,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=157840,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1563,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=155439,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=534,
+ ["unit"]=0
+ }
+ },
+ [5347]={
+ ["next_chapter"]=5348,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=32039,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=7689,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1578,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=159418,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1578,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=155439,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=534,
+ ["unit"]=0
+ }
+ },
+ [5348]={
+ ["next_chapter"]=5349,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=32160,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=7719,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1594,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=161013,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1594,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=155439,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=534,
+ ["unit"]=0
+ }
+ },
+ [5349]={
+ ["next_chapter"]=5350,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=32283,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=7748,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1610,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=162623,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1610,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=155439,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=534,
+ ["unit"]=0
+ }
+ },
+ [5350]={
+ ["next_chapter"]=5351,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=32406,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=7777,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1626,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=164249,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1626,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=171702,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=535,
+ ["unit"]=0
+ }
+ },
+ [5351]={
+ ["next_chapter"]=5352,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=32530,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=7807,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1643,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=165891,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1643,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=171702,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=535,
+ ["unit"]=0
+ }
+ },
+ [5352]={
+ ["next_chapter"]=5353,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=32654,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=7837,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1659,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=167550,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1659,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=171702,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=535,
+ ["unit"]=0
+ }
+ },
+ [5353]={
+ ["next_chapter"]=5354,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=32780,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=7867,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1676,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=169226,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1676,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=171702,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=535,
+ ["unit"]=0
+ }
+ },
+ [5354]={
+ ["next_chapter"]=5355,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=32906,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=7897,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1692,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=170918,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1692,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=171702,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=535,
+ ["unit"]=0
+ }
+ },
+ [5355]={
+ ["next_chapter"]=5356,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=33032,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=7928,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1709,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=172627,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1709,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=171702,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=535,
+ ["unit"]=0
+ }
+ },
+ [5356]={
+ ["next_chapter"]=5357,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=33160,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=7958,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1726,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=174354,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1726,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=171702,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=535,
+ ["unit"]=0
+ }
+ },
+ [5357]={
+ ["next_chapter"]=5358,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=33288,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=7989,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1744,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=176097,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1744,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=171702,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=535,
+ ["unit"]=0
+ }
+ },
+ [5358]={
+ ["next_chapter"]=5359,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=33417,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=8020,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1761,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=177858,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1761,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=171702,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=535,
+ ["unit"]=0
+ }
+ },
+ [5359]={
+ ["next_chapter"]=5360,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=33546,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=8051,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1779,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=179637,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1779,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=171702,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=535,
+ ["unit"]=0
+ }
+ },
+ [5360]={
+ ["next_chapter"]=5361,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=33676,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=8082,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1796,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=181433,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1796,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=189665,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=536,
+ ["unit"]=0
+ }
+ },
+ [5361]={
+ ["next_chapter"]=5362,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=33807,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=8114,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1814,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=183248,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1814,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=189665,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=536,
+ ["unit"]=0
+ }
+ },
+ [5362]={
+ ["next_chapter"]=5363,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=33939,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=8145,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1832,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=185080,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1832,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=189665,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=536,
+ ["unit"]=0
+ }
+ },
+ [5363]={
+ ["next_chapter"]=5364,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=34072,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=8177,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1851,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=186931,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1851,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=189665,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=536,
+ ["unit"]=0
+ }
+ },
+ [5364]={
+ ["next_chapter"]=5365,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=34205,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=8209,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1869,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=188800,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1869,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=189665,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=536,
+ ["unit"]=0
+ }
+ },
+ [5365]={
+ ["next_chapter"]=5366,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=34339,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=8241,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1888,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=190688,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1888,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=189665,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=536,
+ ["unit"]=0
+ }
+ },
+ [5366]={
+ ["next_chapter"]=5367,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=34473,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=8274,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1907,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=192595,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1907,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=189665,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=536,
+ ["unit"]=0
+ }
+ },
+ [5367]={
+ ["next_chapter"]=5368,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=34609,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=8306,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1926,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=194521,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1926,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=189665,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=536,
+ ["unit"]=0
+ }
+ },
+ [5368]={
+ ["next_chapter"]=5369,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=34745,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=8339,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1945,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=196466,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1945,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=189665,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=536,
+ ["unit"]=0
+ }
+ },
+ [5369]={
+ ["next_chapter"]=5370,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=34882,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=8372,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1965,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=198431,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1965,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=189665,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=536,
+ ["unit"]=0
+ }
+ },
+ [5370]={
+ ["next_chapter"]=5371,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=35019,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=8405,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1984,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=200415,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=1984,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=209509,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=537,
+ ["unit"]=0
+ }
+ },
+ [5371]={
+ ["next_chapter"]=5372,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=35158,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=8438,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2004,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=202419,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=2004,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=209509,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=537,
+ ["unit"]=0
+ }
+ },
+ [5372]={
+ ["next_chapter"]=5373,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=35297,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=8471,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2024,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=204444,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=2024,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=209509,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=537,
+ ["unit"]=0
+ }
+ },
+ [5373]={
+ ["next_chapter"]=5374,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=35437,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=8505,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2044,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=206488,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=2044,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=209509,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=537,
+ ["unit"]=0
+ }
+ },
+ [5374]={
+ ["next_chapter"]=5375,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=35577,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=8539,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2065,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=208553,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=2065,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=209509,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=537,
+ ["unit"]=0
+ }
+ },
+ [5375]={
+ ["next_chapter"]=5376,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=35719,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=8573,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2086,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=210638,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=2086,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=209509,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=537,
+ ["unit"]=0
+ }
+ },
+ [5376]={
+ ["next_chapter"]=5377,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=35861,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=8607,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2106,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=212745,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=2106,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=209509,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=537,
+ ["unit"]=0
+ }
+ },
+ [5377]={
+ ["next_chapter"]=5378,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=36004,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=8641,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2127,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=214872,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=2127,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=209509,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=537,
+ ["unit"]=0
+ }
+ },
+ [5378]={
+ ["next_chapter"]=5379,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=36147,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=8675,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2149,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=217021,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=2149,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=209509,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=537,
+ ["unit"]=0
+ }
+ },
+ [5379]={
+ ["next_chapter"]=5380,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=36292,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=8710,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2170,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=219191,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=2170,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=209509,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=537,
+ ["unit"]=0
+ }
+ },
+ [5380]={
+ ["next_chapter"]=5381,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=36437,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=8745,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2192,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=221383,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=2192,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=231428,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=538,
+ ["unit"]=0
+ }
+ },
+ [5381]={
+ ["next_chapter"]=5382,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=36583,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=8780,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2214,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=223597,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=2214,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=231428,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=538,
+ ["unit"]=0
+ }
+ },
+ [5382]={
+ ["next_chapter"]=5383,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=36730,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=8815,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2236,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=225833,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=2236,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=231428,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=538,
+ ["unit"]=0
+ }
+ },
+ [5383]={
+ ["next_chapter"]=5384,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=36877,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=8851,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2258,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=228091,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=2258,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=231428,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=538,
+ ["unit"]=0
+ }
+ },
+ [5384]={
+ ["next_chapter"]=5385,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=37025,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=8886,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2281,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=230372,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=2281,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=231428,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=538,
+ ["unit"]=0
+ }
+ },
+ [5385]={
+ ["next_chapter"]=5386,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=37174,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=8922,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2304,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=232676,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=2304,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=231428,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=538,
+ ["unit"]=0
+ }
+ },
+ [5386]={
+ ["next_chapter"]=5387,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=37324,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=8958,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2327,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=235003,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=2327,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=231428,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=538,
+ ["unit"]=0
+ }
+ },
+ [5387]={
+ ["next_chapter"]=5388,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=37475,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=8994,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2350,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=237353,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=2350,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=231428,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=538,
+ ["unit"]=0
+ }
+ },
+ [5388]={
+ ["next_chapter"]=5389,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=37626,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=9030,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2374,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=239726,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=2374,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=231428,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=538,
+ ["unit"]=0
+ }
+ },
+ [5389]={
+ ["next_chapter"]=5390,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=37778,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=9067,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2397,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=242124,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=2397,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=231428,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=538,
+ ["unit"]=0
+ }
+ },
+ [5390]={
+ ["next_chapter"]=5391,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=37931,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=9103,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2421,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=244545,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=2421,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=255640,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=539,
+ ["unit"]=0
+ }
+ },
+ [5391]={
+ ["next_chapter"]=5392,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=38085,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=9140,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2445,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=246990,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=2445,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=255640,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=539,
+ ["unit"]=0
+ }
+ },
+ [5392]={
+ ["next_chapter"]=5393,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=38239,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=9177,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2470,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=249460,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=2470,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=255640,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=539,
+ ["unit"]=0
+ }
+ },
+ [5393]={
+ ["next_chapter"]=5394,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=38395,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=9215,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2495,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=251955,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=2495,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=255640,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=539,
+ ["unit"]=0
+ }
+ },
+ [5394]={
+ ["next_chapter"]=5395,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=38551,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=9252,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2520,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=254474,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=2520,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=255640,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=539,
+ ["unit"]=0
+ }
+ },
+ [5395]={
+ ["next_chapter"]=5396,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=38708,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=9290,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2545,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=257019,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=2545,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=255640,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=539,
+ ["unit"]=0
+ }
+ },
+ [5396]={
+ ["next_chapter"]=5397,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=38865,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=9328,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2570,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=259589,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=2570,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=255640,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=539,
+ ["unit"]=0
+ }
+ },
+ [5397]={
+ ["next_chapter"]=5398,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=39024,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=9366,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2596,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=262185,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=2596,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=255640,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=539,
+ ["unit"]=0
+ }
+ },
+ [5398]={
+ ["next_chapter"]=5399,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=39183,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=9404,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2622,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=264807,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=2622,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=255640,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=539,
+ ["unit"]=0
+ }
+ },
+ [5399]={
+ ["next_chapter"]=5400,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=39343,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=9442,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2648,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=267455,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=2648,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=255640,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=539,
+ ["unit"]=0
+ }
+ },
+ [5400]={
+ ["next_chapter"]=5401,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=39504,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=9481,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2675,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=270130,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=2675,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=282386,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=540,
+ ["unit"]=0
+ }
+ },
+ [5401]={
+ ["next_chapter"]=5402,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=39666,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=9520,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2701,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=272831,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=2701,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=282386,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=540,
+ ["unit"]=0
+ }
+ },
+ [5402]={
+ ["next_chapter"]=5403,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=39828,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=9559,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2728,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=275559,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=2728,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=282386,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=540,
+ ["unit"]=0
+ }
+ },
+ [5403]={
+ ["next_chapter"]=5404,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=39991,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=9598,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2756,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=278315,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=2756,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=282386,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=540,
+ ["unit"]=0
+ }
+ },
+ [5404]={
+ ["next_chapter"]=5405,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=40156,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=9637,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2783,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=281098,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=2783,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=282386,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=540,
+ ["unit"]=0
+ }
+ },
+ [5405]={
+ ["next_chapter"]=5406,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=40321,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=9677,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2811,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=283909,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=2811,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=282386,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=540,
+ ["unit"]=0
+ }
+ },
+ [5406]={
+ ["next_chapter"]=5407,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=40486,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=9717,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2839,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=286748,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=2839,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=282386,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=540,
+ ["unit"]=0
+ }
+ },
+ [5407]={
+ ["next_chapter"]=5408,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=40653,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=9757,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2867,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=289616,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=2867,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=282386,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=540,
+ ["unit"]=0
+ }
+ },
+ [5408]={
+ ["next_chapter"]=5409,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=40820,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=9797,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2896,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=292512,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=2896,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=282386,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=540,
+ ["unit"]=0
+ }
+ },
+ [5409]={
+ ["next_chapter"]=5410,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=40988,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=9837,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2925,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=295437,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=2925,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=282386,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=540,
+ ["unit"]=0
+ }
+ },
+ [5410]={
+ ["next_chapter"]=5411,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=41157,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=9878,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2954,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=298391,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=2954,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=311930,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=541,
+ ["unit"]=0
+ }
+ },
+ [5411]={
+ ["next_chapter"]=5412,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=41327,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=9919,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2984,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=301375,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=2984,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=311930,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=541,
+ ["unit"]=0
+ }
+ },
+ [5412]={
+ ["next_chapter"]=5413,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=41498,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=9960,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3014,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=304389,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=3014,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=311930,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=541,
+ ["unit"]=0
+ }
+ },
+ [5413]={
+ ["next_chapter"]=5414,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=41670,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=10001,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3044,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=307433,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=3044,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=311930,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=541,
+ ["unit"]=0
+ }
+ },
+ [5414]={
+ ["next_chapter"]=5415,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=41842,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=10042,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3074,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=310507,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=3074,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=311930,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=541,
+ ["unit"]=0
+ }
+ },
+ [5415]={
+ ["next_chapter"]=5416,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=42015,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=10084,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3105,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=313612,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=3105,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=311930,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=541,
+ ["unit"]=0
+ }
+ },
+ [5416]={
+ ["next_chapter"]=5417,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=42189,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=10125,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3136,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=316749,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=3136,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=311930,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=541,
+ ["unit"]=0
+ }
+ },
+ [5417]={
+ ["next_chapter"]=5418,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=42364,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=10167,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3167,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=319916,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=3167,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=311930,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=541,
+ ["unit"]=0
+ }
+ },
+ [5418]={
+ ["next_chapter"]=5419,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=42540,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=10210,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3199,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=323115,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=3199,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=311930,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=541,
+ ["unit"]=0
+ }
+ },
+ [5419]={
+ ["next_chapter"]=5420,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=42716,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=10252,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3231,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=326346,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=3231,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=311930,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=541,
+ ["unit"]=0
+ }
+ },
+ [5420]={
+ ["next_chapter"]=5421,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=42894,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=10294,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3263,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=329610,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=3263,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=344565,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=542,
+ ["unit"]=0
+ }
+ },
+ [5421]={
+ ["next_chapter"]=5422,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=43072,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=10337,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3296,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=332906,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=3296,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=344565,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=542,
+ ["unit"]=0
+ }
+ },
+ [5422]={
+ ["next_chapter"]=5423,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=43251,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=10380,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3329,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=336235,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=3329,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=344565,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=542,
+ ["unit"]=0
+ }
+ },
+ [5423]={
+ ["next_chapter"]=5424,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=43431,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=10423,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3362,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=339597,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=3362,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=344565,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=542,
+ ["unit"]=0
+ }
+ },
+ [5424]={
+ ["next_chapter"]=5425,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=43612,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=10467,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3396,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=342993,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=3396,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=344565,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=542,
+ ["unit"]=0
+ }
+ },
+ [5425]={
+ ["next_chapter"]=5426,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=43793,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=10510,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3430,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=346423,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=3430,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=344565,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=542,
+ ["unit"]=0
+ }
+ },
+ [5426]={
+ ["next_chapter"]=5427,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=43976,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=10554,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3464,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=349888,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=3464,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=344565,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=542,
+ ["unit"]=0
+ }
+ },
+ [5427]={
+ ["next_chapter"]=5428,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=44159,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=10598,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3499,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=353387,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=3499,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=344565,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=542,
+ ["unit"]=0
+ }
+ },
+ [5428]={
+ ["next_chapter"]=5429,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=44343,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=10642,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3534,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=356920,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=3534,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=344565,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=542,
+ ["unit"]=0
+ }
+ },
+ [5429]={
+ ["next_chapter"]=5430,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=44528,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=10687,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3569,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=360490,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=3569,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=344565,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=542,
+ ["unit"]=0
+ }
+ },
+ [5430]={
+ ["next_chapter"]=5431,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=44714,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=10731,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3605,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=364095,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=3605,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=380614,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=543,
+ ["unit"]=0
+ }
+ },
+ [5431]={
+ ["next_chapter"]=5432,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=44901,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=10776,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3641,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=367735,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=3641,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=380614,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=543,
+ ["unit"]=0
+ }
+ },
+ [5432]={
+ ["next_chapter"]=5433,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=45089,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=10821,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3677,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=371413,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=3677,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=380614,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=543,
+ ["unit"]=0
+ }
+ },
+ [5433]={
+ ["next_chapter"]=5434,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=45277,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=10867,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3714,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=375127,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=3714,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=380614,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=543,
+ ["unit"]=0
+ }
+ },
+ [5434]={
+ ["next_chapter"]=5435,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=45467,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=10912,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3751,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=378878,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=3751,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=380614,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=543,
+ ["unit"]=0
+ }
+ },
+ [5435]={
+ ["next_chapter"]=5436,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=45657,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=10958,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3789,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=382667,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=3789,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=380614,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=543,
+ ["unit"]=0
+ }
+ },
+ [5436]={
+ ["next_chapter"]=5437,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=45848,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=11004,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3827,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=386494,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=3827,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=380614,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=543,
+ ["unit"]=0
+ }
+ },
+ [5437]={
+ ["next_chapter"]=5438,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=46040,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=11050,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3865,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=390359,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=3865,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=380614,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=543,
+ ["unit"]=0
+ }
+ },
+ [5438]={
+ ["next_chapter"]=5439,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=46233,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=11096,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3904,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=394262,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=3904,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=380614,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=543,
+ ["unit"]=0
+ }
+ },
+ [5439]={
+ ["next_chapter"]=5440,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=46427,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=11143,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3943,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=398205,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=3943,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=380614,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=543,
+ ["unit"]=0
+ }
+ },
+ [5440]={
+ ["next_chapter"]=5441,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=46622,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=11189,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3982,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=402187,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=3982,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=420434,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=544,
+ ["unit"]=0
+ }
+ },
+ [5441]={
+ ["next_chapter"]=5442,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=46817,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=11236,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4022,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=406209,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=4022,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=420434,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=544,
+ ["unit"]=0
+ }
+ },
+ [5442]={
+ ["next_chapter"]=5443,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=47014,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=11283,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4062,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=410271,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=4062,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=420434,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=544,
+ ["unit"]=0
+ }
+ },
+ [5443]={
+ ["next_chapter"]=5444,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=47211,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=11331,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4103,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=414374,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=4103,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=420434,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=544,
+ ["unit"]=0
+ }
+ },
+ [5444]={
+ ["next_chapter"]=5445,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=47410,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=11378,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4144,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=418517,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=4144,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=420434,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=544,
+ ["unit"]=0
+ }
+ },
+ [5445]={
+ ["next_chapter"]=5446,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=47609,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=11426,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4185,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=422703,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=4185,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=420434,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=544,
+ ["unit"]=0
+ }
+ },
+ [5446]={
+ ["next_chapter"]=5447,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=47809,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=11474,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4227,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=426930,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=4227,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=420434,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=544,
+ ["unit"]=0
+ }
+ },
+ [5447]={
+ ["next_chapter"]=5448,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=48010,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=11522,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4269,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=431199,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=4269,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=420434,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=544,
+ ["unit"]=0
+ }
+ },
+ [5448]={
+ ["next_chapter"]=5449,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=48212,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=11571,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4312,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=435511,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=4312,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=420434,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=544,
+ ["unit"]=0
+ }
+ },
+ [5449]={
+ ["next_chapter"]=5450,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=48414,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=11619,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4355,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=439866,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=4355,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=420434,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=544,
+ ["unit"]=0
+ }
+ },
+ [5450]={
+ ["next_chapter"]=5451,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=48618,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=11668,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4399,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=444265,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=4399,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=464421,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=545,
+ ["unit"]=0
+ }
+ },
+ [5451]={
+ ["next_chapter"]=5452,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=48823,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=11717,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4443,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=448707,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=4443,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=464421,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=545,
+ ["unit"]=0
+ }
+ },
+ [5452]={
+ ["next_chapter"]=5453,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=49028,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=11767,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4487,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=453194,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=4487,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=464421,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=545,
+ ["unit"]=0
+ }
+ },
+ [5453]={
+ ["next_chapter"]=5454,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=49234,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=11816,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4532,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=457726,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=4532,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=464421,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=545,
+ ["unit"]=0
+ }
+ },
+ [5454]={
+ ["next_chapter"]=5455,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=49442,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=11866,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4577,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=462304,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=4577,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=464421,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=545,
+ ["unit"]=0
+ }
+ },
+ [5455]={
+ ["next_chapter"]=5456,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=49650,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=11916,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4623,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=466927,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=4623,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=464421,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=545,
+ ["unit"]=0
+ }
+ },
+ [5456]={
+ ["next_chapter"]=5457,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=49859,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=11966,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4669,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=471596,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=4669,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=464421,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=545,
+ ["unit"]=0
+ }
+ },
+ [5457]={
+ ["next_chapter"]=5458,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=50069,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=12017,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4716,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=476312,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=4716,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=464421,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=545,
+ ["unit"]=0
+ }
+ },
+ [5458]={
+ ["next_chapter"]=5459,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=50280,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=12067,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4763,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=481075,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=4763,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=464421,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=545,
+ ["unit"]=0
+ }
+ },
+ [5459]={
+ ["next_chapter"]=5460,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=50492,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=12118,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4811,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=485886,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=4811,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=464421,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=545,
+ ["unit"]=0
+ }
+ },
+ [5460]={
+ ["next_chapter"]=5461,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=50705,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=12169,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4859,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=490745,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=4859,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=513010,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=546,
+ ["unit"]=0
+ }
+ },
+ [5461]={
+ ["next_chapter"]=5462,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=50919,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=12220,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4907,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=495652,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=4907,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=513010,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=546,
+ ["unit"]=0
+ }
+ },
+ [5462]={
+ ["next_chapter"]=5463,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=51133,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=12272,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4957,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=500609,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=4957,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=513010,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=546,
+ ["unit"]=0
+ }
+ },
+ [5463]={
+ ["next_chapter"]=5464,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=51349,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=12324,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5006,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=505615,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=5006,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=513010,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=546,
+ ["unit"]=0
+ }
+ },
+ [5464]={
+ ["next_chapter"]=5465,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=51566,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=12376,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5056,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=510671,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=5056,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=513010,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=546,
+ ["unit"]=0
+ }
+ },
+ [5465]={
+ ["next_chapter"]=5466,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=51783,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=12428,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5107,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=515778,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=5107,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=513010,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=546,
+ ["unit"]=0
+ }
+ },
+ [5466]={
+ ["next_chapter"]=5467,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=52001,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=12480,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5158,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=520936,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=5158,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=513010,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=546,
+ ["unit"]=0
+ }
+ },
+ [5467]={
+ ["next_chapter"]=5468,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=52221,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=12533,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5209,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=526145,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=5209,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=513010,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=546,
+ ["unit"]=0
+ }
+ },
+ [5468]={
+ ["next_chapter"]=5469,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=52441,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=12586,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5261,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=531406,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=5261,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=513010,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=546,
+ ["unit"]=0
+ }
+ },
+ [5469]={
+ ["next_chapter"]=5470,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=52662,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=12639,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5314,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=536720,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=5314,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=513010,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=546,
+ ["unit"]=0
+ }
+ },
+ [5470]={
+ ["next_chapter"]=5471,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=52885,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=12692,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5367,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=542088,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=5367,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=566682,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=547,
+ ["unit"]=0
+ }
+ },
+ [5471]={
+ ["next_chapter"]=5472,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=53108,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=12746,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5421,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=547509,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=5421,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=566682,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=547,
+ ["unit"]=0
+ }
+ },
+ [5472]={
+ ["next_chapter"]=5473,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=53332,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=12800,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5475,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=552984,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=5475,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=566682,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=547,
+ ["unit"]=0
+ }
+ },
+ [5473]={
+ ["next_chapter"]=5474,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=53557,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=12854,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5530,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=558513,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=5530,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=566682,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=547,
+ ["unit"]=0
+ }
+ },
+ [5474]={
+ ["next_chapter"]=5475,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=53783,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=12908,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5585,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=564099,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=5585,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=566682,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=547,
+ ["unit"]=0
+ }
+ },
+ [5475]={
+ ["next_chapter"]=5476,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=54010,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=12962,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5641,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=569740,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=5641,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=566682,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=547,
+ ["unit"]=0
+ }
+ },
+ [5476]={
+ ["next_chapter"]=5477,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=54238,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=13017,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5697,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=575437,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=5697,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=566682,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=547,
+ ["unit"]=0
+ }
+ },
+ [5477]={
+ ["next_chapter"]=5478,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=54467,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=13072,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5754,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=581191,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=5754,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=566682,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=547,
+ ["unit"]=0
+ }
+ },
+ [5478]={
+ ["next_chapter"]=5479,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=54696,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=13127,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5812,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=587003,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=5812,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=566682,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=547,
+ ["unit"]=0
+ }
+ },
+ [5479]={
+ ["next_chapter"]=5480,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=54927,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=13183,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5870,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=592873,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=5870,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=566682,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=547,
+ ["unit"]=0
+ }
+ },
+ [5480]={
+ ["next_chapter"]=5481,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=55159,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=13238,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5929,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=598802,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=5929,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=625969,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=548,
+ ["unit"]=0
+ }
+ },
+ [5481]={
+ ["next_chapter"]=5482,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=55392,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=13294,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5988,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=604790,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=5988,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=625969,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=548,
+ ["unit"]=0
+ }
+ },
+ [5482]={
+ ["next_chapter"]=5483,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=55625,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=13350,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6048,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=610838,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=6048,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=625969,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=548,
+ ["unit"]=0
+ }
+ },
+ [5483]={
+ ["next_chapter"]=5484,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=55860,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=13406,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6108,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=616946,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=6108,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=625969,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=548,
+ ["unit"]=0
+ }
+ },
+ [5484]={
+ ["next_chapter"]=5485,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=56096,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=13463,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6169,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=623116,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=6169,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=625969,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=548,
+ ["unit"]=0
+ }
+ },
+ [5485]={
+ ["next_chapter"]=5486,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=56332,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=13520,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6231,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=629347,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=6231,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=625969,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=548,
+ ["unit"]=0
+ }
+ },
+ [5486]={
+ ["next_chapter"]=5487,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=56570,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=13577,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6293,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=635641,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=6293,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=625969,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=548,
+ ["unit"]=0
+ }
+ },
+ [5487]={
+ ["next_chapter"]=5488,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=56808,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=13634,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6356,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=641997,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=6356,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=625969,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=548,
+ ["unit"]=0
+ }
+ },
+ [5488]={
+ ["next_chapter"]=5489,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=57048,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=13692,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6420,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=648417,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=6420,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=625969,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=548,
+ ["unit"]=0
+ }
+ },
+ [5489]={
+ ["next_chapter"]=5490,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=57289,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=13749,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6484,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=654901,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=6484,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=625969,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=548,
+ ["unit"]=0
+ }
+ },
+ [5490]={
+ ["next_chapter"]=5491,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=57530,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=13807,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6549,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=661450,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=6549,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=691459,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=549,
+ ["unit"]=0
+ }
+ },
+ [5491]={
+ ["next_chapter"]=5492,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=57773,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=13865,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6615,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=668065,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=6615,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=691459,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=549,
+ ["unit"]=0
+ }
+ },
+ [5492]={
+ ["next_chapter"]=5493,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=58016,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=13924,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6681,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=674745,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=6681,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=691459,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=549,
+ ["unit"]=0
+ }
+ },
+ [5493]={
+ ["next_chapter"]=5494,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=58261,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=13983,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6747,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=681493,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=6747,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=691459,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=549,
+ ["unit"]=0
+ }
+ },
+ [5494]={
+ ["next_chapter"]=5495,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=58506,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=14041,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6815,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=688308,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=6815,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=691459,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=549,
+ ["unit"]=0
+ }
+ },
+ [5495]={
+ ["next_chapter"]=5496,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=58753,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=14101,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6883,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=695191,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=6883,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=691459,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=549,
+ ["unit"]=0
+ }
+ },
+ [5496]={
+ ["next_chapter"]=5497,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=59000,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=14160,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6952,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=702143,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=6952,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=691459,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=549,
+ ["unit"]=0
+ }
+ },
+ [5497]={
+ ["next_chapter"]=5498,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=59249,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=14220,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7021,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=709164,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=7021,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=691459,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=549,
+ ["unit"]=0
+ }
+ },
+ [5498]={
+ ["next_chapter"]=5499,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=59498,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=14280,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7092,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=716256,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=7092,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=691459,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=549,
+ ["unit"]=0
+ }
+ },
+ [5499]={
+ ["next_chapter"]=5500,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=59749,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=14340,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7163,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=723418,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=7163,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=691459,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=549,
+ ["unit"]=0
+ }
+ },
+ [5500]={
+ ["next_chapter"]=5501,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=60000,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15000,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7234,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=730653,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=7234,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=763801,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=550,
+ ["unit"]=0
+ }
+ },
+ [5501]={
+ ["next_chapter"]=5502,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60000,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15000,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7307,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=737959,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=7307,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=763801,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=550,
+ ["unit"]=0
+ }
+ },
+ [5502]={
+ ["next_chapter"]=5503,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60000,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15000,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7380,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=745339,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=7380,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=763801,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=550,
+ ["unit"]=0
+ }
+ },
+ [5503]={
+ ["next_chapter"]=5504,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60000,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15000,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7453,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=752792,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=7453,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=763801,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=550,
+ ["unit"]=0
+ }
+ },
+ [5504]={
+ ["next_chapter"]=5505,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60000,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15000,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7528,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=760320,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=7528,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=763801,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=550,
+ ["unit"]=0
+ }
+ },
+ [5505]={
+ ["next_chapter"]=5506,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60000,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15000,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7603,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=767923,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=7603,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=763801,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=550,
+ ["unit"]=0
+ }
+ },
+ [5506]={
+ ["next_chapter"]=5507,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60000,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15000,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7679,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=775603,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=7679,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=763801,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=550,
+ ["unit"]=0
+ }
+ },
+ [5507]={
+ ["next_chapter"]=5508,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60000,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15000,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7756,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=783359,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=7756,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=763801,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=550,
+ ["unit"]=0
+ }
+ },
+ [5508]={
+ ["next_chapter"]=5509,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60000,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15000,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7834,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=791192,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=7834,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=763801,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=550,
+ ["unit"]=0
+ }
+ },
+ [5509]={
+ ["next_chapter"]=5510,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60001,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15000,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7912,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=799104,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=7912,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=763801,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=550,
+ ["unit"]=0
+ }
+ },
+ [5510]={
+ ["next_chapter"]=5511,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=60001,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15000,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7991,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=807095,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=7991,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=843712,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=551,
+ ["unit"]=0
+ }
+ },
+ [5511]={
+ ["next_chapter"]=5512,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60001,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15000,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8071,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=815166,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=8071,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=843712,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=551,
+ ["unit"]=0
+ }
+ },
+ [5512]={
+ ["next_chapter"]=5513,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60001,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15000,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8152,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=823318,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=8152,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=843712,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=551,
+ ["unit"]=0
+ }
+ },
+ [5513]={
+ ["next_chapter"]=5514,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60002,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15000,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8233,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=831551,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=8233,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=843712,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=551,
+ ["unit"]=0
+ }
+ },
+ [5514]={
+ ["next_chapter"]=5515,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60002,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15000,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8316,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=839866,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=8316,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=843712,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=551,
+ ["unit"]=0
+ }
+ },
+ [5515]={
+ ["next_chapter"]=5516,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60002,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15001,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8399,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=848265,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=8399,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=843712,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=551,
+ ["unit"]=0
+ }
+ },
+ [5516]={
+ ["next_chapter"]=5517,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60003,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15001,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8483,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=856748,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=8483,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=843712,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=551,
+ ["unit"]=0
+ }
+ },
+ [5517]={
+ ["next_chapter"]=5518,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60004,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15001,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8567,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=865315,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=8567,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=843712,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=551,
+ ["unit"]=0
+ }
+ },
+ [5518]={
+ ["next_chapter"]=5519,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60004,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15001,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8653,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=873968,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=8653,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=843712,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=551,
+ ["unit"]=0
+ }
+ },
+ [5519]={
+ ["next_chapter"]=5520,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60005,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15001,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8740,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=882708,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=8740,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=843712,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=551,
+ ["unit"]=0
+ }
+ },
+ [5520]={
+ ["next_chapter"]=5521,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=60006,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15001,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8827,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=891535,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=8827,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=931983,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=552,
+ ["unit"]=0
+ }
+ },
+ [5521]={
+ ["next_chapter"]=5522,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60007,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15002,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8915,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=900451,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=8915,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=931983,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=552,
+ ["unit"]=0
+ }
+ },
+ [5522]={
+ ["next_chapter"]=5523,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60008,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15002,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=9005,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=909455,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=9005,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=931983,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=552,
+ ["unit"]=0
+ }
+ },
+ [5523]={
+ ["next_chapter"]=5524,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60009,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15002,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=9095,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=918550,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=9095,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=931983,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=552,
+ ["unit"]=0
+ }
+ },
+ [5524]={
+ ["next_chapter"]=5525,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60010,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15002,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=9186,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=927735,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=9186,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=931983,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=552,
+ ["unit"]=0
+ }
+ },
+ [5525]={
+ ["next_chapter"]=5526,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60011,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15003,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=9277,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=937013,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=9277,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=931983,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=552,
+ ["unit"]=0
+ }
+ },
+ [5526]={
+ ["next_chapter"]=5527,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60013,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15003,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=9370,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=946383,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=9370,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=931983,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=552,
+ ["unit"]=0
+ }
+ },
+ [5527]={
+ ["next_chapter"]=5528,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60014,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15004,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=9464,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=955847,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=9464,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=931983,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=552,
+ ["unit"]=0
+ }
+ },
+ [5528]={
+ ["next_chapter"]=5529,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60016,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15004,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=9558,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=965405,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=9558,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=931983,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=552,
+ ["unit"]=0
+ }
+ },
+ [5529]={
+ ["next_chapter"]=5530,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60018,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15004,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=9654,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=975059,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=9654,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=931983,
+ ["unit"]=7
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=552,
+ ["unit"]=0
+ }
+ },
+ [5530]={
+ ["next_chapter"]=5531,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=60019,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15005,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=9751,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=984810,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=9751,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1029,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=553,
+ ["unit"]=0
+ }
+ },
+ [5531]={
+ ["next_chapter"]=5532,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60021,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15005,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=9848,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=994658,
+ ["unit"]=7
+ },
+ ["idle_gold"]={
+ ["value"]=9848,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1029,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=553,
+ ["unit"]=0
+ }
+ },
+ [5532]={
+ ["next_chapter"]=5533,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60024,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15006,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=9947,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1005,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=9947,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1029,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=553,
+ ["unit"]=0
+ }
+ },
+ [5533]={
+ ["next_chapter"]=5534,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60026,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15006,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=10046,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1015,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=10046,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1029,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=553,
+ ["unit"]=0
+ }
+ },
+ [5534]={
+ ["next_chapter"]=5535,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60028,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15007,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=10147,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1025,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=10147,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1029,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=553,
+ ["unit"]=0
+ }
+ },
+ [5535]={
+ ["next_chapter"]=5536,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60031,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15008,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=10248,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1035,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=10248,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1029,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=553,
+ ["unit"]=0
+ }
+ },
+ [5536]={
+ ["next_chapter"]=5537,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60034,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15008,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=10350,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1045,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=10350,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1029,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=553,
+ ["unit"]=0
+ }
+ },
+ [5537]={
+ ["next_chapter"]=5538,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60036,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15009,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=10454,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1056,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=10454,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1029,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=553,
+ ["unit"]=0
+ }
+ },
+ [5538]={
+ ["next_chapter"]=5539,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60040,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15010,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=10559,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1066,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=10559,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1029,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=553,
+ ["unit"]=0
+ }
+ },
+ [5539]={
+ ["next_chapter"]=5540,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60043,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15011,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=10664,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1077,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=10664,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1029,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=553,
+ ["unit"]=0
+ }
+ },
+ [5540]={
+ ["next_chapter"]=5541,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=60046,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15012,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=10771,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1088,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=10771,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1137,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=554,
+ ["unit"]=0
+ }
+ },
+ [5541]={
+ ["next_chapter"]=5542,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60050,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15012,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=10878,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1099,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=10878,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1137,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=554,
+ ["unit"]=0
+ }
+ },
+ [5542]={
+ ["next_chapter"]=5543,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60053,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15013,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=10987,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1110,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=10987,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1137,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=554,
+ ["unit"]=0
+ }
+ },
+ [5543]={
+ ["next_chapter"]=5544,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60057,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15014,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=11097,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1121,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=11097,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1137,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=554,
+ ["unit"]=0
+ }
+ },
+ [5544]={
+ ["next_chapter"]=5545,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60061,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15015,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=11208,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1132,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=11208,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1137,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=554,
+ ["unit"]=0
+ }
+ },
+ [5545]={
+ ["next_chapter"]=5546,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60066,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15016,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=11320,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1143,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=11320,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1137,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=554,
+ ["unit"]=0
+ }
+ },
+ [5546]={
+ ["next_chapter"]=5547,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60070,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15018,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=11433,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1155,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=11433,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1137,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=554,
+ ["unit"]=0
+ }
+ },
+ [5547]={
+ ["next_chapter"]=5548,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60075,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15019,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=11548,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1166,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=11548,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1137,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=554,
+ ["unit"]=0
+ }
+ },
+ [5548]={
+ ["next_chapter"]=5549,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60080,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15020,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=11663,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1178,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=11663,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1137,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=554,
+ ["unit"]=0
+ }
+ },
+ [5549]={
+ ["next_chapter"]=5550,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60085,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15021,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=11780,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1190,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=11780,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1137,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=554,
+ ["unit"]=0
+ }
+ },
+ [5550]={
+ ["next_chapter"]=5551,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=60090,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15023,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=11898,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1202,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=11898,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1256,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=555,
+ ["unit"]=0
+ }
+ },
+ [5551]={
+ ["next_chapter"]=5552,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60096,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15024,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=12017,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1214,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=12017,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1256,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=555,
+ ["unit"]=0
+ }
+ },
+ [5552]={
+ ["next_chapter"]=5553,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60101,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15025,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=12137,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1226,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=12137,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1256,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=555,
+ ["unit"]=0
+ }
+ },
+ [5553]={
+ ["next_chapter"]=5554,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60107,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15027,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=12258,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1238,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=12258,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1256,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=555,
+ ["unit"]=0
+ }
+ },
+ [5554]={
+ ["next_chapter"]=5555,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60113,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15028,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=12381,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1250,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=12381,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1256,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=555,
+ ["unit"]=0
+ }
+ },
+ [5555]={
+ ["next_chapter"]=5556,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60120,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15030,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=12504,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1263,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=12504,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1256,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=555,
+ ["unit"]=0
+ }
+ },
+ [5556]={
+ ["next_chapter"]=5557,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60126,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15032,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=12630,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1276,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=12630,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1256,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=555,
+ ["unit"]=0
+ }
+ },
+ [5557]={
+ ["next_chapter"]=5558,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60133,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15033,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=12756,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1288,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=12756,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1256,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=555,
+ ["unit"]=0
+ }
+ },
+ [5558]={
+ ["next_chapter"]=5559,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60140,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15035,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=12883,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1301,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=12883,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1256,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=555,
+ ["unit"]=0
+ }
+ },
+ [5559]={
+ ["next_chapter"]=5560,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60148,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15037,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=13012,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1314,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=13012,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1256,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=555,
+ ["unit"]=0
+ }
+ },
+ [5560]={
+ ["next_chapter"]=5561,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=60156,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15039,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=13142,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1327,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=13142,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1388,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=556,
+ ["unit"]=0
+ }
+ },
+ [5561]={
+ ["next_chapter"]=5562,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60163,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15041,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=13274,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1341,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=13274,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1388,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=556,
+ ["unit"]=0
+ }
+ },
+ [5562]={
+ ["next_chapter"]=5563,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60172,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15043,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=13406,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1354,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=13406,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1388,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=556,
+ ["unit"]=0
+ }
+ },
+ [5563]={
+ ["next_chapter"]=5564,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60180,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15045,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=13541,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1368,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=13541,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1388,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=556,
+ ["unit"]=0
+ }
+ },
+ [5564]={
+ ["next_chapter"]=5565,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60189,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15047,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=13676,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1381,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=13676,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1388,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=556,
+ ["unit"]=0
+ }
+ },
+ [5565]={
+ ["next_chapter"]=5566,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60198,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15049,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=13813,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1395,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=13813,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1388,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=556,
+ ["unit"]=0
+ }
+ },
+ [5566]={
+ ["next_chapter"]=5567,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60207,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15052,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=13951,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1409,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=13951,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1388,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=556,
+ ["unit"]=0
+ }
+ },
+ [5567]={
+ ["next_chapter"]=5568,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60217,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15054,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=14090,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1423,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=14090,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1388,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=556,
+ ["unit"]=0
+ }
+ },
+ [5568]={
+ ["next_chapter"]=5569,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60226,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15057,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=14231,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1437,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=14231,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1388,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=556,
+ ["unit"]=0
+ }
+ },
+ [5569]={
+ ["next_chapter"]=5570,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60237,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15059,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=14374,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1452,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=14374,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1388,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=556,
+ ["unit"]=0
+ }
+ },
+ [5570]={
+ ["next_chapter"]=5571,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=60247,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15062,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=14517,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1466,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=14517,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1533,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=557,
+ ["unit"]=0
+ }
+ },
+ [5571]={
+ ["next_chapter"]=5572,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60258,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15064,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=14662,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1481,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=14662,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1533,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=557,
+ ["unit"]=0
+ }
+ },
+ [5572]={
+ ["next_chapter"]=5573,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60269,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15067,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=14809,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1496,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=14809,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1533,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=557,
+ ["unit"]=0
+ }
+ },
+ [5573]={
+ ["next_chapter"]=5574,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60280,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15070,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=14957,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1511,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=14957,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1533,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=557,
+ ["unit"]=0
+ }
+ },
+ [5574]={
+ ["next_chapter"]=5575,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60292,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15073,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=15107,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1526,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=15107,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1533,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=557,
+ ["unit"]=0
+ }
+ },
+ [5575]={
+ ["next_chapter"]=5576,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60304,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15076,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=15258,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1541,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=15258,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1533,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=557,
+ ["unit"]=0
+ }
+ },
+ [5576]={
+ ["next_chapter"]=5577,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60316,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15079,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=15410,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1556,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=15410,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1533,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=557,
+ ["unit"]=0
+ }
+ },
+ [5577]={
+ ["next_chapter"]=5578,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60329,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15082,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=15565,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1572,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=15565,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1533,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=557,
+ ["unit"]=0
+ }
+ },
+ [5578]={
+ ["next_chapter"]=5579,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60342,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15085,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=15720,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1588,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=15720,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1533,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=557,
+ ["unit"]=0
+ }
+ },
+ [5579]={
+ ["next_chapter"]=5580,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60355,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15089,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=15877,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1604,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=15877,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1533,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=557,
+ ["unit"]=0
+ }
+ },
+ [5580]={
+ ["next_chapter"]=5581,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=60369,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15092,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=16036,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1620,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=16036,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1693,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=558,
+ ["unit"]=0
+ }
+ },
+ [5581]={
+ ["next_chapter"]=5582,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60383,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15096,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=16197,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1636,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=16197,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1693,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=558,
+ ["unit"]=0
+ }
+ },
+ [5582]={
+ ["next_chapter"]=5583,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60397,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15099,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=16358,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1652,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=16358,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1693,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=558,
+ ["unit"]=0
+ }
+ },
+ [5583]={
+ ["next_chapter"]=5584,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60412,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15103,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=16522,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1669,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=16522,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1693,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=558,
+ ["unit"]=0
+ }
+ },
+ [5584]={
+ ["next_chapter"]=5585,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60427,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15107,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=16687,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1685,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=16687,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1693,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=558,
+ ["unit"]=0
+ }
+ },
+ [5585]={
+ ["next_chapter"]=5586,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60442,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15111,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=16854,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1702,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=16854,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1693,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=558,
+ ["unit"]=0
+ }
+ },
+ [5586]={
+ ["next_chapter"]=5587,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60458,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15114,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=17023,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1719,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=17023,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1693,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=558,
+ ["unit"]=0
+ }
+ },
+ [5587]={
+ ["next_chapter"]=5588,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60474,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15119,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=17193,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1736,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=17193,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1693,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=558,
+ ["unit"]=0
+ }
+ },
+ [5588]={
+ ["next_chapter"]=5589,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60491,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15123,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=17365,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1754,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=17365,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1693,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=558,
+ ["unit"]=0
+ }
+ },
+ [5589]={
+ ["next_chapter"]=5590,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60508,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15127,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=17539,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1771,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=17539,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1693,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=558,
+ ["unit"]=0
+ }
+ },
+ [5590]={
+ ["next_chapter"]=5591,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=60525,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15131,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=17714,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1789,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=17714,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1870,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=559,
+ ["unit"]=0
+ }
+ },
+ [5591]={
+ ["next_chapter"]=5592,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60543,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15136,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=17891,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1807,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=17891,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1870,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=559,
+ ["unit"]=0
+ }
+ },
+ [5592]={
+ ["next_chapter"]=5593,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60561,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15140,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=18070,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1825,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=18070,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1870,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=559,
+ ["unit"]=0
+ }
+ },
+ [5593]={
+ ["next_chapter"]=5594,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60579,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15145,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=18251,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1843,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=18251,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1870,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=559,
+ ["unit"]=0
+ }
+ },
+ [5594]={
+ ["next_chapter"]=5595,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60598,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15150,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=18433,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1862,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=18433,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1870,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=559,
+ ["unit"]=0
+ }
+ },
+ [5595]={
+ ["next_chapter"]=5596,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60617,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15154,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=18617,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1880,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=18617,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1870,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=559,
+ ["unit"]=0
+ }
+ },
+ [5596]={
+ ["next_chapter"]=5597,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60637,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15159,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=18804,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1899,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=18804,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1870,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=559,
+ ["unit"]=0
+ }
+ },
+ [5597]={
+ ["next_chapter"]=5598,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60657,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15164,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=18992,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1918,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=18992,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1870,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=559,
+ ["unit"]=0
+ }
+ },
+ [5598]={
+ ["next_chapter"]=5599,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60678,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15169,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=19182,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1937,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=19182,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1870,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=559,
+ ["unit"]=0
+ }
+ },
+ [5599]={
+ ["next_chapter"]=5600,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60699,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15175,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=19373,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1957,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=19373,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=1870,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=559,
+ ["unit"]=0
+ }
+ },
+ [5600]={
+ ["next_chapter"]=5601,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=60720,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15180,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=19567,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1976,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=19567,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=2066,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=560,
+ ["unit"]=0
+ }
+ },
+ [5601]={
+ ["next_chapter"]=5602,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60742,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15185,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=19763,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1996,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=19763,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=2066,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=560,
+ ["unit"]=0
+ }
+ },
+ [5602]={
+ ["next_chapter"]=5603,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60764,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15191,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=19960,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2016,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=19960,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=2066,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=560,
+ ["unit"]=0
+ }
+ },
+ [5603]={
+ ["next_chapter"]=5604,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60787,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15197,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=20160,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2036,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=20160,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=2066,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=560,
+ ["unit"]=0
+ }
+ },
+ [5604]={
+ ["next_chapter"]=5605,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60810,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15202,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=20362,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2057,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=20362,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=2066,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=560,
+ ["unit"]=0
+ }
+ },
+ [5605]={
+ ["next_chapter"]=5606,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60833,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15208,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=20565,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2077,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=20565,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=2066,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=560,
+ ["unit"]=0
+ }
+ },
+ [5606]={
+ ["next_chapter"]=5607,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60858,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15214,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=20771,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2098,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=20771,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=2066,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=560,
+ ["unit"]=0
+ }
+ },
+ [5607]={
+ ["next_chapter"]=5608,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60882,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15221,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=20979,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2119,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=20979,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=2066,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=560,
+ ["unit"]=0
+ }
+ },
+ [5608]={
+ ["next_chapter"]=5609,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60907,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15227,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=21188,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2140,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=21188,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=2066,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=560,
+ ["unit"]=0
+ }
+ },
+ [5609]={
+ ["next_chapter"]=5610,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60932,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15233,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=21400,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2161,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=21400,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=2066,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=560,
+ ["unit"]=0
+ }
+ },
+ [5610]={
+ ["next_chapter"]=5611,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=60958,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15240,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=21614,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2183,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=21614,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=2282,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=561,
+ ["unit"]=0
+ }
+ },
+ [5611]={
+ ["next_chapter"]=5612,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60985,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15246,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=21830,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2205,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=21830,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=2282,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=561,
+ ["unit"]=0
+ }
+ },
+ [5612]={
+ ["next_chapter"]=5613,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=61012,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15253,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=22049,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2227,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=22049,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=2282,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=561,
+ ["unit"]=0
+ }
+ },
+ [5613]={
+ ["next_chapter"]=5614,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=61039,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15260,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=22269,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2249,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=22269,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=2282,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=561,
+ ["unit"]=0
+ }
+ },
+ [5614]={
+ ["next_chapter"]=5615,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=61067,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15267,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=22492,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2272,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=22492,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=2282,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=561,
+ ["unit"]=0
+ }
+ },
+ [5615]={
+ ["next_chapter"]=5616,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=61095,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15274,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=22717,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2294,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=22717,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=2282,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=561,
+ ["unit"]=0
+ }
+ },
+ [5616]={
+ ["next_chapter"]=5617,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=61124,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15281,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=22944,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2317,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=22944,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=2282,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=561,
+ ["unit"]=0
+ }
+ },
+ [5617]={
+ ["next_chapter"]=5618,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=61153,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15288,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=23173,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2341,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=23173,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=2282,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=561,
+ ["unit"]=0
+ }
+ },
+ [5618]={
+ ["next_chapter"]=5619,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=61183,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15296,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=23405,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2364,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=23405,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=2282,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=561,
+ ["unit"]=0
+ }
+ },
+ [5619]={
+ ["next_chapter"]=5620,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=61213,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15303,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=23639,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2388,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=23639,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=2282,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=561,
+ ["unit"]=0
+ }
+ },
+ [5620]={
+ ["next_chapter"]=5621,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=61244,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15311,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=23876,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2411,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=23876,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=2521,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=562,
+ ["unit"]=0
+ }
+ },
+ [5621]={
+ ["next_chapter"]=5622,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=61276,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15319,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=24114,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2436,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=24114,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=2521,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=562,
+ ["unit"]=0
+ }
+ },
+ [5622]={
+ ["next_chapter"]=5623,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=61307,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15327,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=24356,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2460,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=24356,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=2521,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=562,
+ ["unit"]=0
+ }
+ },
+ [5623]={
+ ["next_chapter"]=5624,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=61340,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15335,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=24599,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2485,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=24599,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=2521,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=562,
+ ["unit"]=0
+ }
+ },
+ [5624]={
+ ["next_chapter"]=5625,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=61373,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15343,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=24845,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2509,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=24845,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=2521,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=562,
+ ["unit"]=0
+ }
+ },
+ [5625]={
+ ["next_chapter"]=5626,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=61406,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15352,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=25094,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2534,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=25094,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=2521,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=562,
+ ["unit"]=0
+ }
+ },
+ [5626]={
+ ["next_chapter"]=5627,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=61440,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15360,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=25344,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2560,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=25344,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=2521,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=562,
+ ["unit"]=0
+ }
+ },
+ [5627]={
+ ["next_chapter"]=5628,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=61475,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15369,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=25598,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2585,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=25598,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=2521,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=562,
+ ["unit"]=0
+ }
+ },
+ [5628]={
+ ["next_chapter"]=5629,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=61510,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15377,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=25854,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2611,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=25854,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=2521,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=562,
+ ["unit"]=0
+ }
+ },
+ [5629]={
+ ["next_chapter"]=5630,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=61546,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15386,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=26112,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2637,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=26112,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=2521,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=562,
+ ["unit"]=0
+ }
+ },
+ [5630]={
+ ["next_chapter"]=5631,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=61582,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15395,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=26374,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2664,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=26374,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=2785,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=563,
+ ["unit"]=0
+ }
+ },
+ [5631]={
+ ["next_chapter"]=5632,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=61619,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15405,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=26637,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2690,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=26637,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=2785,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=563,
+ ["unit"]=0
+ }
+ },
+ [5632]={
+ ["next_chapter"]=5633,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=61656,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15414,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=26904,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2717,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=26904,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=2785,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=563,
+ ["unit"]=0
+ }
+ },
+ [5633]={
+ ["next_chapter"]=5634,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=61694,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15423,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=27173,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2744,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=27173,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=2785,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=563,
+ ["unit"]=0
+ }
+ },
+ [5634]={
+ ["next_chapter"]=5635,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=61732,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15433,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=27444,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2772,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=27444,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=2785,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=563,
+ ["unit"]=0
+ }
+ },
+ [5635]={
+ ["next_chapter"]=5636,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=61771,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15443,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=27719,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2800,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=27719,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=2785,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=563,
+ ["unit"]=0
+ }
+ },
+ [5636]={
+ ["next_chapter"]=5637,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=61811,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15453,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=27996,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2828,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=27996,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=2785,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=563,
+ ["unit"]=0
+ }
+ },
+ [5637]={
+ ["next_chapter"]=5638,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=61851,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15463,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=28276,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2856,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=28276,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=2785,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=563,
+ ["unit"]=0
+ }
+ },
+ [5638]={
+ ["next_chapter"]=5639,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=61892,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15473,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=28559,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2884,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=28559,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=2785,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=563,
+ ["unit"]=0
+ }
+ },
+ [5639]={
+ ["next_chapter"]=5640,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=61934,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15483,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=28844,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2913,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=28844,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=2785,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=563,
+ ["unit"]=0
+ }
+ },
+ [5640]={
+ ["next_chapter"]=5641,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=61976,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15494,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=29133,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2942,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=29133,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=3076,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=564,
+ ["unit"]=0
+ }
+ },
+ [5641]={
+ ["next_chapter"]=5642,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=62018,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15505,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=29424,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2972,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=29424,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=3076,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=564,
+ ["unit"]=0
+ }
+ },
+ [5642]={
+ ["next_chapter"]=5643,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=62062,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15515,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=29718,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3002,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=29718,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=3076,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=564,
+ ["unit"]=0
+ }
+ },
+ [5643]={
+ ["next_chapter"]=5644,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=62105,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15526,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=30016,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3032,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=30016,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=3076,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=564,
+ ["unit"]=0
+ }
+ },
+ [5644]={
+ ["next_chapter"]=5645,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=62150,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15537,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=30316,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3062,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=30316,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=3076,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=564,
+ ["unit"]=0
+ }
+ },
+ [5645]={
+ ["next_chapter"]=5646,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=62195,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15549,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=30619,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3093,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=30619,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=3076,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=564,
+ ["unit"]=0
+ }
+ },
+ [5646]={
+ ["next_chapter"]=5647,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=62241,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15560,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=30925,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3123,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=30925,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=3076,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=564,
+ ["unit"]=0
+ }
+ },
+ [5647]={
+ ["next_chapter"]=5648,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=62287,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15572,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=31234,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3155,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=31234,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=3076,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=564,
+ ["unit"]=0
+ }
+ },
+ [5648]={
+ ["next_chapter"]=5649,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=62334,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15584,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=31547,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3186,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=31547,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=3076,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=564,
+ ["unit"]=0
+ }
+ },
+ [5649]={
+ ["next_chapter"]=5650,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=62382,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15595,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=31862,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3218,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=31862,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=3076,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=564,
+ ["unit"]=0
+ }
+ },
+ [5650]={
+ ["next_chapter"]=5651,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=62430,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15608,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=32181,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3250,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=32181,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=3398,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=565,
+ ["unit"]=0
+ }
+ },
+ [5651]={
+ ["next_chapter"]=5652,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=62479,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15620,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=32503,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3283,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=32503,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=3398,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=565,
+ ["unit"]=0
+ }
+ },
+ [5652]={
+ ["next_chapter"]=5653,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=62529,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15632,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=32828,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3316,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=32828,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=3398,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=565,
+ ["unit"]=0
+ }
+ },
+ [5653]={
+ ["next_chapter"]=5654,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=62579,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15645,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=33156,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3349,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=33156,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=3398,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=565,
+ ["unit"]=0
+ }
+ },
+ [5654]={
+ ["next_chapter"]=5655,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=62630,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15657,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=33487,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3382,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=33487,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=3398,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=565,
+ ["unit"]=0
+ }
+ },
+ [5655]={
+ ["next_chapter"]=5656,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=62681,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15670,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=33822,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3416,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=33822,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=3398,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=565,
+ ["unit"]=0
+ }
+ },
+ [5656]={
+ ["next_chapter"]=5657,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=62733,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15683,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=34161,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3450,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=34161,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=3398,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=565,
+ ["unit"]=0
+ }
+ },
+ [5657]={
+ ["next_chapter"]=5658,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=62786,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15697,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=34502,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3485,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=34502,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=3398,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=565,
+ ["unit"]=0
+ }
+ },
+ [5658]={
+ ["next_chapter"]=5659,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=62840,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15710,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=34847,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3520,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=34847,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=3398,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=565,
+ ["unit"]=0
+ }
+ },
+ [5659]={
+ ["next_chapter"]=5660,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=62894,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15724,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=35196,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3555,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=35196,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=3398,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=565,
+ ["unit"]=0
+ }
+ },
+ [5660]={
+ ["next_chapter"]=5661,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=62949,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15737,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=35548,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3590,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=35548,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=3753,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=566,
+ ["unit"]=0
+ }
+ },
+ [5661]={
+ ["next_chapter"]=5662,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=63005,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15751,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=35903,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3626,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=35903,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=3753,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=566,
+ ["unit"]=0
+ }
+ },
+ [5662]={
+ ["next_chapter"]=5663,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=63061,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15765,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=36262,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3662,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=36262,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=3753,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=566,
+ ["unit"]=0
+ }
+ },
+ [5663]={
+ ["next_chapter"]=5664,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=63118,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15780,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=36625,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3699,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=36625,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=3753,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=566,
+ ["unit"]=0
+ }
+ },
+ [5664]={
+ ["next_chapter"]=5665,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=63176,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15794,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=36991,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3736,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=36991,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=3753,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=566,
+ ["unit"]=0
+ }
+ },
+ [5665]={
+ ["next_chapter"]=5666,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=63234,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15809,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=37361,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3773,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=37361,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=3753,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=566,
+ ["unit"]=0
+ }
+ },
+ [5666]={
+ ["next_chapter"]=5667,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=63293,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15823,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=37734,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3811,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=37734,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=3753,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=566,
+ ["unit"]=0
+ }
+ },
+ [5667]={
+ ["next_chapter"]=5668,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=63353,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15838,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=38112,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3849,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=38112,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=3753,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=566,
+ ["unit"]=0
+ }
+ },
+ [5668]={
+ ["next_chapter"]=5669,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=63414,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15853,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=38493,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3888,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=38493,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=3753,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=566,
+ ["unit"]=0
+ }
+ },
+ [5669]={
+ ["next_chapter"]=5670,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=63475,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15869,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=38878,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3927,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=38878,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=3753,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=566,
+ ["unit"]=0
+ }
+ },
+ [5670]={
+ ["next_chapter"]=5671,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=63537,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15884,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=39267,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3966,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=39267,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=4146,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=567,
+ ["unit"]=0
+ }
+ },
+ [5671]={
+ ["next_chapter"]=5672,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=63600,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15900,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=39659,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4006,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=39659,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=4146,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=567,
+ ["unit"]=0
+ }
+ },
+ [5672]={
+ ["next_chapter"]=5673,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=63664,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15916,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=40056,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4046,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=40056,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=4146,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=567,
+ ["unit"]=0
+ }
+ },
+ [5673]={
+ ["next_chapter"]=5674,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=63728,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15932,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=40456,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4086,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=40456,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=4146,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=567,
+ ["unit"]=0
+ }
+ },
+ [5674]={
+ ["next_chapter"]=5675,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=63793,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15948,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=40861,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4127,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=40861,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=4146,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=567,
+ ["unit"]=0
+ }
+ },
+ [5675]={
+ ["next_chapter"]=5676,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=63859,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15965,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=41270,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4168,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=41270,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=4146,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=567,
+ ["unit"]=0
+ }
+ },
+ [5676]={
+ ["next_chapter"]=5677,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=63925,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15981,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=41682,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4210,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=41682,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=4146,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=567,
+ ["unit"]=0
+ }
+ },
+ [5677]={
+ ["next_chapter"]=5678,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=63993,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=15998,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=42099,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4252,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=42099,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=4146,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=567,
+ ["unit"]=0
+ }
+ },
+ [5678]={
+ ["next_chapter"]=5679,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=64061,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=16015,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=42520,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4295,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=42520,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=4146,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=567,
+ ["unit"]=0
+ }
+ },
+ [5679]={
+ ["next_chapter"]=5680,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=64129,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=16032,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=42945,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4337,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=42945,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=4146,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=567,
+ ["unit"]=0
+ }
+ },
+ [5680]={
+ ["next_chapter"]=5681,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=64199,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=16050,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=43375,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4381,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=43375,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=4580,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=568,
+ ["unit"]=0
+ }
+ },
+ [5681]={
+ ["next_chapter"]=5682,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=64269,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=16067,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=43809,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4425,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=43809,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=4580,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=568,
+ ["unit"]=0
+ }
+ },
+ [5682]={
+ ["next_chapter"]=5683,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=64341,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=16085,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=44247,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4469,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=44247,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=4580,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=568,
+ ["unit"]=0
+ }
+ },
+ [5683]={
+ ["next_chapter"]=5684,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=64413,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=16103,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=44689,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4514,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=44689,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=4580,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=568,
+ ["unit"]=0
+ }
+ },
+ [5684]={
+ ["next_chapter"]=5685,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=64485,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=16121,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=45136,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4559,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=45136,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=4580,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=568,
+ ["unit"]=0
+ }
+ },
+ [5685]={
+ ["next_chapter"]=5686,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=64559,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=16140,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=45587,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4604,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=45587,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=4580,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=568,
+ ["unit"]=0
+ }
+ },
+ [5686]={
+ ["next_chapter"]=5687,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=64633,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=16158,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=46043,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4650,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=46043,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=4580,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=568,
+ ["unit"]=0
+ }
+ },
+ [5687]={
+ ["next_chapter"]=5688,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=64708,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=16177,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=46504,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4697,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=46504,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=4580,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=568,
+ ["unit"]=0
+ }
+ },
+ [5688]={
+ ["next_chapter"]=5689,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=64784,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=16196,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=46969,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4744,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=46969,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=4580,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=568,
+ ["unit"]=0
+ }
+ },
+ [5689]={
+ ["next_chapter"]=5690,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=64861,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=16215,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=47438,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4791,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=47438,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=4580,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=568,
+ ["unit"]=0
+ }
+ },
+ [5690]={
+ ["next_chapter"]=5691,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=64938,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=16235,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=47913,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4839,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=47913,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=5059,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=569,
+ ["unit"]=0
+ }
+ },
+ [5691]={
+ ["next_chapter"]=5692,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=65017,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=16254,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=48392,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4888,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=48392,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=5059,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=569,
+ ["unit"]=0
+ }
+ },
+ [5692]={
+ ["next_chapter"]=5693,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=65096,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=16274,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=48876,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4936,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=48876,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=5059,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=569,
+ ["unit"]=0
+ }
+ },
+ [5693]={
+ ["next_chapter"]=5694,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=65176,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=16294,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=49365,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4986,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=49365,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=5059,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=569,
+ ["unit"]=0
+ }
+ },
+ [5694]={
+ ["next_chapter"]=5695,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=65257,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=16314,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=49858,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5036,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=49858,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=5059,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=569,
+ ["unit"]=0
+ }
+ },
+ [5695]={
+ ["next_chapter"]=5696,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=65339,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=16335,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=50357,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5086,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=50357,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=5059,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=569,
+ ["unit"]=0
+ }
+ },
+ [5696]={
+ ["next_chapter"]=5697,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=65421,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=16355,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=50860,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5137,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=50860,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=5059,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=569,
+ ["unit"]=0
+ }
+ },
+ [5697]={
+ ["next_chapter"]=5698,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=65505,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=16376,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=51369,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5188,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=51369,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=5059,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=569,
+ ["unit"]=0
+ }
+ },
+ [5698]={
+ ["next_chapter"]=5699,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=65589,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=16397,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=51883,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5240,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=51883,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=5059,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=569,
+ ["unit"]=0
+ }
+ },
+ [5699]={
+ ["next_chapter"]=5700,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=65674,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=16419,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=52401,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5293,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=52401,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=5059,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=569,
+ ["unit"]=0
+ }
+ },
+ [5700]={
+ ["next_chapter"]=5701,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=65760,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=16440,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=52925,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5345,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=52925,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=5588,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=570,
+ ["unit"]=0
+ }
+ },
+ [5701]={
+ ["next_chapter"]=5702,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=65847,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=16462,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=53455,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5399,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=53455,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=5588,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=570,
+ ["unit"]=0
+ }
+ },
+ [5702]={
+ ["next_chapter"]=5703,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=65935,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=16484,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=53989,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5453,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=53989,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=5588,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=570,
+ ["unit"]=0
+ }
+ },
+ [5703]={
+ ["next_chapter"]=5704,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=66023,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=16506,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=54529,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5507,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=54529,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=5588,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=570,
+ ["unit"]=0
+ }
+ },
+ [5704]={
+ ["next_chapter"]=5705,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=66113,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=16528,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=55074,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5563,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=55074,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=5588,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=570,
+ ["unit"]=0
+ }
+ },
+ [5705]={
+ ["next_chapter"]=5706,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=66203,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=16551,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=55625,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5618,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=55625,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=5588,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=570,
+ ["unit"]=0
+ }
+ },
+ [5706]={
+ ["next_chapter"]=5707,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=66294,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=16574,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=56181,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5674,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=56181,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=5588,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=570,
+ ["unit"]=0
+ }
+ },
+ [5707]={
+ ["next_chapter"]=5708,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=66386,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=16597,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=56743,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5731,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=56743,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=5588,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=570,
+ ["unit"]=0
+ }
+ },
+ [5708]={
+ ["next_chapter"]=5709,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=66479,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=16620,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=57311,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5788,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=57311,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=5588,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=570,
+ ["unit"]=0
+ }
+ },
+ [5709]={
+ ["next_chapter"]=5710,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=66573,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=16643,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=57884,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5846,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=57884,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=5588,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=570,
+ ["unit"]=0
+ }
+ },
+ [5710]={
+ ["next_chapter"]=5711,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=66668,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=16667,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=58463,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5905,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=58463,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=6173,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=571,
+ ["unit"]=0
+ }
+ },
+ [5711]={
+ ["next_chapter"]=5712,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=66764,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=16691,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=59047,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5964,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=59047,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=6173,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=571,
+ ["unit"]=0
+ }
+ },
+ [5712]={
+ ["next_chapter"]=5713,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=66860,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=16715,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=59638,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6023,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=59638,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=6173,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=571,
+ ["unit"]=0
+ }
+ },
+ [5713]={
+ ["next_chapter"]=5714,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=66958,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=16739,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=60234,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6084,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=60234,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=6173,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=571,
+ ["unit"]=0
+ }
+ },
+ [5714]={
+ ["next_chapter"]=5715,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=67056,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=16764,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=60836,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6144,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=60836,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=6173,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=571,
+ ["unit"]=0
+ }
+ },
+ [5715]={
+ ["next_chapter"]=5716,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=67156,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=16789,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=61445,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6206,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=61445,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=6173,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=571,
+ ["unit"]=0
+ }
+ },
+ [5716]={
+ ["next_chapter"]=5717,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=67256,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=16814,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=62059,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6268,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=62059,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=6173,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=571,
+ ["unit"]=0
+ }
+ },
+ [5717]={
+ ["next_chapter"]=5718,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=67357,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=16839,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=62680,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6331,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=62680,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=6173,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=571,
+ ["unit"]=0
+ }
+ },
+ [5718]={
+ ["next_chapter"]=5719,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=67459,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=16865,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=63307,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6394,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=63307,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=6173,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=571,
+ ["unit"]=0
+ }
+ },
+ [5719]={
+ ["next_chapter"]=5720,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=67562,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=16891,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=63940,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6458,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=63940,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=6173,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=571,
+ ["unit"]=0
+ }
+ },
+ [5720]={
+ ["next_chapter"]=5721,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=67667,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=16917,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=64579,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6522,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=64579,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=6818,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=572,
+ ["unit"]=0
+ }
+ },
+ [5721]={
+ ["next_chapter"]=5722,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=67772,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=16943,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=65225,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6588,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=65225,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=6818,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=572,
+ ["unit"]=0
+ }
+ },
+ [5722]={
+ ["next_chapter"]=5723,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=67878,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=16969,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=65877,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6654,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=65877,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=6818,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=572,
+ ["unit"]=0
+ }
+ },
+ [5723]={
+ ["next_chapter"]=5724,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=67984,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=16996,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=66536,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6720,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=66536,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=6818,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=572,
+ ["unit"]=0
+ }
+ },
+ [5724]={
+ ["next_chapter"]=5725,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=68092,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=17023,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=67201,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6787,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=67201,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=6818,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=572,
+ ["unit"]=0
+ }
+ },
+ [5725]={
+ ["next_chapter"]=5726,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=68201,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=17050,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=67873,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6855,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=67873,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=6818,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=572,
+ ["unit"]=0
+ }
+ },
+ [5726]={
+ ["next_chapter"]=5727,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=68311,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=17078,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=68552,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6924,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=68552,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=6818,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=572,
+ ["unit"]=0
+ }
+ },
+ [5727]={
+ ["next_chapter"]=5728,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=68422,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=17105,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=69238,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6993,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=69238,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=6818,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=572,
+ ["unit"]=0
+ }
+ },
+ [5728]={
+ ["next_chapter"]=5729,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=68534,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=17133,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=69930,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7063,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=69930,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=6818,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=572,
+ ["unit"]=0
+ }
+ },
+ [5729]={
+ ["next_chapter"]=5730,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=68646,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=17162,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=70629,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7134,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=70629,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=6818,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=572,
+ ["unit"]=0
+ }
+ },
+ [5730]={
+ ["next_chapter"]=5731,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=68760,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=17190,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=71336,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7205,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=71336,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=7532,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=573,
+ ["unit"]=0
+ }
+ },
+ [5731]={
+ ["next_chapter"]=5732,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=68875,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=17219,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=72049,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7277,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=72049,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=7532,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=573,
+ ["unit"]=0
+ }
+ },
+ [5732]={
+ ["next_chapter"]=5733,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=68991,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=17248,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=72769,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7350,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=72769,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=7532,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=573,
+ ["unit"]=0
+ }
+ },
+ [5733]={
+ ["next_chapter"]=5734,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=69108,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=17277,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=73497,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7423,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=73497,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=7532,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=573,
+ ["unit"]=0
+ }
+ },
+ [5734]={
+ ["next_chapter"]=5735,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=69225,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=17306,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=74232,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7497,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=74232,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=7532,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=573,
+ ["unit"]=0
+ }
+ },
+ [5735]={
+ ["next_chapter"]=5736,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=69344,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=17336,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=74974,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7572,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=74974,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=7532,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=573,
+ ["unit"]=0
+ }
+ },
+ [5736]={
+ ["next_chapter"]=5737,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=69464,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=17366,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=75724,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7648,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=75724,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=7532,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=573,
+ ["unit"]=0
+ }
+ },
+ [5737]={
+ ["next_chapter"]=5738,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=69585,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=17396,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=76481,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7725,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=76481,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=7532,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=573,
+ ["unit"]=0
+ }
+ },
+ [5738]={
+ ["next_chapter"]=5739,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=69707,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=17427,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=77246,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7802,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=77246,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=7532,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=573,
+ ["unit"]=0
+ }
+ },
+ [5739]={
+ ["next_chapter"]=5740,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=69829,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=17457,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=78019,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7880,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=78019,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=7532,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=573,
+ ["unit"]=0
+ }
+ },
+ [5740]={
+ ["next_chapter"]=5741,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=69953,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=17488,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=78799,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7959,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=78799,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=8320,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=574,
+ ["unit"]=0
+ }
+ },
+ [5741]={
+ ["next_chapter"]=5742,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=70078,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=17520,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=79587,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8038,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=79587,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=8320,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=574,
+ ["unit"]=0
+ }
+ },
+ [5742]={
+ ["next_chapter"]=5743,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=70204,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=17551,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=80383,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8119,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=80383,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=8320,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=574,
+ ["unit"]=0
+ }
+ },
+ [5743]={
+ ["next_chapter"]=5744,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=70331,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=17583,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=81187,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8200,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=81187,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=8320,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=574,
+ ["unit"]=0
+ }
+ },
+ [5744]={
+ ["next_chapter"]=5745,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=70459,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=17615,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=81998,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8282,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=81998,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=8320,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=574,
+ ["unit"]=0
+ }
+ },
+ [5745]={
+ ["next_chapter"]=5746,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=70588,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=17647,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=82818,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8365,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=82818,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=8320,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=574,
+ ["unit"]=0
+ }
+ },
+ [5746]={
+ ["next_chapter"]=5747,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=70719,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=17680,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=83647,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8448,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=83647,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=8320,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=574,
+ ["unit"]=0
+ }
+ },
+ [5747]={
+ ["next_chapter"]=5748,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=70850,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=17712,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=84483,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8533,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=84483,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=8320,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=574,
+ ["unit"]=0
+ }
+ },
+ [5748]={
+ ["next_chapter"]=5749,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=70982,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=17746,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=85328,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8618,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=85328,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=8320,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=574,
+ ["unit"]=0
+ }
+ },
+ [5749]={
+ ["next_chapter"]=5750,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=71116,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=17779,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=86181,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8704,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=86181,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=8320,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=574,
+ ["unit"]=0
+ }
+ },
+ [5750]={
+ ["next_chapter"]=5751,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=71250,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=17813,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=87043,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8791,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=87043,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=9190,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=575,
+ ["unit"]=0
+ }
+ },
+ [5751]={
+ ["next_chapter"]=5752,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=71386,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=17846,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=87913,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8879,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=87913,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=9190,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=575,
+ ["unit"]=0
+ }
+ },
+ [5752]={
+ ["next_chapter"]=5753,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=71522,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=17881,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=88793,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8968,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=88793,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=9190,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=575,
+ ["unit"]=0
+ }
+ },
+ [5753]={
+ ["next_chapter"]=5754,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=71660,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=17915,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=89680,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9058,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=89680,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=9190,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=575,
+ ["unit"]=0
+ }
+ },
+ [5754]={
+ ["next_chapter"]=5755,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=71799,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=17950,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=90577,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9148,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=90577,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=9190,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=575,
+ ["unit"]=0
+ }
+ },
+ [5755]={
+ ["next_chapter"]=5756,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=71939,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=17985,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=91483,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9240,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=91483,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=9190,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=575,
+ ["unit"]=0
+ }
+ },
+ [5756]={
+ ["next_chapter"]=5757,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=72080,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=18020,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=92398,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9332,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=92398,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=9190,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=575,
+ ["unit"]=0
+ }
+ },
+ [5757]={
+ ["next_chapter"]=5758,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=72222,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=18055,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=93322,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9426,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=93322,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=9190,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=575,
+ ["unit"]=0
+ }
+ },
+ [5758]={
+ ["next_chapter"]=5759,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=72365,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=18091,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=94255,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9520,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=94255,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=9190,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=575,
+ ["unit"]=0
+ }
+ },
+ [5759]={
+ ["next_chapter"]=5760,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=72509,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=18127,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=95198,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9615,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=95198,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=9190,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=575,
+ ["unit"]=0
+ }
+ },
+ [5760]={
+ ["next_chapter"]=5761,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=72655,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=18164,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=96150,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9711,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=96150,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=10152,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=576,
+ ["unit"]=0
+ }
+ },
+ [5761]={
+ ["next_chapter"]=5762,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=72801,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=18200,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=97111,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9808,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=97111,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=10152,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=576,
+ ["unit"]=0
+ }
+ },
+ [5762]={
+ ["next_chapter"]=5763,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=72949,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=18237,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=98082,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9906,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=98082,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=10152,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=576,
+ ["unit"]=0
+ }
+ },
+ [5763]={
+ ["next_chapter"]=5764,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=73098,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=18274,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=99063,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10005,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=99063,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=10152,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=576,
+ ["unit"]=0
+ }
+ },
+ [5764]={
+ ["next_chapter"]=5765,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=73248,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=18312,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=100054,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10105,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=100054,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=10152,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=576,
+ ["unit"]=0
+ }
+ },
+ [5765]={
+ ["next_chapter"]=5766,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=73399,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=18350,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=101054,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10206,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=101054,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=10152,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=576,
+ ["unit"]=0
+ }
+ },
+ [5766]={
+ ["next_chapter"]=5767,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=73551,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=18388,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=102065,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10309,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=102065,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=10152,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=576,
+ ["unit"]=0
+ }
+ },
+ [5767]={
+ ["next_chapter"]=5768,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=73705,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=18426,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=103085,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10412,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=103085,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=10152,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=576,
+ ["unit"]=0
+ }
+ },
+ [5768]={
+ ["next_chapter"]=5769,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=73859,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=18465,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=104116,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10516,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=104116,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=10152,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=576,
+ ["unit"]=0
+ }
+ },
+ [5769]={
+ ["next_chapter"]=5770,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=74015,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=18504,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=105157,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10621,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=105157,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=10152,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=576,
+ ["unit"]=0
+ }
+ },
+ [5770]={
+ ["next_chapter"]=5771,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=74172,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=18543,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=106209,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10727,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=106209,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=11214,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=577,
+ ["unit"]=0
+ }
+ },
+ [5771]={
+ ["next_chapter"]=5772,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=74330,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=18582,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=107271,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10834,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=107271,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=11214,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=577,
+ ["unit"]=0
+ }
+ },
+ [5772]={
+ ["next_chapter"]=5773,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=74489,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=18622,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=108344,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10943,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=108344,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=11214,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=577,
+ ["unit"]=0
+ }
+ },
+ [5773]={
+ ["next_chapter"]=5774,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=74649,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=18662,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=109427,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11052,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=109427,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=11214,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=577,
+ ["unit"]=0
+ }
+ },
+ [5774]={
+ ["next_chapter"]=5775,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=74811,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=18703,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=110521,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11163,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=110521,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=11214,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=577,
+ ["unit"]=0
+ }
+ },
+ [5775]={
+ ["next_chapter"]=5776,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=74974,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=18743,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=111627,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11274,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=111627,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=11214,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=577,
+ ["unit"]=0
+ }
+ },
+ [5776]={
+ ["next_chapter"]=5777,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=75138,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=18784,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=112743,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11387,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=112743,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=11214,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=577,
+ ["unit"]=0
+ }
+ },
+ [5777]={
+ ["next_chapter"]=5778,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=75303,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=18826,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=113870,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11501,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=113870,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=11214,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=577,
+ ["unit"]=0
+ }
+ },
+ [5778]={
+ ["next_chapter"]=5779,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=75469,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=18867,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=115009,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11616,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=115009,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=11214,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=577,
+ ["unit"]=0
+ }
+ },
+ [5779]={
+ ["next_chapter"]=5780,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=75637,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=18909,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=116159,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11732,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=116159,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=11214,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=577,
+ ["unit"]=0
+ }
+ },
+ [5780]={
+ ["next_chapter"]=5781,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=75805,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=18951,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=117321,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11849,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=117321,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=12387,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=578,
+ ["unit"]=0
+ }
+ },
+ [5781]={
+ ["next_chapter"]=5782,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=75975,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=18994,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=118494,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11968,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=118494,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=12387,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=578,
+ ["unit"]=0
+ }
+ },
+ [5782]={
+ ["next_chapter"]=5783,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=76147,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=19037,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=119679,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12088,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=119679,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=12387,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=578,
+ ["unit"]=0
+ }
+ },
+ [5783]={
+ ["next_chapter"]=5784,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=76319,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=19080,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=120876,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12208,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=120876,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=12387,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=578,
+ ["unit"]=0
+ }
+ },
+ [5784]={
+ ["next_chapter"]=5785,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=76493,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=19123,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=122084,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12331,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=122084,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=12387,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=578,
+ ["unit"]=0
+ }
+ },
+ [5785]={
+ ["next_chapter"]=5786,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=76667,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=19167,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=123305,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12454,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=123305,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=12387,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=578,
+ ["unit"]=0
+ }
+ },
+ [5786]={
+ ["next_chapter"]=5787,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=76843,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=19211,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=124538,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12578,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=124538,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=12387,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=578,
+ ["unit"]=0
+ }
+ },
+ [5787]={
+ ["next_chapter"]=5788,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=77021,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=19255,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=125784,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12704,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=125784,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=12387,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=578,
+ ["unit"]=0
+ }
+ },
+ [5788]={
+ ["next_chapter"]=5789,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=77199,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=19300,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=127042,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12831,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=127042,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=12387,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=578,
+ ["unit"]=0
+ }
+ },
+ [5789]={
+ ["next_chapter"]=5790,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=77379,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=19345,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=128312,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12960,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=128312,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=12387,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=578,
+ ["unit"]=0
+ }
+ },
+ [5790]={
+ ["next_chapter"]=5791,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=77560,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=19390,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=129595,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13089,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=129595,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=13683,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=579,
+ ["unit"]=0
+ }
+ },
+ [5791]={
+ ["next_chapter"]=5792,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=77742,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=19436,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=130891,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13220,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=130891,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=13683,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=579,
+ ["unit"]=0
+ }
+ },
+ [5792]={
+ ["next_chapter"]=5793,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=77926,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=19481,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=132200,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13352,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=132200,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=13683,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=579,
+ ["unit"]=0
+ }
+ },
+ [5793]={
+ ["next_chapter"]=5794,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=78111,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=19528,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=133522,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13486,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=133522,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=13683,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=579,
+ ["unit"]=0
+ }
+ },
+ [5794]={
+ ["next_chapter"]=5795,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=78297,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=19574,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=134857,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13621,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=134857,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=13683,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=579,
+ ["unit"]=0
+ }
+ },
+ [5795]={
+ ["next_chapter"]=5796,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=78484,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=19621,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=136206,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13757,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=136206,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=13683,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=579,
+ ["unit"]=0
+ }
+ },
+ [5796]={
+ ["next_chapter"]=5797,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=78673,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=19668,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=137568,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13894,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=137568,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=13683,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=579,
+ ["unit"]=0
+ }
+ },
+ [5797]={
+ ["next_chapter"]=5798,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=78863,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=19716,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=138943,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14033,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=138943,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=13683,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=579,
+ ["unit"]=0
+ }
+ },
+ [5798]={
+ ["next_chapter"]=5799,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=79054,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=19763,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=140333,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14174,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=140333,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=13683,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=579,
+ ["unit"]=0
+ }
+ },
+ [5799]={
+ ["next_chapter"]=5800,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=79246,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=19812,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=141736,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14315,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=141736,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=13683,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=579,
+ ["unit"]=0
+ }
+ },
+ [5800]={
+ ["next_chapter"]=5801,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=79440,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=19860,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=143154,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14459,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=143154,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=15114,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=580,
+ ["unit"]=0
+ }
+ },
+ [5801]={
+ ["next_chapter"]=5802,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=79635,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=19909,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=144585,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14603,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=144585,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=15114,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=580,
+ ["unit"]=0
+ }
+ },
+ [5802]={
+ ["next_chapter"]=5803,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=79831,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=19958,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=146031,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14749,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=146031,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=15114,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=580,
+ ["unit"]=0
+ }
+ },
+ [5803]={
+ ["next_chapter"]=5804,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=80029,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=20007,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=147491,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14897,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=147491,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=15114,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=580,
+ ["unit"]=0
+ }
+ },
+ [5804]={
+ ["next_chapter"]=5805,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=80228,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=20057,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=148966,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15046,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=148966,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=15114,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=580,
+ ["unit"]=0
+ }
+ },
+ [5805]={
+ ["next_chapter"]=5806,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=80428,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=20107,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=150456,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15196,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=150456,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=15114,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=580,
+ ["unit"]=0
+ }
+ },
+ [5806]={
+ ["next_chapter"]=5807,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=80630,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=20157,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=151960,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15348,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=151960,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=15114,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=580,
+ ["unit"]=0
+ }
+ },
+ [5807]={
+ ["next_chapter"]=5808,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=80833,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=20208,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=153480,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15501,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=153480,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=15114,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=580,
+ ["unit"]=0
+ }
+ },
+ [5808]={
+ ["next_chapter"]=5809,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=81037,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=20259,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=155015,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15656,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=155015,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=15114,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=580,
+ ["unit"]=0
+ }
+ },
+ [5809]={
+ ["next_chapter"]=5810,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=81243,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=20311,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=156565,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15813,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=156565,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=15114,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=580,
+ ["unit"]=0
+ }
+ },
+ [5810]={
+ ["next_chapter"]=5811,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=81450,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=20362,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=158131,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15971,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=158131,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=16696,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=581,
+ ["unit"]=0
+ }
+ },
+ [5811]={
+ ["next_chapter"]=5812,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=81658,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=20414,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=159712,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16131,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=159712,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=16696,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=581,
+ ["unit"]=0
+ }
+ },
+ [5812]={
+ ["next_chapter"]=5813,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=81867,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=20467,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=161309,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16292,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=161309,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=16696,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=581,
+ ["unit"]=0
+ }
+ },
+ [5813]={
+ ["next_chapter"]=5814,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=82078,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=20520,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=162922,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16455,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=162922,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=16696,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=581,
+ ["unit"]=0
+ }
+ },
+ [5814]={
+ ["next_chapter"]=5815,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=82291,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=20573,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=164551,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16620,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=164551,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=16696,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=581,
+ ["unit"]=0
+ }
+ },
+ [5815]={
+ ["next_chapter"]=5816,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=82504,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=20626,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=166197,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16786,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=166197,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=16696,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=581,
+ ["unit"]=0
+ }
+ },
+ [5816]={
+ ["next_chapter"]=5817,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=82719,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=20680,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=167859,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16954,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=167859,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=16696,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=581,
+ ["unit"]=0
+ }
+ },
+ [5817]={
+ ["next_chapter"]=5818,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=82936,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=20734,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=169537,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17123,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=169537,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=16696,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=581,
+ ["unit"]=0
+ }
+ },
+ [5818]={
+ ["next_chapter"]=5819,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=83153,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=20788,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=171233,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17295,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=171233,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=16696,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=581,
+ ["unit"]=0
+ }
+ },
+ [5819]={
+ ["next_chapter"]=5820,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=83372,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=20843,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=172945,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17467,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=172945,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=16696,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=581,
+ ["unit"]=0
+ }
+ },
+ [5820]={
+ ["next_chapter"]=5821,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=83593,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=20898,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=174675,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17642,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=174675,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=18443,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=582,
+ ["unit"]=0
+ }
+ },
+ [5821]={
+ ["next_chapter"]=5822,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=83815,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=20954,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=176421,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17819,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=176421,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=18443,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=582,
+ ["unit"]=0
+ }
+ },
+ [5822]={
+ ["next_chapter"]=5823,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=84038,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=21010,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=178186,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17997,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=178186,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=18443,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=582,
+ ["unit"]=0
+ }
+ },
+ [5823]={
+ ["next_chapter"]=5824,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=84263,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=21066,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=179967,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18177,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=179967,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=18443,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=582,
+ ["unit"]=0
+ }
+ },
+ [5824]={
+ ["next_chapter"]=5825,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=84489,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=21122,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=181767,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18358,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=181767,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=18443,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=582,
+ ["unit"]=0
+ }
+ },
+ [5825]={
+ ["next_chapter"]=5826,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=84716,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=21179,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=183585,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18542,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=183585,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=18443,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=582,
+ ["unit"]=0
+ }
+ },
+ [5826]={
+ ["next_chapter"]=5827,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=84945,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=21236,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=185421,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18727,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=185421,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=18443,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=582,
+ ["unit"]=0
+ }
+ },
+ [5827]={
+ ["next_chapter"]=5828,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=85175,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=21294,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=187275,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18915,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=187275,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=18443,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=582,
+ ["unit"]=0
+ }
+ },
+ [5828]={
+ ["next_chapter"]=5829,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=85407,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=21352,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=189148,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19104,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=189148,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=18443,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=582,
+ ["unit"]=0
+ }
+ },
+ [5829]={
+ ["next_chapter"]=5830,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=85640,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=21410,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=191039,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19295,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=191039,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=18443,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=582,
+ ["unit"]=0
+ }
+ },
+ [5830]={
+ ["next_chapter"]=5831,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=85875,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=21469,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=192949,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19488,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=192949,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=20372,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=583,
+ ["unit"]=0
+ }
+ },
+ [5831]={
+ ["next_chapter"]=5832,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=86111,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=21528,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=194879,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19683,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=194879,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=20372,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=583,
+ ["unit"]=0
+ }
+ },
+ [5832]={
+ ["next_chapter"]=5833,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=86348,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=21587,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=196828,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19880,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=196828,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=20372,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=583,
+ ["unit"]=0
+ }
+ },
+ [5833]={
+ ["next_chapter"]=5834,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=86587,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=21647,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=198796,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20078,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=198796,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=20372,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=583,
+ ["unit"]=0
+ }
+ },
+ [5834]={
+ ["next_chapter"]=5835,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=86827,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=21707,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=200784,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20279,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=200784,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=20372,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=583,
+ ["unit"]=0
+ }
+ },
+ [5835]={
+ ["next_chapter"]=5836,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=87069,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=21767,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=202792,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20482,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=202792,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=20372,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=583,
+ ["unit"]=0
+ }
+ },
+ [5836]={
+ ["next_chapter"]=5837,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=87312,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=21828,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=204820,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20687,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=204820,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=20372,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=583,
+ ["unit"]=0
+ }
+ },
+ [5837]={
+ ["next_chapter"]=5838,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=87556,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=21889,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=206868,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20894,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=206868,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=20372,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=583,
+ ["unit"]=0
+ }
+ },
+ [5838]={
+ ["next_chapter"]=5839,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=87802,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=21951,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=208937,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21103,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=208937,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=20372,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=583,
+ ["unit"]=0
+ }
+ },
+ [5839]={
+ ["next_chapter"]=5840,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=88050,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=22012,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=211026,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21314,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=211026,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=20372,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=583,
+ ["unit"]=0
+ }
+ },
+ [5840]={
+ ["next_chapter"]=5841,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=88299,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=22075,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=213136,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21527,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=213136,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=22503,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=584,
+ ["unit"]=0
+ }
+ },
+ [5841]={
+ ["next_chapter"]=5842,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=88549,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=22137,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=215268,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21742,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=215268,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=22503,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=584,
+ ["unit"]=0
+ }
+ },
+ [5842]={
+ ["next_chapter"]=5843,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=88801,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=22200,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=217420,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21959,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=217420,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=22503,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=584,
+ ["unit"]=0
+ }
+ },
+ [5843]={
+ ["next_chapter"]=5844,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=89055,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=22264,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=219594,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22179,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=219594,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=22503,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=584,
+ ["unit"]=0
+ }
+ },
+ [5844]={
+ ["next_chapter"]=5845,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=89309,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=22327,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=221790,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22401,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=221790,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=22503,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=584,
+ ["unit"]=0
+ }
+ },
+ [5845]={
+ ["next_chapter"]=5846,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=89566,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=22391,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=224008,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22625,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=224008,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=22503,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=584,
+ ["unit"]=0
+ }
+ },
+ [5846]={
+ ["next_chapter"]=5847,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=89824,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=22456,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=226248,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22851,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=226248,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=22503,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=584,
+ ["unit"]=0
+ }
+ },
+ [5847]={
+ ["next_chapter"]=5848,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=90083,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=22521,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=228511,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23080,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=228511,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=22503,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=584,
+ ["unit"]=0
+ }
+ },
+ [5848]={
+ ["next_chapter"]=5849,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=90344,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=22586,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=230796,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23310,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=230796,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=22503,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=584,
+ ["unit"]=0
+ }
+ },
+ [5849]={
+ ["next_chapter"]=5850,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=90606,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=22652,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=233104,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23543,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=233104,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=22503,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=584,
+ ["unit"]=0
+ }
+ },
+ [5850]={
+ ["next_chapter"]=5851,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=90870,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=22718,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=235435,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23779,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=235435,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=24858,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=585,
+ ["unit"]=0
+ }
+ },
+ [5851]={
+ ["next_chapter"]=5852,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=91135,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=22784,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=237789,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24017,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=237789,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=24858,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=585,
+ ["unit"]=0
+ }
+ },
+ [5852]={
+ ["next_chapter"]=5853,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=91402,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=22851,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=240167,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24257,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=240167,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=24858,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=585,
+ ["unit"]=0
+ }
+ },
+ [5853]={
+ ["next_chapter"]=5854,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=91671,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=22918,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=242569,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24499,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=242569,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=24858,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=585,
+ ["unit"]=0
+ }
+ },
+ [5854]={
+ ["next_chapter"]=5855,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=91941,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=22985,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=244995,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24744,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=244995,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=24858,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=585,
+ ["unit"]=0
+ }
+ },
+ [5855]={
+ ["next_chapter"]=5856,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=92212,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=23053,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=247445,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24992,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=247445,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=24858,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=585,
+ ["unit"]=0
+ }
+ },
+ [5856]={
+ ["next_chapter"]=5857,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=92485,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=23121,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=249919,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25242,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=249919,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=24858,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=585,
+ ["unit"]=0
+ }
+ },
+ [5857]={
+ ["next_chapter"]=5858,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=92759,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=23190,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=252418,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25494,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=252418,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=24858,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=585,
+ ["unit"]=0
+ }
+ },
+ [5858]={
+ ["next_chapter"]=5859,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=93036,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=23259,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=254942,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25749,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=254942,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=24858,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=585,
+ ["unit"]=0
+ }
+ },
+ [5859]={
+ ["next_chapter"]=5860,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=93313,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=23328,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=257492,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26007,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=257492,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=24858,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=585,
+ ["unit"]=0
+ }
+ },
+ [5860]={
+ ["next_chapter"]=5861,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=93592,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=23398,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=260067,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26267,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=260067,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=27458,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=586,
+ ["unit"]=0
+ }
+ },
+ [5861]={
+ ["next_chapter"]=5862,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=93873,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=23468,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=262667,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26529,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=262667,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=27458,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=586,
+ ["unit"]=0
+ }
+ },
+ [5862]={
+ ["next_chapter"]=5863,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=94155,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=23539,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=265294,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26795,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=265294,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=27458,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=586,
+ ["unit"]=0
+ }
+ },
+ [5863]={
+ ["next_chapter"]=5864,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=94439,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=23610,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=267947,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27063,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=267947,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=27458,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=586,
+ ["unit"]=0
+ }
+ },
+ [5864]={
+ ["next_chapter"]=5865,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=94725,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=23681,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=270626,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27333,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=270626,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=27458,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=586,
+ ["unit"]=0
+ }
+ },
+ [5865]={
+ ["next_chapter"]=5866,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=95012,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=23753,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=273333,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27607,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=273333,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=27458,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=586,
+ ["unit"]=0
+ }
+ },
+ [5866]={
+ ["next_chapter"]=5867,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=95300,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=23825,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=276066,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27883,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=276066,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=27458,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=586,
+ ["unit"]=0
+ }
+ },
+ [5867]={
+ ["next_chapter"]=5868,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=95590,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=23898,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=278827,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28161,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=278827,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=27458,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=586,
+ ["unit"]=0
+ }
+ },
+ [5868]={
+ ["next_chapter"]=5869,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=95882,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=23970,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=281615,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28443,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=281615,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=27458,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=586,
+ ["unit"]=0
+ }
+ },
+ [5869]={
+ ["next_chapter"]=5870,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=96175,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=24044,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=284431,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28728,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=284431,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=27458,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=586,
+ ["unit"]=0
+ }
+ },
+ [5870]={
+ ["next_chapter"]=5871,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=96470,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=24118,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=287275,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29015,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=287275,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=30331,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=587,
+ ["unit"]=0
+ }
+ },
+ [5871]={
+ ["next_chapter"]=5872,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=96767,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=24192,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=290148,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29305,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=290148,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=30331,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=587,
+ ["unit"]=0
+ }
+ },
+ [5872]={
+ ["next_chapter"]=5873,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=97065,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=24266,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=293050,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29598,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=293050,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=30331,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=587,
+ ["unit"]=0
+ }
+ },
+ [5873]={
+ ["next_chapter"]=5874,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=97364,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=24341,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=295980,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29894,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=295980,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=30331,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=587,
+ ["unit"]=0
+ }
+ },
+ [5874]={
+ ["next_chapter"]=5875,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=97666,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=24416,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=298940,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30193,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=298940,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=30331,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=587,
+ ["unit"]=0
+ }
+ },
+ [5875]={
+ ["next_chapter"]=5876,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=97969,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=24492,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=301929,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30495,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=301929,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=30331,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=587,
+ ["unit"]=0
+ }
+ },
+ [5876]={
+ ["next_chapter"]=5877,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=98273,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=24568,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=304949,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30800,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=304949,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=30331,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=587,
+ ["unit"]=0
+ }
+ },
+ [5877]={
+ ["next_chapter"]=5878,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=98579,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=24645,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=307998,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31108,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=307998,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=30331,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=587,
+ ["unit"]=0
+ }
+ },
+ [5878]={
+ ["next_chapter"]=5879,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=98887,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=24722,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=311078,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31419,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=311078,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=30331,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=587,
+ ["unit"]=0
+ }
+ },
+ [5879]={
+ ["next_chapter"]=5880,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=99197,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=24799,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=314189,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31733,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=314189,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=30331,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=587,
+ ["unit"]=0
+ }
+ },
+ [5880]={
+ ["next_chapter"]=5881,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=99508,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=24877,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=317331,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32050,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=317331,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=33504,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=588,
+ ["unit"]=0
+ }
+ },
+ [5881]={
+ ["next_chapter"]=5882,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=99821,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=24955,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=320504,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32371,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=320504,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=33504,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=588,
+ ["unit"]=0
+ }
+ },
+ [5882]={
+ ["next_chapter"]=5883,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=100135,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=25034,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=323709,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32695,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=323709,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=33504,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=588,
+ ["unit"]=0
+ }
+ },
+ [5883]={
+ ["next_chapter"]=5884,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=100451,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=25113,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=326946,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33022,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=326946,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=33504,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=588,
+ ["unit"]=0
+ }
+ },
+ [5884]={
+ ["next_chapter"]=5885,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=100769,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=25192,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=330216,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33352,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=330216,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=33504,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=588,
+ ["unit"]=0
+ }
+ },
+ [5885]={
+ ["next_chapter"]=5886,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=101088,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=25272,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=333518,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33685,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=333518,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=33504,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=588,
+ ["unit"]=0
+ }
+ },
+ [5886]={
+ ["next_chapter"]=5887,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=101409,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=25352,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=336853,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34022,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=336853,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=33504,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=588,
+ ["unit"]=0
+ }
+ },
+ [5887]={
+ ["next_chapter"]=5888,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=101732,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=25433,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=340222,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34362,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=340222,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=33504,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=588,
+ ["unit"]=0
+ }
+ },
+ [5888]={
+ ["next_chapter"]=5889,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=102056,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=25514,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=343624,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34706,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=343624,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=33504,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=588,
+ ["unit"]=0
+ }
+ },
+ [5889]={
+ ["next_chapter"]=5890,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=102382,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=25595,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=347060,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35053,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=347060,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=33504,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=588,
+ ["unit"]=0
+ }
+ },
+ [5890]={
+ ["next_chapter"]=5891,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=102710,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=25677,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=350531,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35404,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=350531,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=37010,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=589,
+ ["unit"]=0
+ }
+ },
+ [5891]={
+ ["next_chapter"]=5892,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=103039,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=25760,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=354036,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35758,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=354036,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=37010,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=589,
+ ["unit"]=0
+ }
+ },
+ [5892]={
+ ["next_chapter"]=5893,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=103370,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=25843,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=357576,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36115,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=357576,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=37010,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=589,
+ ["unit"]=0
+ }
+ },
+ [5893]={
+ ["next_chapter"]=5894,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=103703,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=25926,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=361152,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36476,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=361152,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=37010,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=589,
+ ["unit"]=0
+ }
+ },
+ [5894]={
+ ["next_chapter"]=5895,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=104037,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=26009,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=364764,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36841,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=364764,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=37010,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=589,
+ ["unit"]=0
+ }
+ },
+ [5895]={
+ ["next_chapter"]=5896,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=104374,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=26093,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=368411,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37210,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=368411,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=37010,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=589,
+ ["unit"]=0
+ }
+ },
+ [5896]={
+ ["next_chapter"]=5897,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=104711,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=26178,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=372095,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37582,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=372095,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=37010,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=589,
+ ["unit"]=0
+ }
+ },
+ [5897]={
+ ["next_chapter"]=5898,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=105051,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=26263,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=375816,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37957,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=375816,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=37010,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=589,
+ ["unit"]=0
+ }
+ },
+ [5898]={
+ ["next_chapter"]=5899,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=105392,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=26348,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=379574,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=38337,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=379574,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=37010,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=589,
+ ["unit"]=0
+ }
+ },
+ [5899]={
+ ["next_chapter"]=5900,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=105735,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=26434,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=383370,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=38720,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=383370,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=37010,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=589,
+ ["unit"]=0
+ }
+ },
+ [5900]={
+ ["next_chapter"]=5901,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=106080,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=26520,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=387204,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39108,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=387204,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=40882,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=590,
+ ["unit"]=0
+ }
+ },
+ [5901]={
+ ["next_chapter"]=5902,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=106426,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=26607,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=391076,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39499,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=391076,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=40882,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=590,
+ ["unit"]=0
+ }
+ },
+ [5902]={
+ ["next_chapter"]=5903,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=106775,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=26694,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=394987,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39894,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=394987,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=40882,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=590,
+ ["unit"]=0
+ }
+ },
+ [5903]={
+ ["next_chapter"]=5904,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=107125,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=26781,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=398937,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=40293,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=398937,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=40882,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=590,
+ ["unit"]=0
+ }
+ },
+ [5904]={
+ ["next_chapter"]=5905,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=107476,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=26869,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=402926,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=40696,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=402926,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=40882,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=590,
+ ["unit"]=0
+ }
+ },
+ [5905]={
+ ["next_chapter"]=5906,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=107830,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=26957,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=406955,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41102,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=406955,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=40882,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=590,
+ ["unit"]=0
+ }
+ },
+ [5906]={
+ ["next_chapter"]=5907,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=108185,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=27046,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=411025,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41513,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=411025,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=40882,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=590,
+ ["unit"]=0
+ }
+ },
+ [5907]={
+ ["next_chapter"]=5908,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=108542,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=27135,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=415135,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41929,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=415135,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=40882,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=590,
+ ["unit"]=0
+ }
+ },
+ [5908]={
+ ["next_chapter"]=5909,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=108900,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=27225,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=419286,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=42348,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=419286,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=40882,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=590,
+ ["unit"]=0
+ }
+ },
+ [5909]={
+ ["next_chapter"]=5910,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=109261,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=27315,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=423479,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=42771,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=423479,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=40882,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=590,
+ ["unit"]=0
+ }
+ },
+ [5910]={
+ ["next_chapter"]=5911,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=109623,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=27406,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=427714,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=43199,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=427714,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=45159,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=591,
+ ["unit"]=0
+ }
+ },
+ [5911]={
+ ["next_chapter"]=5912,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=109987,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=27497,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=431991,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=43631,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=431991,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=45159,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=591,
+ ["unit"]=0
+ }
+ },
+ [5912]={
+ ["next_chapter"]=5913,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=110353,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=27588,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=436311,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=44067,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=436311,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=45159,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=591,
+ ["unit"]=0
+ }
+ },
+ [5913]={
+ ["next_chapter"]=5914,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=110720,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=27680,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=440674,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=44508,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=440674,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=45159,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=591,
+ ["unit"]=0
+ }
+ },
+ [5914]={
+ ["next_chapter"]=5915,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=111090,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=27772,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=445081,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=44953,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=445081,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=45159,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=591,
+ ["unit"]=0
+ }
+ },
+ [5915]={
+ ["next_chapter"]=5916,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=111461,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=27865,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=449532,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=45403,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=449532,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=45159,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=591,
+ ["unit"]=0
+ }
+ },
+ [5916]={
+ ["next_chapter"]=5917,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=111834,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=27958,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=454027,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=45857,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=454027,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=45159,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=591,
+ ["unit"]=0
+ }
+ },
+ [5917]={
+ ["next_chapter"]=5918,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=112208,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=28052,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=458567,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=46315,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=458567,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=45159,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=591,
+ ["unit"]=0
+ }
+ },
+ [5918]={
+ ["next_chapter"]=5919,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=112585,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=28146,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=463153,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=46778,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=463153,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=45159,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=591,
+ ["unit"]=0
+ }
+ },
+ [5919]={
+ ["next_chapter"]=5920,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=112963,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=28241,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=467784,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=47246,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=467784,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=45159,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=591,
+ ["unit"]=0
+ }
+ },
+ [5920]={
+ ["next_chapter"]=5921,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=113343,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=28336,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=472462,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=47719,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=472462,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=49884,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=592,
+ ["unit"]=0
+ }
+ },
+ [5921]={
+ ["next_chapter"]=5922,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=113725,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=28431,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=477187,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=48196,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=477187,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=49884,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=592,
+ ["unit"]=0
+ }
+ },
+ [5922]={
+ ["next_chapter"]=5923,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=114109,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=28527,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=481959,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=48678,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=481959,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=49884,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=592,
+ ["unit"]=0
+ }
+ },
+ [5923]={
+ ["next_chapter"]=5924,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=114495,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=28624,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=486778,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=49165,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=486778,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=49884,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=592,
+ ["unit"]=0
+ }
+ },
+ [5924]={
+ ["next_chapter"]=5925,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=114882,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=28721,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=491646,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=49656,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=491646,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=49884,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=592,
+ ["unit"]=0
+ }
+ },
+ [5925]={
+ ["next_chapter"]=5926,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=115271,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=28818,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=496563,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=50153,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=496563,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=49884,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=592,
+ ["unit"]=0
+ }
+ },
+ [5926]={
+ ["next_chapter"]=5927,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=115662,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=28916,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=501528,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=50654,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=501528,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=49884,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=592,
+ ["unit"]=0
+ }
+ },
+ [5927]={
+ ["next_chapter"]=5928,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=116055,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=29014,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=506544,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=51161,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=506544,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=49884,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=592,
+ ["unit"]=0
+ }
+ },
+ [5928]={
+ ["next_chapter"]=5929,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=116450,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=29112,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=511609,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=51673,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=511609,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=49884,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=592,
+ ["unit"]=0
+ }
+ },
+ [5929]={
+ ["next_chapter"]=5930,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=116847,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=29212,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=516725,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=52189,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=516725,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=49884,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=592,
+ ["unit"]=0
+ }
+ },
+ [5930]={
+ ["next_chapter"]=5931,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=117245,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=29311,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=521892,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=52711,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=521892,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=55102,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=593,
+ ["unit"]=0
+ }
+ },
+ [5931]={
+ ["next_chapter"]=5932,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=117645,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=29411,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=527111,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=53238,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=527111,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=55102,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=593,
+ ["unit"]=0
+ }
+ },
+ [5932]={
+ ["next_chapter"]=5933,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=118048,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=29512,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=532382,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=53771,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=532382,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=55102,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=593,
+ ["unit"]=0
+ }
+ },
+ [5933]={
+ ["next_chapter"]=5934,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=118452,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=29613,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=537706,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=54308,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=537706,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=55102,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=593,
+ ["unit"]=0
+ }
+ },
+ [5934]={
+ ["next_chapter"]=5935,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=118857,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=29714,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=543083,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=54851,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=543083,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=55102,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=593,
+ ["unit"]=0
+ }
+ },
+ [5935]={
+ ["next_chapter"]=5936,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=119265,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=29816,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=548514,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=55400,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=548514,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=55102,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=593,
+ ["unit"]=0
+ }
+ },
+ [5936]={
+ ["next_chapter"]=5937,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=119675,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=29919,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=553999,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=55954,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=553999,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=55102,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=593,
+ ["unit"]=0
+ }
+ },
+ [5937]={
+ ["next_chapter"]=5938,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120086,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=30022,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=559539,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=56513,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=559539,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=55102,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=593,
+ ["unit"]=0
+ }
+ },
+ [5938]={
+ ["next_chapter"]=5939,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120500,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=30125,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=565135,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=57079,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=565135,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=55102,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=593,
+ ["unit"]=0
+ }
+ },
+ [5939]={
+ ["next_chapter"]=5940,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120915,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=30229,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=570786,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=57649,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=570786,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=55102,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=593,
+ ["unit"]=0
+ }
+ },
+ [5940]={
+ ["next_chapter"]=5941,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=121332,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=30333,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=576494,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=58226,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=576494,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=60867,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=594,
+ ["unit"]=0
+ }
+ },
+ [5941]={
+ ["next_chapter"]=5942,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=121752,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=30438,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=582259,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=58808,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=582259,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=60867,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=594,
+ ["unit"]=0
+ }
+ },
+ [5942]={
+ ["next_chapter"]=5943,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=122173,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=30543,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=588081,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=59396,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=588081,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=60867,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=594,
+ ["unit"]=0
+ }
+ },
+ [5943]={
+ ["next_chapter"]=5944,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=122596,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=30649,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=593962,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=59990,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=593962,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=60867,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=594,
+ ["unit"]=0
+ }
+ },
+ [5944]={
+ ["next_chapter"]=5945,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=123020,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=30755,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=599902,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=60590,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=599902,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=60867,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=594,
+ ["unit"]=0
+ }
+ },
+ [5945]={
+ ["next_chapter"]=5946,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=123447,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=30862,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=605901,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=61196,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=605901,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=60867,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=594,
+ ["unit"]=0
+ }
+ },
+ [5946]={
+ ["next_chapter"]=5947,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=123876,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=30969,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=611960,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=61808,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=611960,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=60867,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=594,
+ ["unit"]=0
+ }
+ },
+ [5947]={
+ ["next_chapter"]=5948,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=124307,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=31077,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=618079,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=62426,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=618079,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=60867,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=594,
+ ["unit"]=0
+ }
+ },
+ [5948]={
+ ["next_chapter"]=5949,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=124739,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=31185,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=624260,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=63050,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=624260,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=60867,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=594,
+ ["unit"]=0
+ }
+ },
+ [5949]={
+ ["next_chapter"]=5950,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=125174,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=31293,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=630503,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=63681,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=630503,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=60867,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=594,
+ ["unit"]=0
+ }
+ },
+ [5950]={
+ ["next_chapter"]=5951,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=125610,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=31403,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=636808,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=64318,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=636808,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=67235,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=595,
+ ["unit"]=0
+ }
+ },
+ [5951]={
+ ["next_chapter"]=5952,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=126048,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=31512,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=643176,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=64961,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=643176,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=67235,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=595,
+ ["unit"]=0
+ }
+ },
+ [5952]={
+ ["next_chapter"]=5953,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=126489,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=31622,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=649608,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=65610,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=649608,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=67235,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=595,
+ ["unit"]=0
+ }
+ },
+ [5953]={
+ ["next_chapter"]=5954,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=126931,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=31733,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=656104,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=66266,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=656104,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=67235,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=595,
+ ["unit"]=0
+ }
+ },
+ [5954]={
+ ["next_chapter"]=5955,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=127375,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=31844,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=662665,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=66929,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=662665,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=67235,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=595,
+ ["unit"]=0
+ }
+ },
+ [5955]={
+ ["next_chapter"]=5956,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=127821,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=31955,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=669291,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=67598,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=669291,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=67235,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=595,
+ ["unit"]=0
+ }
+ },
+ [5956]={
+ ["next_chapter"]=5957,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=128270,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=32067,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=675984,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=68274,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=675984,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=67235,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=595,
+ ["unit"]=0
+ }
+ },
+ [5957]={
+ ["next_chapter"]=5958,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=128720,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=32180,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=682744,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=68957,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=682744,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=67235,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=595,
+ ["unit"]=0
+ }
+ },
+ [5958]={
+ ["next_chapter"]=5959,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=129172,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=32293,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=689572,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=69647,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=689572,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=67235,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=595,
+ ["unit"]=0
+ }
+ },
+ [5959]={
+ ["next_chapter"]=5960,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=129626,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=32406,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=696467,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=70343,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=696467,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=67235,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=595,
+ ["unit"]=0
+ }
+ },
+ [5960]={
+ ["next_chapter"]=5961,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=130082,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=32520,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=703432,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=71047,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=703432,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=74270,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=596,
+ ["unit"]=0
+ }
+ },
+ [5961]={
+ ["next_chapter"]=5962,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=130540,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=32635,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=710466,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=71757,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=710466,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=74270,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=596,
+ ["unit"]=0
+ }
+ },
+ [5962]={
+ ["next_chapter"]=5963,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=131000,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=32750,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=717571,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=72475,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=717571,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=74270,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=596,
+ ["unit"]=0
+ }
+ },
+ [5963]={
+ ["next_chapter"]=5964,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=131462,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=32866,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=724747,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=73199,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=724747,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=74270,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=596,
+ ["unit"]=0
+ }
+ },
+ [5964]={
+ ["next_chapter"]=5965,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=131926,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=32982,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=731994,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=73931,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=731994,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=74270,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=596,
+ ["unit"]=0
+ }
+ },
+ [5965]={
+ ["next_chapter"]=5966,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=132392,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=33098,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=739314,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=74671,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=739314,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=74270,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=596,
+ ["unit"]=0
+ }
+ },
+ [5966]={
+ ["next_chapter"]=5967,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=132860,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=33215,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=746707,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=75417,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=746707,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=74270,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=596,
+ ["unit"]=0
+ }
+ },
+ [5967]={
+ ["next_chapter"]=5968,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=133330,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=33333,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=754174,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=76172,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=754174,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=74270,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=596,
+ ["unit"]=0
+ }
+ },
+ [5968]={
+ ["next_chapter"]=5969,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=133802,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=33451,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=761716,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=76933,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=761716,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=74270,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=596,
+ ["unit"]=0
+ }
+ },
+ [5969]={
+ ["next_chapter"]=5970,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=134276,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=33569,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=769333,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=77703,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=769333,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=74270,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=596,
+ ["unit"]=0
+ }
+ },
+ [5970]={
+ ["next_chapter"]=5971,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=134753,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=33688,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=777027,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=78480,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=777027,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=82040,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=597,
+ ["unit"]=0
+ }
+ },
+ [5971]={
+ ["next_chapter"]=5972,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=135231,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=33808,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=784797,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=79264,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=784797,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=82040,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=597,
+ ["unit"]=0
+ }
+ },
+ [5972]={
+ ["next_chapter"]=5973,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=135711,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=33928,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=792645,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=80057,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=792645,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=82040,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=597,
+ ["unit"]=0
+ }
+ },
+ [5973]={
+ ["next_chapter"]=5974,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=136193,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=34048,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=800571,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=80858,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=800571,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=82040,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=597,
+ ["unit"]=0
+ }
+ },
+ [5974]={
+ ["next_chapter"]=5975,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=136677,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=34169,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=808577,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=81666,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=808577,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=82040,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=597,
+ ["unit"]=0
+ }
+ },
+ [5975]={
+ ["next_chapter"]=5976,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=137164,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=34291,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=816663,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=82483,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=816663,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=82040,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=597,
+ ["unit"]=0
+ }
+ },
+ [5976]={
+ ["next_chapter"]=5977,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=137652,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=34413,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=824829,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=83308,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=824829,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=82040,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=597,
+ ["unit"]=0
+ }
+ },
+ [5977]={
+ ["next_chapter"]=5978,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=138143,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=34536,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=833078,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=84141,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=833078,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=82040,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=597,
+ ["unit"]=0
+ }
+ },
+ [5978]={
+ ["next_chapter"]=5979,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=138635,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=34659,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=841408,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=84982,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=841408,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=82040,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=597,
+ ["unit"]=0
+ }
+ },
+ [5979]={
+ ["next_chapter"]=5980,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=139130,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=34782,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=849823,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=85832,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=849823,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=82040,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=597,
+ ["unit"]=0
+ }
+ },
+ [5980]={
+ ["next_chapter"]=5981,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=139626,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=34907,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=858321,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=86690,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=858321,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=90623,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=598,
+ ["unit"]=0
+ }
+ },
+ [5981]={
+ ["next_chapter"]=5982,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=140125,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=35031,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=866904,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=87557,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=866904,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=90623,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=598,
+ ["unit"]=0
+ }
+ },
+ [5982]={
+ ["next_chapter"]=5983,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=140626,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=35156,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=875573,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=88433,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=875573,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=90623,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=598,
+ ["unit"]=0
+ }
+ },
+ [5983]={
+ ["next_chapter"]=5984,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=141129,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=35282,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=884329,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=89317,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=884329,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=90623,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=598,
+ ["unit"]=0
+ }
+ },
+ [5984]={
+ ["next_chapter"]=5985,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=141634,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=35408,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=893172,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=90210,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=893172,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=90623,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=598,
+ ["unit"]=0
+ }
+ },
+ [5985]={
+ ["next_chapter"]=5986,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=142141,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=35535,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=902104,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=91112,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=902104,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=90623,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=598,
+ ["unit"]=0
+ }
+ },
+ [5986]={
+ ["next_chapter"]=5987,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=142650,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=35662,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=911125,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=92024,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=911125,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=90623,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=598,
+ ["unit"]=0
+ }
+ },
+ [5987]={
+ ["next_chapter"]=5988,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=143161,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=35790,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=920236,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=92944,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=920236,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=90623,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=598,
+ ["unit"]=0
+ }
+ },
+ [5988]={
+ ["next_chapter"]=5989,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=143674,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=35919,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=929438,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=93873,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=929438,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=90623,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=598,
+ ["unit"]=0
+ }
+ },
+ [5989]={
+ ["next_chapter"]=5990,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=144190,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=36047,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=938733,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=94812,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=938733,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=90623,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=598,
+ ["unit"]=0
+ }
+ },
+ [5990]={
+ ["next_chapter"]=5991,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=144707,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=36177,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=948120,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=95760,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=948120,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=100104,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=599,
+ ["unit"]=0
+ }
+ },
+ [5991]={
+ ["next_chapter"]=5992,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=145227,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=36307,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=957601,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=96718,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=957601,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=100104,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=599,
+ ["unit"]=0
+ }
+ },
+ [5992]={
+ ["next_chapter"]=5993,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=145749,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=36437,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=967177,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=97685,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=967177,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=100104,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=599,
+ ["unit"]=0
+ }
+ },
+ [5993]={
+ ["next_chapter"]=5994,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=146273,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=36568,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=976849,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=98662,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=976849,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=100104,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=599,
+ ["unit"]=0
+ }
+ },
+ [5994]={
+ ["next_chapter"]=5995,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=146799,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=36700,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=986618,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=99648,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=986618,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=100104,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=599,
+ ["unit"]=0
+ }
+ },
+ [5995]={
+ ["next_chapter"]=5996,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=147327,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=36832,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=996484,
+ ["unit"]=7
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=100645,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=996484,
+ ["unit"]=7
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=100104,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=599,
+ ["unit"]=0
+ }
+ },
+ [5996]={
+ ["next_chapter"]=5997,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=147857,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=36964,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1006,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=101651,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1006,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=100104,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=599,
+ ["unit"]=0
+ }
+ },
+ [5997]={
+ ["next_chapter"]=5998,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=148390,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=37097,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1017,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=102668,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1017,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=100104,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=599,
+ ["unit"]=0
+ }
+ },
+ [5998]={
+ ["next_chapter"]=5999,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=148924,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=37231,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1027,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=103694,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1027,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=100104,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=599,
+ ["unit"]=0
+ }
+ },
+ [5999]={
+ ["next_chapter"]=6000,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=149461,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=37365,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1037,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=104731,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1037,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=100104,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=599,
+ ["unit"]=0
+ }
+ },
+ [6000]={
+ ["next_chapter"]=6001,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=150000,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39000,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1047,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=105779,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1047,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=110578,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=600,
+ ["unit"]=0
+ }
+ },
+ [6001]={
+ ["next_chapter"]=6002,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150000,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39000,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1058,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=106837,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1058,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=110578,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=600,
+ ["unit"]=0
+ }
+ },
+ [6002]={
+ ["next_chapter"]=6003,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150000,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39000,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1068,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=107905,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1068,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=110578,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=600,
+ ["unit"]=0
+ }
+ },
+ [6003]={
+ ["next_chapter"]=6004,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150000,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39000,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1079,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=108984,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1079,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=110578,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=600,
+ ["unit"]=0
+ }
+ },
+ [6004]={
+ ["next_chapter"]=6005,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150000,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39000,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1090,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=110074,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1090,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=110578,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=600,
+ ["unit"]=0
+ }
+ },
+ [6005]={
+ ["next_chapter"]=6006,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150000,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39000,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1101,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=111175,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1101,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=110578,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=600,
+ ["unit"]=0
+ }
+ },
+ [6006]={
+ ["next_chapter"]=6007,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150000,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39000,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1112,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=112286,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1112,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=110578,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=600,
+ ["unit"]=0
+ }
+ },
+ [6007]={
+ ["next_chapter"]=6008,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150001,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39000,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1123,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=113409,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1123,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=110578,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=600,
+ ["unit"]=0
+ }
+ },
+ [6008]={
+ ["next_chapter"]=6009,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150001,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39000,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1134,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=114543,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1134,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=110578,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=600,
+ ["unit"]=0
+ }
+ },
+ [6009]={
+ ["next_chapter"]=6010,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150001,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39000,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1145,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=115689,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1145,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=110578,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=600,
+ ["unit"]=0
+ }
+ },
+ [6010]={
+ ["next_chapter"]=6011,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=150002,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39000,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1157,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=116846,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1157,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=122146,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=601,
+ ["unit"]=0
+ }
+ },
+ [6011]={
+ ["next_chapter"]=6012,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150002,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39001,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1168,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=118014,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1168,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=122146,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=601,
+ ["unit"]=0
+ }
+ },
+ [6012]={
+ ["next_chapter"]=6013,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150003,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39001,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1180,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=119194,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1180,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=122146,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=601,
+ ["unit"]=0
+ }
+ },
+ [6013]={
+ ["next_chapter"]=6014,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150004,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39001,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1192,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=120386,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1192,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=122146,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=601,
+ ["unit"]=0
+ }
+ },
+ [6014]={
+ ["next_chapter"]=6015,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150004,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39001,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1204,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=121590,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1204,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=122146,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=601,
+ ["unit"]=0
+ }
+ },
+ [6015]={
+ ["next_chapter"]=6016,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150005,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39001,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1216,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=122806,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1216,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=122146,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=601,
+ ["unit"]=0
+ }
+ },
+ [6016]={
+ ["next_chapter"]=6017,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150007,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39002,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1228,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=124034,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1228,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=122146,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=601,
+ ["unit"]=0
+ }
+ },
+ [6017]={
+ ["next_chapter"]=6018,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150008,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39002,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1240,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=125274,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1240,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=122146,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=601,
+ ["unit"]=0
+ }
+ },
+ [6018]={
+ ["next_chapter"]=6019,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150009,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39002,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1253,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=126527,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1253,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=122146,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=601,
+ ["unit"]=0
+ }
+ },
+ [6019]={
+ ["next_chapter"]=6020,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150011,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39003,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1265,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=127792,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1265,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=122146,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=601,
+ ["unit"]=0
+ }
+ },
+ [6020]={
+ ["next_chapter"]=6021,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=150013,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39003,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1278,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=129070,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1278,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=134926,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=602,
+ ["unit"]=0
+ }
+ },
+ [6021]={
+ ["next_chapter"]=6022,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150015,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39004,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1291,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=130361,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1291,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=134926,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=602,
+ ["unit"]=0
+ }
+ },
+ [6022]={
+ ["next_chapter"]=6023,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150017,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39004,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1304,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=131664,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1304,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=134926,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=602,
+ ["unit"]=0
+ }
+ },
+ [6023]={
+ ["next_chapter"]=6024,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150019,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39005,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1317,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=132981,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1317,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=134926,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=602,
+ ["unit"]=0
+ }
+ },
+ [6024]={
+ ["next_chapter"]=6025,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150022,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39006,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1330,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=134311,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1330,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=134926,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=602,
+ ["unit"]=0
+ }
+ },
+ [6025]={
+ ["next_chapter"]=6026,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150025,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39007,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1343,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=135654,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1343,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=134926,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=602,
+ ["unit"]=0
+ }
+ },
+ [6026]={
+ ["next_chapter"]=6027,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150028,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39007,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1357,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=137011,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1357,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=134926,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=602,
+ ["unit"]=0
+ }
+ },
+ [6027]={
+ ["next_chapter"]=6028,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150031,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39008,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1370,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=138381,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1370,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=134926,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=602,
+ ["unit"]=0
+ }
+ },
+ [6028]={
+ ["next_chapter"]=6029,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150035,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39009,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1384,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=139765,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1384,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=134926,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=602,
+ ["unit"]=0
+ }
+ },
+ [6029]={
+ ["next_chapter"]=6030,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150039,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39010,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1398,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=141162,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1398,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=134926,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=602,
+ ["unit"]=0
+ }
+ },
+ [6030]={
+ ["next_chapter"]=6031,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=150043,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39011,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1412,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=142574,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1412,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=149042,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=603,
+ ["unit"]=0
+ }
+ },
+ [6031]={
+ ["next_chapter"]=6032,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150048,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39012,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1426,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=144000,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1426,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=149042,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=603,
+ ["unit"]=0
+ }
+ },
+ [6032]={
+ ["next_chapter"]=6033,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150052,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39014,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1440,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=145440,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1440,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=149042,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=603,
+ ["unit"]=0
+ }
+ },
+ [6033]={
+ ["next_chapter"]=6034,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150057,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39015,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1454,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=146894,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1454,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=149042,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=603,
+ ["unit"]=0
+ }
+ },
+ [6034]={
+ ["next_chapter"]=6035,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150063,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39016,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1469,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=148363,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1469,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=149042,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=603,
+ ["unit"]=0
+ }
+ },
+ [6035]={
+ ["next_chapter"]=6036,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150069,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39018,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1484,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=149846,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1484,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=149042,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=603,
+ ["unit"]=0
+ }
+ },
+ [6036]={
+ ["next_chapter"]=6037,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150075,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39019,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1498,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=151345,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1498,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=149042,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=603,
+ ["unit"]=0
+ }
+ },
+ [6037]={
+ ["next_chapter"]=6038,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150081,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39021,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1513,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=152858,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1513,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=149042,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=603,
+ ["unit"]=0
+ }
+ },
+ [6038]={
+ ["next_chapter"]=6039,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150088,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39023,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1529,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=154387,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1529,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=149042,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=603,
+ ["unit"]=0
+ }
+ },
+ [6039]={
+ ["next_chapter"]=6040,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150095,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39025,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1544,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=155931,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1544,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=149042,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=603,
+ ["unit"]=0
+ }
+ },
+ [6040]={
+ ["next_chapter"]=6041,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=150102,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39027,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1559,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=157490,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1559,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=164635,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=604,
+ ["unit"]=0
+ }
+ },
+ [6041]={
+ ["next_chapter"]=6042,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150110,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39029,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1575,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=159065,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1575,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=164635,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=604,
+ ["unit"]=0
+ }
+ },
+ [6042]={
+ ["next_chapter"]=6043,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150119,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39031,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1591,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=160656,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1591,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=164635,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=604,
+ ["unit"]=0
+ }
+ },
+ [6043]={
+ ["next_chapter"]=6044,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150127,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39033,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1607,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=162262,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1607,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=164635,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=604,
+ ["unit"]=0
+ }
+ },
+ [6044]={
+ ["next_chapter"]=6045,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150136,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39035,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1623,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=163885,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1623,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=164635,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=604,
+ ["unit"]=0
+ }
+ },
+ [6045]={
+ ["next_chapter"]=6046,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150146,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39038,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1639,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=165524,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1639,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=164635,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=604,
+ ["unit"]=0
+ }
+ },
+ [6046]={
+ ["next_chapter"]=6047,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150156,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39040,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1655,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=167179,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1655,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=164635,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=604,
+ ["unit"]=0
+ }
+ },
+ [6047]={
+ ["next_chapter"]=6048,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150166,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39043,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1672,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=168851,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1672,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=164635,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=604,
+ ["unit"]=0
+ }
+ },
+ [6048]={
+ ["next_chapter"]=6049,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150177,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39046,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1689,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=170539,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1689,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=164635,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=604,
+ ["unit"]=0
+ }
+ },
+ [6049]={
+ ["next_chapter"]=6050,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150188,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39049,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1705,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=172245,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1705,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=164635,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=604,
+ ["unit"]=0
+ }
+ },
+ [6050]={
+ ["next_chapter"]=6051,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=150200,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39052,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1722,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=173967,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1722,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=181859,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=605,
+ ["unit"]=0
+ }
+ },
+ [6051]={
+ ["next_chapter"]=6052,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150212,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39055,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1740,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=175707,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1740,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=181859,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=605,
+ ["unit"]=0
+ }
+ },
+ [6052]={
+ ["next_chapter"]=6053,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150225,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39058,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1757,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=177464,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1757,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=181859,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=605,
+ ["unit"]=0
+ }
+ },
+ [6053]={
+ ["next_chapter"]=6054,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150238,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39062,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1775,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=179238,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1775,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=181859,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=605,
+ ["unit"]=0
+ }
+ },
+ [6054]={
+ ["next_chapter"]=6055,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150252,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39066,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1792,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=181031,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1792,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=181859,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=605,
+ ["unit"]=0
+ }
+ },
+ [6055]={
+ ["next_chapter"]=6056,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150266,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39069,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1810,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=182841,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1810,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=181859,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=605,
+ ["unit"]=0
+ }
+ },
+ [6056]={
+ ["next_chapter"]=6057,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150281,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39073,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1828,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=184670,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1828,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=181859,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=605,
+ ["unit"]=0
+ }
+ },
+ [6057]={
+ ["next_chapter"]=6058,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150296,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39077,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1847,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=186516,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1847,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=181859,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=605,
+ ["unit"]=0
+ }
+ },
+ [6058]={
+ ["next_chapter"]=6059,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150312,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39081,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1865,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=188381,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1865,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=181859,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=605,
+ ["unit"]=0
+ }
+ },
+ [6059]={
+ ["next_chapter"]=6060,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150329,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39085,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1884,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=190265,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1884,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=181859,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=605,
+ ["unit"]=0
+ }
+ },
+ [6060]={
+ ["next_chapter"]=6061,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=150346,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39090,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1903,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=192168,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1903,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=200886,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=606,
+ ["unit"]=0
+ }
+ },
+ [6061]={
+ ["next_chapter"]=6062,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150363,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39094,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1922,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=194090,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1922,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=200886,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=606,
+ ["unit"]=0
+ }
+ },
+ [6062]={
+ ["next_chapter"]=6063,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150381,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39099,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1941,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=196030,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1941,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=200886,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=606,
+ ["unit"]=0
+ }
+ },
+ [6063]={
+ ["next_chapter"]=6064,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150400,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39104,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1960,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=197991,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1960,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=200886,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=606,
+ ["unit"]=0
+ }
+ },
+ [6064]={
+ ["next_chapter"]=6065,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150419,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39109,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1980,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=199971,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=1980,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=200886,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=606,
+ ["unit"]=0
+ }
+ },
+ [6065]={
+ ["next_chapter"]=6066,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150439,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39114,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=201970,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=2000,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=200886,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=606,
+ ["unit"]=0
+ }
+ },
+ [6066]={
+ ["next_chapter"]=6067,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150460,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39120,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2020,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=203990,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=2020,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=200886,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=606,
+ ["unit"]=0
+ }
+ },
+ [6067]={
+ ["next_chapter"]=6068,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150481,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39125,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2040,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=206030,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=2040,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=200886,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=606,
+ ["unit"]=0
+ }
+ },
+ [6068]={
+ ["next_chapter"]=6069,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150503,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39131,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2060,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=208090,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=2060,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=200886,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=606,
+ ["unit"]=0
+ }
+ },
+ [6069]={
+ ["next_chapter"]=6070,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150526,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39137,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2081,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=210171,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=2081,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=200886,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=606,
+ ["unit"]=0
+ }
+ },
+ [6070]={
+ ["next_chapter"]=6071,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=150549,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39143,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2102,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=212273,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=2102,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=221903,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=607,
+ ["unit"]=0
+ }
+ },
+ [6071]={
+ ["next_chapter"]=6072,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150573,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39149,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2123,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=214396,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=2123,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=221903,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=607,
+ ["unit"]=0
+ }
+ },
+ [6072]={
+ ["next_chapter"]=6073,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150597,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39155,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2144,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=216540,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=2144,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=221903,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=607,
+ ["unit"]=0
+ }
+ },
+ [6073]={
+ ["next_chapter"]=6074,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150622,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39162,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2165,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=218705,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=2165,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=221903,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=607,
+ ["unit"]=0
+ }
+ },
+ [6074]={
+ ["next_chapter"]=6075,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150648,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39169,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2187,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=220892,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=2187,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=221903,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=607,
+ ["unit"]=0
+ }
+ },
+ [6075]={
+ ["next_chapter"]=6076,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150675,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39176,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2209,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=223101,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=2209,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=221903,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=607,
+ ["unit"]=0
+ }
+ },
+ [6076]={
+ ["next_chapter"]=6077,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150702,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39183,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2231,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=225332,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=2231,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=221903,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=607,
+ ["unit"]=0
+ }
+ },
+ [6077]={
+ ["next_chapter"]=6078,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150730,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39190,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2253,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=227585,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=2253,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=221903,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=607,
+ ["unit"]=0
+ }
+ },
+ [6078]={
+ ["next_chapter"]=6079,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150759,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39197,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2276,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=229861,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=2276,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=221903,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=607,
+ ["unit"]=0
+ }
+ },
+ [6079]={
+ ["next_chapter"]=6080,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150789,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39205,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2299,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=232160,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=2299,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=221903,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=607,
+ ["unit"]=0
+ }
+ },
+ [6080]={
+ ["next_chapter"]=6081,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=150819,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39213,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2322,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=234481,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=2322,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=245119,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=608,
+ ["unit"]=0
+ }
+ },
+ [6081]={
+ ["next_chapter"]=6082,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150850,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39221,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2345,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=236826,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=2345,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=245119,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=608,
+ ["unit"]=0
+ }
+ },
+ [6082]={
+ ["next_chapter"]=6083,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150882,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39229,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2368,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=239194,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=2368,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=245119,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=608,
+ ["unit"]=0
+ }
+ },
+ [6083]={
+ ["next_chapter"]=6084,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150915,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39238,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2392,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=241586,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=2392,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=245119,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=608,
+ ["unit"]=0
+ }
+ },
+ [6084]={
+ ["next_chapter"]=6085,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150948,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39247,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2416,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=244002,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=2416,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=245119,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=608,
+ ["unit"]=0
+ }
+ },
+ [6085]={
+ ["next_chapter"]=6086,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150983,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39255,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2440,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=246442,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=2440,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=245119,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=608,
+ ["unit"]=0
+ }
+ },
+ [6086]={
+ ["next_chapter"]=6087,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=151018,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39265,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2464,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=248907,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=2464,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=245119,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=608,
+ ["unit"]=0
+ }
+ },
+ [6087]={
+ ["next_chapter"]=6088,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=151054,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39274,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2489,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=251396,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=2489,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=245119,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=608,
+ ["unit"]=0
+ }
+ },
+ [6088]={
+ ["next_chapter"]=6089,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=151090,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39283,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2514,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=253910,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=2514,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=245119,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=608,
+ ["unit"]=0
+ }
+ },
+ [6089]={
+ ["next_chapter"]=6090,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=151128,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39293,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2539,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=256449,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=2539,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=245119,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=608,
+ ["unit"]=0
+ }
+ },
+ [6090]={
+ ["next_chapter"]=6091,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=151166,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39303,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2564,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=259013,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=2564,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=270764,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=609,
+ ["unit"]=0
+ }
+ },
+ [6091]={
+ ["next_chapter"]=6092,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=151206,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39313,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2590,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=261603,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=2590,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=270764,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=609,
+ ["unit"]=0
+ }
+ },
+ [6092]={
+ ["next_chapter"]=6093,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=151246,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39324,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2616,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=264219,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=2616,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=270764,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=609,
+ ["unit"]=0
+ }
+ },
+ [6093]={
+ ["next_chapter"]=6094,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=151287,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39335,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2642,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=266862,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=2642,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=270764,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=609,
+ ["unit"]=0
+ }
+ },
+ [6094]={
+ ["next_chapter"]=6095,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=151329,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39346,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2669,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=269530,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=2669,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=270764,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=609,
+ ["unit"]=0
+ }
+ },
+ [6095]={
+ ["next_chapter"]=6096,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=151372,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39357,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2695,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=272226,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=2695,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=270764,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=609,
+ ["unit"]=0
+ }
+ },
+ [6096]={
+ ["next_chapter"]=6097,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=151416,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39368,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2722,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=274948,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=2722,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=270764,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=609,
+ ["unit"]=0
+ }
+ },
+ [6097]={
+ ["next_chapter"]=6098,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=151460,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39380,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2749,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=277697,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=2749,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=270764,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=609,
+ ["unit"]=0
+ }
+ },
+ [6098]={
+ ["next_chapter"]=6099,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=151506,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39392,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2777,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=280474,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=2777,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=270764,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=609,
+ ["unit"]=0
+ }
+ },
+ [6099]={
+ ["next_chapter"]=6100,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=151552,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39404,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2805,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=283279,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=2805,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=270764,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=609,
+ ["unit"]=0
+ }
+ },
+ [6100]={
+ ["next_chapter"]=6101,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=151600,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39416,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2833,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=286112,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=2833,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=53,
+ ["grasp_gold_reward"]={
+ ["value"]=299092,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=610,
+ ["unit"]=0
+ }
+ },
+ [6101]={
+ ["next_chapter"]=6102,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=151648,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39429,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2861,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=288973,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=2861,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=299092,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=610,
+ ["unit"]=0
+ }
+ },
+ [6102]={
+ ["next_chapter"]=6103,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=151698,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39441,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2890,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=291863,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=2890,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=299092,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=610,
+ ["unit"]=0
+ }
+ },
+ [6103]={
+ ["next_chapter"]=6104,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=151748,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39455,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2919,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=294781,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=2919,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=299092,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=610,
+ ["unit"]=0
+ }
+ },
+ [6104]={
+ ["next_chapter"]=6105,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=151800,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39468,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2948,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=297729,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=2948,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=299092,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=610,
+ ["unit"]=0
+ }
+ },
+ [6105]={
+ ["next_chapter"]=6106,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=151852,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39482,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2977,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=300706,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=2977,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=299092,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=610,
+ ["unit"]=0
+ }
+ },
+ [6106]={
+ ["next_chapter"]=6107,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=151906,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39495,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3007,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=303713,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=3007,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=299092,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=610,
+ ["unit"]=0
+ }
+ },
+ [6107]={
+ ["next_chapter"]=6108,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=151960,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39510,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3037,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=306751,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=3037,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=299092,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=610,
+ ["unit"]=0
+ }
+ },
+ [6108]={
+ ["next_chapter"]=6109,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=152016,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39524,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3068,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=309818,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=3068,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=299092,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=610,
+ ["unit"]=0
+ }
+ },
+ [6109]={
+ ["next_chapter"]=6110,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=152072,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39539,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3098,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=312916,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=3098,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=299092,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=610,
+ ["unit"]=0
+ }
+ },
+ [6110]={
+ ["next_chapter"]=6111,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=152130,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39554,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3129,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=316045,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=3129,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=330384,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=611,
+ ["unit"]=0
+ }
+ },
+ [6111]={
+ ["next_chapter"]=6112,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=152188,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39569,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3160,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=319206,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=3160,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=330384,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=611,
+ ["unit"]=0
+ }
+ },
+ [6112]={
+ ["next_chapter"]=6113,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=152248,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39584,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3192,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=322398,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=3192,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=330384,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=611,
+ ["unit"]=0
+ }
+ },
+ [6113]={
+ ["next_chapter"]=6114,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=152309,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39600,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3224,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=325622,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=3224,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=330384,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=611,
+ ["unit"]=0
+ }
+ },
+ [6114]={
+ ["next_chapter"]=6115,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=152370,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39616,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3256,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=328878,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=3256,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=330384,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=611,
+ ["unit"]=0
+ }
+ },
+ [6115]={
+ ["next_chapter"]=6116,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=152433,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39633,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3289,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=332167,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=3289,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=330384,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=611,
+ ["unit"]=0
+ }
+ },
+ [6116]={
+ ["next_chapter"]=6117,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=152497,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39649,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3322,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=335489,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=3322,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=330384,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=611,
+ ["unit"]=0
+ }
+ },
+ [6117]={
+ ["next_chapter"]=6118,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=152563,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39666,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3355,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=338844,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=3355,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=330384,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=611,
+ ["unit"]=0
+ }
+ },
+ [6118]={
+ ["next_chapter"]=6119,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=152629,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39684,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3388,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=342232,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=3388,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=330384,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=611,
+ ["unit"]=0
+ }
+ },
+ [6119]={
+ ["next_chapter"]=6120,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=152696,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39701,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3422,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=345654,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=3422,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=330384,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=611,
+ ["unit"]=0
+ }
+ },
+ [6120]={
+ ["next_chapter"]=6121,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=152765,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39719,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3457,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=349111,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=3457,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=364949,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=612,
+ ["unit"]=0
+ }
+ },
+ [6121]={
+ ["next_chapter"]=6122,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=152834,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39737,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3491,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=352602,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=3491,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=364949,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=612,
+ ["unit"]=0
+ }
+ },
+ [6122]={
+ ["next_chapter"]=6123,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=152905,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39755,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3526,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=356128,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=3526,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=364949,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=612,
+ ["unit"]=0
+ }
+ },
+ [6123]={
+ ["next_chapter"]=6124,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=152977,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39774,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3561,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=359689,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=3561,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=364949,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=612,
+ ["unit"]=0
+ }
+ },
+ [6124]={
+ ["next_chapter"]=6125,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=153051,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39793,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3597,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=363286,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=3597,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=364949,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=612,
+ ["unit"]=0
+ }
+ },
+ [6125]={
+ ["next_chapter"]=6126,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=153125,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39813,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3633,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=366919,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=3633,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=364949,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=612,
+ ["unit"]=0
+ }
+ },
+ [6126]={
+ ["next_chapter"]=6127,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=153201,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39832,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3669,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=370588,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=3669,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=364949,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=612,
+ ["unit"]=0
+ }
+ },
+ [6127]={
+ ["next_chapter"]=6128,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=153277,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39852,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3706,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=374294,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=3706,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=364949,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=612,
+ ["unit"]=0
+ }
+ },
+ [6128]={
+ ["next_chapter"]=6129,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=153355,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39872,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3743,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=378037,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=3743,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=364949,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=612,
+ ["unit"]=0
+ }
+ },
+ [6129]={
+ ["next_chapter"]=6130,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=153435,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39893,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3780,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=381817,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=3780,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=364949,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=612,
+ ["unit"]=0
+ }
+ },
+ [6130]={
+ ["next_chapter"]=6131,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=153515,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39914,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3818,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=385636,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=3818,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=403131,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=613,
+ ["unit"]=0
+ }
+ },
+ [6131]={
+ ["next_chapter"]=6132,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=153597,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39935,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3856,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=389492,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=3856,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=403131,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=613,
+ ["unit"]=0
+ }
+ },
+ [6132]={
+ ["next_chapter"]=6133,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=153680,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39957,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3895,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=393387,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=3895,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=403131,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=613,
+ ["unit"]=0
+ }
+ },
+ [6133]={
+ ["next_chapter"]=6134,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=153764,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=39979,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3934,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=397321,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=3934,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=403131,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=613,
+ ["unit"]=0
+ }
+ },
+ [6134]={
+ ["next_chapter"]=6135,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=153850,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=40001,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3973,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=401294,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=3973,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=403131,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=613,
+ ["unit"]=0
+ }
+ },
+ [6135]={
+ ["next_chapter"]=6136,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=153937,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=40024,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4013,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=405307,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=4013,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=403131,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=613,
+ ["unit"]=0
+ }
+ },
+ [6136]={
+ ["next_chapter"]=6137,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=154025,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=40046,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4053,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=409360,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=4053,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=403131,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=613,
+ ["unit"]=0
+ }
+ },
+ [6137]={
+ ["next_chapter"]=6138,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=154114,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=40070,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4094,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=413453,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=4094,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=403131,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=613,
+ ["unit"]=0
+ }
+ },
+ [6138]={
+ ["next_chapter"]=6139,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=154205,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=40093,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4135,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=417588,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=4135,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=403131,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=613,
+ ["unit"]=0
+ }
+ },
+ [6139]={
+ ["next_chapter"]=6140,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=154297,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=40117,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4176,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=421764,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=4176,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=403131,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=613,
+ ["unit"]=0
+ }
+ },
+ [6140]={
+ ["next_chapter"]=6141,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=154390,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=40142,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4218,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=425982,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=4218,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=445307,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=614,
+ ["unit"]=0
+ }
+ },
+ [6141]={
+ ["next_chapter"]=6142,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=154485,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=40166,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4260,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=430241,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=4260,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=445307,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=614,
+ ["unit"]=0
+ }
+ },
+ [6142]={
+ ["next_chapter"]=6143,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=154581,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=40191,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4302,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=434544,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=4302,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=445307,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=614,
+ ["unit"]=0
+ }
+ },
+ [6143]={
+ ["next_chapter"]=6144,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=154679,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=40216,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4345,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=438889,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=4345,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=445307,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=614,
+ ["unit"]=0
+ }
+ },
+ [6144]={
+ ["next_chapter"]=6145,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=154778,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=40242,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4389,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=443278,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=4389,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=445307,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=614,
+ ["unit"]=0
+ }
+ },
+ [6145]={
+ ["next_chapter"]=6146,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=154878,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=40268,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4433,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=447711,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=4433,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=445307,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=614,
+ ["unit"]=0
+ }
+ },
+ [6146]={
+ ["next_chapter"]=6147,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=154979,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=40295,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4477,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=452188,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=4477,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=445307,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=614,
+ ["unit"]=0
+ }
+ },
+ [6147]={
+ ["next_chapter"]=6148,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=155082,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=40321,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4522,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=456710,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=4522,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=445307,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=614,
+ ["unit"]=0
+ }
+ },
+ [6148]={
+ ["next_chapter"]=6149,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=155187,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=40349,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4567,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=461277,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=4567,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=445307,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=614,
+ ["unit"]=0
+ }
+ },
+ [6149]={
+ ["next_chapter"]=6150,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=155293,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=40376,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4613,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=465890,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=4613,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=445307,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=614,
+ ["unit"]=0
+ }
+ },
+ [6150]={
+ ["next_chapter"]=6151,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=155400,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=40404,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4659,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=470549,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=4659,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=491896,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=615,
+ ["unit"]=0
+ }
+ },
+ [6151]={
+ ["next_chapter"]=6152,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=155509,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=40432,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4705,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=475254,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=4705,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=491896,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=615,
+ ["unit"]=0
+ }
+ },
+ [6152]={
+ ["next_chapter"]=6153,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=155619,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=40461,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4753,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=480007,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=4753,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=491896,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=615,
+ ["unit"]=0
+ }
+ },
+ [6153]={
+ ["next_chapter"]=6154,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=155731,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=40490,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4800,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=484807,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=4800,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=491896,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=615,
+ ["unit"]=0
+ }
+ },
+ [6154]={
+ ["next_chapter"]=6155,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=155844,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=40519,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4848,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=489655,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=4848,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=491896,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=615,
+ ["unit"]=0
+ }
+ },
+ [6155]={
+ ["next_chapter"]=6156,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=155958,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=40549,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4897,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=494551,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=4897,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=491896,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=615,
+ ["unit"]=0
+ }
+ },
+ [6156]={
+ ["next_chapter"]=6157,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=156074,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=40579,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4946,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=499497,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=4946,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=491896,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=615,
+ ["unit"]=0
+ }
+ },
+ [6157]={
+ ["next_chapter"]=6158,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=156192,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=40610,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4995,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=504492,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=4995,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=491896,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=615,
+ ["unit"]=0
+ }
+ },
+ [6158]={
+ ["next_chapter"]=6159,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=156311,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=40641,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5045,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=509537,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=5045,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=491896,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=615,
+ ["unit"]=0
+ }
+ },
+ [6159]={
+ ["next_chapter"]=6160,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=156431,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=40672,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5095,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=514632,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=5095,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=491896,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=615,
+ ["unit"]=0
+ }
+ },
+ [6160]={
+ ["next_chapter"]=6161,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=156554,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=40704,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5146,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=519778,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=5146,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=543359,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=616,
+ ["unit"]=0
+ }
+ },
+ [6161]={
+ ["next_chapter"]=6162,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=156677,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=40736,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5198,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=524976,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=5198,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=543359,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=616,
+ ["unit"]=0
+ }
+ },
+ [6162]={
+ ["next_chapter"]=6163,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=156802,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=40769,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5250,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=530226,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=5250,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=543359,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=616,
+ ["unit"]=0
+ }
+ },
+ [6163]={
+ ["next_chapter"]=6164,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=156929,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=40802,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5302,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=535528,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=5302,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=543359,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=616,
+ ["unit"]=0
+ }
+ },
+ [6164]={
+ ["next_chapter"]=6165,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=157058,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=40835,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5355,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=540884,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=5355,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=543359,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=616,
+ ["unit"]=0
+ }
+ },
+ [6165]={
+ ["next_chapter"]=6166,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=157187,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=40869,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5409,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=546292,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=5409,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=543359,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=616,
+ ["unit"]=0
+ }
+ },
+ [6166]={
+ ["next_chapter"]=6167,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=157319,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=40903,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5463,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=551755,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=5463,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=543359,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=616,
+ ["unit"]=0
+ }
+ },
+ [6167]={
+ ["next_chapter"]=6168,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=157452,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=40938,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5518,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=557273,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=5518,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=543359,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=616,
+ ["unit"]=0
+ }
+ },
+ [6168]={
+ ["next_chapter"]=6169,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=157587,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=40973,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5573,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=562846,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=5573,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=543359,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=616,
+ ["unit"]=0
+ }
+ },
+ [6169]={
+ ["next_chapter"]=6170,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=157723,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=41008,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5628,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=568474,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=5628,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=543359,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=616,
+ ["unit"]=0
+ }
+ },
+ [6170]={
+ ["next_chapter"]=6171,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=157861,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=41044,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5685,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=574159,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=5685,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=600207,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=617,
+ ["unit"]=0
+ }
+ },
+ [6171]={
+ ["next_chapter"]=6172,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=158000,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=41080,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5742,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=579900,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=5742,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=600207,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=617,
+ ["unit"]=0
+ }
+ },
+ [6172]={
+ ["next_chapter"]=6173,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=158142,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=41117,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5799,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=585699,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=5799,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=600207,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=617,
+ ["unit"]=0
+ }
+ },
+ [6173]={
+ ["next_chapter"]=6174,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=158284,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=41154,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5857,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=591556,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=5857,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=600207,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=617,
+ ["unit"]=0
+ }
+ },
+ [6174]={
+ ["next_chapter"]=6175,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=158429,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=41191,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5916,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=597472,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=5916,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=600207,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=617,
+ ["unit"]=0
+ }
+ },
+ [6175]={
+ ["next_chapter"]=6176,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=158575,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=41230,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5975,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=603447,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=5975,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=600207,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=617,
+ ["unit"]=0
+ }
+ },
+ [6176]={
+ ["next_chapter"]=6177,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=158723,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=41268,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6034,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=609481,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=6034,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=600207,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=617,
+ ["unit"]=0
+ }
+ },
+ [6177]={
+ ["next_chapter"]=6178,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=158872,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=41307,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6095,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=615576,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=6095,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=600207,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=617,
+ ["unit"]=0
+ }
+ },
+ [6178]={
+ ["next_chapter"]=6179,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=159024,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=41346,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6156,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=621732,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=6156,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=600207,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=617,
+ ["unit"]=0
+ }
+ },
+ [6179]={
+ ["next_chapter"]=6180,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=159177,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=41386,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6217,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=627949,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=6217,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=600207,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=617,
+ ["unit"]=0
+ }
+ },
+ [6180]={
+ ["next_chapter"]=6181,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=159331,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=41426,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6279,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=634228,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=6279,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=663002,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=618,
+ ["unit"]=0
+ }
+ },
+ [6181]={
+ ["next_chapter"]=6182,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=159488,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=41467,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6342,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=640571,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=6342,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=663002,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=618,
+ ["unit"]=0
+ }
+ },
+ [6182]={
+ ["next_chapter"]=6183,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=159646,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=41508,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6406,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=646976,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=6406,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=663002,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=618,
+ ["unit"]=0
+ }
+ },
+ [6183]={
+ ["next_chapter"]=6184,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=159806,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=41549,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6470,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=653446,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=6470,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=663002,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=618,
+ ["unit"]=0
+ }
+ },
+ [6184]={
+ ["next_chapter"]=6185,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=159967,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=41591,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6534,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=659981,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=6534,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=663002,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=618,
+ ["unit"]=0
+ }
+ },
+ [6185]={
+ ["next_chapter"]=6186,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=160131,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=41634,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6600,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=666580,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=6600,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=663002,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=618,
+ ["unit"]=0
+ }
+ },
+ [6186]={
+ ["next_chapter"]=6187,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=160296,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=41677,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6666,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=673246,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=6666,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=663002,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=618,
+ ["unit"]=0
+ }
+ },
+ [6187]={
+ ["next_chapter"]=6188,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=160463,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=41720,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6732,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=679979,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=6732,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=663002,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=618,
+ ["unit"]=0
+ }
+ },
+ [6188]={
+ ["next_chapter"]=6189,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=160631,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=41764,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6800,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=686779,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=6800,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=663002,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=618,
+ ["unit"]=0
+ }
+ },
+ [6189]={
+ ["next_chapter"]=6190,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=160802,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=41809,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6868,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=693646,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=6868,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=663002,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=618,
+ ["unit"]=0
+ }
+ },
+ [6190]={
+ ["next_chapter"]=6191,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=160974,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=41853,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6936,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=700583,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=6936,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=732366,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=619,
+ ["unit"]=0
+ }
+ },
+ [6191]={
+ ["next_chapter"]=6192,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=161149,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=41899,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7006,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=707589,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=7006,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=732366,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=619,
+ ["unit"]=0
+ }
+ },
+ [6192]={
+ ["next_chapter"]=6193,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=161325,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=41944,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7076,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=714665,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=7076,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=732366,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=619,
+ ["unit"]=0
+ }
+ },
+ [6193]={
+ ["next_chapter"]=6194,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=161502,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=41991,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7147,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=721811,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=7147,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=732366,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=619,
+ ["unit"]=0
+ }
+ },
+ [6194]={
+ ["next_chapter"]=6195,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=161682,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=42037,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7218,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=729029,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=7218,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=732366,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=619,
+ ["unit"]=0
+ }
+ },
+ [6195]={
+ ["next_chapter"]=6196,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=161864,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=42085,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7290,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=736320,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=7290,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=732366,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=619,
+ ["unit"]=0
+ }
+ },
+ [6196]={
+ ["next_chapter"]=6197,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=162047,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=42132,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7363,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=743683,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=7363,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=732366,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=619,
+ ["unit"]=0
+ }
+ },
+ [6197]={
+ ["next_chapter"]=6198,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=162233,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=42180,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7437,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=751120,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=7437,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=732366,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=619,
+ ["unit"]=0
+ }
+ },
+ [6198]={
+ ["next_chapter"]=6199,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=162420,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=42229,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7511,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=758631,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=7511,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=732366,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=619,
+ ["unit"]=0
+ }
+ },
+ [6199]={
+ ["next_chapter"]=6200,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=162609,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=42278,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7586,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=766217,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=7586,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=732366,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=619,
+ ["unit"]=0
+ }
+ },
+ [6200]={
+ ["next_chapter"]=6201,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=162800,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=42328,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7662,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=773879,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=7662,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=808988,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=620,
+ ["unit"]=0
+ }
+ },
+ [6201]={
+ ["next_chapter"]=6202,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=162993,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=42378,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7739,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=781618,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=7739,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=808988,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=620,
+ ["unit"]=0
+ }
+ },
+ [6202]={
+ ["next_chapter"]=6203,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=163188,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=42429,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7816,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=789434,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=7816,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=808988,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=620,
+ ["unit"]=0
+ }
+ },
+ [6203]={
+ ["next_chapter"]=6204,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=163385,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=42480,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7894,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=797329,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=7894,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=808988,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=620,
+ ["unit"]=0
+ }
+ },
+ [6204]={
+ ["next_chapter"]=6205,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=163583,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=42532,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7973,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=805302,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=7973,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=808988,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=620,
+ ["unit"]=0
+ }
+ },
+ [6205]={
+ ["next_chapter"]=6206,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=163784,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=42584,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8053,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=813355,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=8053,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=808988,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=620,
+ ["unit"]=0
+ }
+ },
+ [6206]={
+ ["next_chapter"]=6207,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=163987,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=42637,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8134,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=821488,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=8134,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=808988,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=620,
+ ["unit"]=0
+ }
+ },
+ [6207]={
+ ["next_chapter"]=6208,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=164192,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=42690,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8215,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=829703,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=8215,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=808988,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=620,
+ ["unit"]=0
+ }
+ },
+ [6208]={
+ ["next_chapter"]=6209,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=164398,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=42744,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8297,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=838000,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=8297,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=808988,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=620,
+ ["unit"]=0
+ }
+ },
+ [6209]={
+ ["next_chapter"]=6210,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=164607,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=42798,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8380,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=846380,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=8380,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=808988,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=620,
+ ["unit"]=0
+ }
+ },
+ [6210]={
+ ["next_chapter"]=6211,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=164818,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=42853,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8464,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=854844,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=8464,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=893626,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=621,
+ ["unit"]=0
+ }
+ },
+ [6211]={
+ ["next_chapter"]=6212,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=165030,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=42908,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8548,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=863393,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=8548,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=893626,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=621,
+ ["unit"]=0
+ }
+ },
+ [6212]={
+ ["next_chapter"]=6213,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=165245,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=42964,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8634,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=872027,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=8634,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=893626,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=621,
+ ["unit"]=0
+ }
+ },
+ [6213]={
+ ["next_chapter"]=6214,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=165462,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=43020,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8720,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=880747,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=8720,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=893626,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=621,
+ ["unit"]=0
+ }
+ },
+ [6214]={
+ ["next_chapter"]=6215,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=165681,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=43077,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8807,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=889554,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=8807,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=893626,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=621,
+ ["unit"]=0
+ }
+ },
+ [6215]={
+ ["next_chapter"]=6216,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=165901,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=43134,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8896,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=898450,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=8896,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=893626,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=621,
+ ["unit"]=0
+ }
+ },
+ [6216]={
+ ["next_chapter"]=6217,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=166124,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=43192,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8984,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=907434,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=8984,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=893626,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=621,
+ ["unit"]=0
+ }
+ },
+ [6217]={
+ ["next_chapter"]=6218,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=166349,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=43251,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=9074,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=916509,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=9074,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=893626,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=621,
+ ["unit"]=0
+ }
+ },
+ [6218]={
+ ["next_chapter"]=6219,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=166576,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=43310,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=9165,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=925674,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=9165,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=893626,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=621,
+ ["unit"]=0
+ }
+ },
+ [6219]={
+ ["next_chapter"]=6220,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=166806,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=43369,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=9257,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=934930,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=9257,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=893626,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=621,
+ ["unit"]=0
+ }
+ },
+ [6220]={
+ ["next_chapter"]=6221,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=167037,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=43430,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=9349,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=944280,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=9349,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=987119,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=622,
+ ["unit"]=0
+ }
+ },
+ [6221]={
+ ["next_chapter"]=6222,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=167270,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=43490,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=9443,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=953723,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=9443,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=987119,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=622,
+ ["unit"]=0
+ }
+ },
+ [6222]={
+ ["next_chapter"]=6223,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=167506,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=43551,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=9537,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=963260,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=9537,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=987119,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=622,
+ ["unit"]=0
+ }
+ },
+ [6223]={
+ ["next_chapter"]=6224,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=167743,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=43613,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=9633,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=972892,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=9633,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=987119,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=622,
+ ["unit"]=0
+ }
+ },
+ [6224]={
+ ["next_chapter"]=6225,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=167983,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=43676,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=9729,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=982621,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=9729,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=987119,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=622,
+ ["unit"]=0
+ }
+ },
+ [6225]={
+ ["next_chapter"]=6226,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=168225,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=43739,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=9826,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=992448,
+ ["unit"]=8
+ },
+ ["idle_gold"]={
+ ["value"]=9826,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=987119,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=622,
+ ["unit"]=0
+ }
+ },
+ [6226]={
+ ["next_chapter"]=6227,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=168469,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=43802,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=9924,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1002,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=9924,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=987119,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=622,
+ ["unit"]=0
+ }
+ },
+ [6227]={
+ ["next_chapter"]=6228,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=168715,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=43866,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=10024,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1012,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=10024,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=987119,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=622,
+ ["unit"]=0
+ }
+ },
+ [6228]={
+ ["next_chapter"]=6229,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=168964,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=43931,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=10124,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1023,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=10124,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=987119,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=622,
+ ["unit"]=0
+ }
+ },
+ [6229]={
+ ["next_chapter"]=6230,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=169214,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=43996,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=10225,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1033,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=10225,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=987119,
+ ["unit"]=8
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=622,
+ ["unit"]=0
+ }
+ },
+ [6230]={
+ ["next_chapter"]=6231,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=169467,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=44061,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=10327,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1043,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=10327,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1090,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=623,
+ ["unit"]=0
+ }
+ },
+ [6231]={
+ ["next_chapter"]=6232,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=169722,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=44128,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=10431,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1054,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=10431,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1090,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=623,
+ ["unit"]=0
+ }
+ },
+ [6232]={
+ ["next_chapter"]=6233,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=169979,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=44195,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=10535,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1064,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=10535,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1090,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=623,
+ ["unit"]=0
+ }
+ },
+ [6233]={
+ ["next_chapter"]=6234,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=170239,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=44262,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=10640,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1075,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=10640,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1090,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=623,
+ ["unit"]=0
+ }
+ },
+ [6234]={
+ ["next_chapter"]=6235,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=170501,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=44330,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=10747,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1085,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=10747,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1090,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=623,
+ ["unit"]=0
+ }
+ },
+ [6235]={
+ ["next_chapter"]=6236,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=170765,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=44399,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=10854,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1096,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=10854,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1090,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=623,
+ ["unit"]=0
+ }
+ },
+ [6236]={
+ ["next_chapter"]=6237,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=171031,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=44468,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=10963,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1107,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=10963,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1090,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=623,
+ ["unit"]=0
+ }
+ },
+ [6237]={
+ ["next_chapter"]=6238,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=171299,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=44538,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=11072,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1118,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=11072,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1090,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=623,
+ ["unit"]=0
+ }
+ },
+ [6238]={
+ ["next_chapter"]=6239,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=171570,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=44608,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=11183,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1129,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=11183,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1090,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=623,
+ ["unit"]=0
+ }
+ },
+ [6239]={
+ ["next_chapter"]=6240,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=171843,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=44679,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=11295,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1141,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=11295,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1090,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=623,
+ ["unit"]=0
+ }
+ },
+ [6240]={
+ ["next_chapter"]=6241,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=172118,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=44751,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=11408,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1152,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=11408,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1204,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=624,
+ ["unit"]=0
+ }
+ },
+ [6241]={
+ ["next_chapter"]=6242,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=172396,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=44823,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=11522,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1164,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=11522,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1204,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=624,
+ ["unit"]=0
+ }
+ },
+ [6242]={
+ ["next_chapter"]=6243,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=172676,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=44896,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=11637,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1175,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=11637,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1204,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=624,
+ ["unit"]=0
+ }
+ },
+ [6243]={
+ ["next_chapter"]=6244,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=172958,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=44969,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=11754,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1187,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=11754,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1204,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=624,
+ ["unit"]=0
+ }
+ },
+ [6244]={
+ ["next_chapter"]=6245,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=173243,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=45043,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=11871,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1199,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=11871,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1204,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=624,
+ ["unit"]=0
+ }
+ },
+ [6245]={
+ ["next_chapter"]=6246,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=173530,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=45118,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=11990,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1211,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=11990,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1204,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=624,
+ ["unit"]=0
+ }
+ },
+ [6246]={
+ ["next_chapter"]=6247,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=173819,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=45193,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=12110,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1223,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=12110,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1204,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=624,
+ ["unit"]=0
+ }
+ },
+ [6247]={
+ ["next_chapter"]=6248,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=174111,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=45269,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=12231,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1235,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=12231,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1204,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=624,
+ ["unit"]=0
+ }
+ },
+ [6248]={
+ ["next_chapter"]=6249,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=174405,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=45345,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=12353,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1248,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=12353,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1204,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=624,
+ ["unit"]=0
+ }
+ },
+ [6249]={
+ ["next_chapter"]=6250,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=174701,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=45422,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=12477,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1260,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=12477,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1204,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=624,
+ ["unit"]=0
+ }
+ },
+ [6250]={
+ ["next_chapter"]=6251,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=175000,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=45500,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=12601,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1273,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=12601,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1330,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=625,
+ ["unit"]=0
+ }
+ },
+ [6251]={
+ ["next_chapter"]=6252,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=175301,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=45578,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=12727,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1285,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=12727,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1330,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=625,
+ ["unit"]=0
+ }
+ },
+ [6252]={
+ ["next_chapter"]=6253,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=175605,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=45657,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=12855,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1298,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=12855,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1330,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=625,
+ ["unit"]=0
+ }
+ },
+ [6253]={
+ ["next_chapter"]=6254,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=175911,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=45737,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=12983,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1311,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=12983,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1330,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=625,
+ ["unit"]=0
+ }
+ },
+ [6254]={
+ ["next_chapter"]=6255,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=176219,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=45817,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=13113,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1324,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=13113,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1330,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=625,
+ ["unit"]=0
+ }
+ },
+ [6255]={
+ ["next_chapter"]=6256,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=176530,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=45898,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=13244,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1338,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=13244,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1330,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=625,
+ ["unit"]=0
+ }
+ },
+ [6256]={
+ ["next_chapter"]=6257,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=176844,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=45979,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=13377,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1351,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=13377,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1330,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=625,
+ ["unit"]=0
+ }
+ },
+ [6257]={
+ ["next_chapter"]=6258,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=177159,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=46061,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=13510,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1365,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=13510,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1330,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=625,
+ ["unit"]=0
+ }
+ },
+ [6258]={
+ ["next_chapter"]=6259,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=177478,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=46144,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=13646,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1378,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=13646,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1330,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=625,
+ ["unit"]=0
+ }
+ },
+ [6259]={
+ ["next_chapter"]=6260,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=177798,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=46228,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=13782,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1392,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=13782,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1330,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=625,
+ ["unit"]=0
+ }
+ },
+ [6260]={
+ ["next_chapter"]=6261,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=178122,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=46312,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=13920,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1406,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=13920,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1470,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=626,
+ ["unit"]=0
+ }
+ },
+ [6261]={
+ ["next_chapter"]=6262,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=178447,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=46396,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=14059,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1420,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=14059,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1470,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=626,
+ ["unit"]=0
+ }
+ },
+ [6262]={
+ ["next_chapter"]=6263,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=178776,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=46482,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=14200,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1434,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=14200,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1470,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=626,
+ ["unit"]=0
+ }
+ },
+ [6263]={
+ ["next_chapter"]=6264,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=179106,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=46568,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=14342,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1449,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=14342,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1470,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=626,
+ ["unit"]=0
+ }
+ },
+ [6264]={
+ ["next_chapter"]=6265,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=179440,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=46654,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=14485,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1463,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=14485,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1470,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=626,
+ ["unit"]=0
+ }
+ },
+ [6265]={
+ ["next_chapter"]=6266,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=179775,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=46742,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=14630,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1478,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=14630,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1470,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=626,
+ ["unit"]=0
+ }
+ },
+ [6266]={
+ ["next_chapter"]=6267,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=180114,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=46830,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=14776,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1492,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=14776,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1470,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=626,
+ ["unit"]=0
+ }
+ },
+ [6267]={
+ ["next_chapter"]=6268,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=180455,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=46918,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=14924,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1507,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=14924,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1470,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=626,
+ ["unit"]=0
+ }
+ },
+ [6268]={
+ ["next_chapter"]=6269,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=180798,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=47008,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=15073,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1522,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=15073,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1470,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=626,
+ ["unit"]=0
+ }
+ },
+ [6269]={
+ ["next_chapter"]=6270,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=181144,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=47097,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=15224,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1538,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=15224,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1470,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=626,
+ ["unit"]=0
+ }
+ },
+ [6270]={
+ ["next_chapter"]=6271,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=181493,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=47188,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=15376,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1553,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=15376,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1623,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=627,
+ ["unit"]=0
+ }
+ },
+ [6271]={
+ ["next_chapter"]=6272,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=181844,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=47279,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=15530,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1569,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=15530,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1623,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=627,
+ ["unit"]=0
+ }
+ },
+ [6272]={
+ ["next_chapter"]=6273,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=182198,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=47371,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=15685,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1584,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=15685,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1623,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=627,
+ ["unit"]=0
+ }
+ },
+ [6273]={
+ ["next_chapter"]=6274,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=182554,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=47464,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=15842,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1600,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=15842,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1623,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=627,
+ ["unit"]=0
+ }
+ },
+ [6274]={
+ ["next_chapter"]=6275,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=182913,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=47557,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=16000,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1616,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=16000,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1623,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=627,
+ ["unit"]=0
+ }
+ },
+ [6275]={
+ ["next_chapter"]=6276,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=183275,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=47652,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=16161,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1632,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=16161,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1623,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=627,
+ ["unit"]=0
+ }
+ },
+ [6276]={
+ ["next_chapter"]=6277,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=183639,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=47746,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=16322,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1649,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=16322,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1623,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=627,
+ ["unit"]=0
+ }
+ },
+ [6277]={
+ ["next_chapter"]=6278,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=184006,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=47842,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=16485,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1665,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=16485,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1623,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=627,
+ ["unit"]=0
+ }
+ },
+ [6278]={
+ ["next_chapter"]=6279,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=184376,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=47938,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=16650,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1682,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=16650,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1623,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=627,
+ ["unit"]=0
+ }
+ },
+ [6279]={
+ ["next_chapter"]=6280,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=184748,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=48035,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=16817,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1698,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=16817,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1623,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=627,
+ ["unit"]=0
+ }
+ },
+ [6280]={
+ ["next_chapter"]=6281,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=185123,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=48132,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=16985,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1715,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=16985,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1793,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=628,
+ ["unit"]=0
+ }
+ },
+ [6281]={
+ ["next_chapter"]=6282,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=185501,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=48230,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=17155,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1733,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=17155,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1793,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=628,
+ ["unit"]=0
+ }
+ },
+ [6282]={
+ ["next_chapter"]=6283,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=185881,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=48329,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=17326,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1750,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=17326,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1793,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=628,
+ ["unit"]=0
+ }
+ },
+ [6283]={
+ ["next_chapter"]=6284,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=186264,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=48429,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=17500,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1767,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=17500,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1793,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=628,
+ ["unit"]=0
+ }
+ },
+ [6284]={
+ ["next_chapter"]=6285,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=186650,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=48529,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=17675,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1785,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=17675,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1793,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=628,
+ ["unit"]=0
+ }
+ },
+ [6285]={
+ ["next_chapter"]=6286,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=187039,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=48630,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=17851,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1803,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=17851,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1793,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=628,
+ ["unit"]=0
+ }
+ },
+ [6286]={
+ ["next_chapter"]=6287,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=187430,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=48732,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=18030,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1821,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=18030,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1793,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=628,
+ ["unit"]=0
+ }
+ },
+ [6287]={
+ ["next_chapter"]=6288,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=187824,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=48834,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=18210,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1839,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=18210,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1793,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=628,
+ ["unit"]=0
+ }
+ },
+ [6288]={
+ ["next_chapter"]=6289,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=188221,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=48937,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=18392,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1858,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=18392,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1793,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=628,
+ ["unit"]=0
+ }
+ },
+ [6289]={
+ ["next_chapter"]=6290,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=188620,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=49041,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=18576,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1876,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=18576,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1793,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=628,
+ ["unit"]=0
+ }
+ },
+ [6290]={
+ ["next_chapter"]=6291,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=189022,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=49146,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=18762,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1895,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=18762,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1981,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=629,
+ ["unit"]=0
+ }
+ },
+ [6291]={
+ ["next_chapter"]=6292,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=189427,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=49251,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=18949,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1914,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=18949,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1981,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=629,
+ ["unit"]=0
+ }
+ },
+ [6292]={
+ ["next_chapter"]=6293,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=189835,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=49357,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=19139,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1933,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=19139,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1981,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=629,
+ ["unit"]=0
+ }
+ },
+ [6293]={
+ ["next_chapter"]=6294,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=190246,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=49464,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=19330,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1952,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=19330,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1981,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=629,
+ ["unit"]=0
+ }
+ },
+ [6294]={
+ ["next_chapter"]=6295,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=190659,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=49571,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=19524,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1972,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=19524,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1981,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=629,
+ ["unit"]=0
+ }
+ },
+ [6295]={
+ ["next_chapter"]=6296,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=191076,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=49680,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=19719,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1992,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=19719,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1981,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=629,
+ ["unit"]=0
+ }
+ },
+ [6296]={
+ ["next_chapter"]=6297,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=191495,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=49789,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=19916,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2012,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=19916,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1981,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=629,
+ ["unit"]=0
+ }
+ },
+ [6297]={
+ ["next_chapter"]=6298,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=191917,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=49898,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=20115,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2032,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=20115,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1981,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=629,
+ ["unit"]=0
+ }
+ },
+ [6298]={
+ ["next_chapter"]=6299,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=192342,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=50009,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=20316,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2052,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=20316,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1981,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=629,
+ ["unit"]=0
+ }
+ },
+ [6299]={
+ ["next_chapter"]=6300,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=192769,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=50120,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=20520,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2072,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=20520,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1981,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=629,
+ ["unit"]=0
+ }
+ },
+ [6300]={
+ ["next_chapter"]=6301,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=193200,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=50232,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=20725,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2093,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=20725,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2188,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=630,
+ ["unit"]=0
+ }
+ },
+ [6301]={
+ ["next_chapter"]=6302,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=193633,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=50345,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=20932,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2114,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=20932,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2188,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=630,
+ ["unit"]=0
+ }
+ },
+ [6302]={
+ ["next_chapter"]=6303,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=194070,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=50458,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=21141,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2135,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=21141,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2188,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=630,
+ ["unit"]=0
+ }
+ },
+ [6303]={
+ ["next_chapter"]=6304,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=194509,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=50572,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=21353,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2157,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=21353,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2188,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=630,
+ ["unit"]=0
+ }
+ },
+ [6304]={
+ ["next_chapter"]=6305,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=194951,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=50687,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=21566,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2178,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=21566,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2188,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=630,
+ ["unit"]=0
+ }
+ },
+ [6305]={
+ ["next_chapter"]=6306,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=195396,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=50803,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=21782,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2200,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=21782,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2188,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=630,
+ ["unit"]=0
+ }
+ },
+ [6306]={
+ ["next_chapter"]=6307,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=195844,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=50919,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=22000,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2222,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=22000,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2188,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=630,
+ ["unit"]=0
+ }
+ },
+ [6307]={
+ ["next_chapter"]=6308,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=196295,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=51037,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=22220,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2244,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=22220,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2188,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=630,
+ ["unit"]=0
+ }
+ },
+ [6308]={
+ ["next_chapter"]=6309,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=196749,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=51155,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=22442,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2267,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=22442,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2188,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=630,
+ ["unit"]=0
+ }
+ },
+ [6309]={
+ ["next_chapter"]=6310,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=197206,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=51274,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=22666,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2289,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=22666,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2188,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=630,
+ ["unit"]=0
+ }
+ },
+ [6310]={
+ ["next_chapter"]=6311,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=197666,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=51393,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=22893,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2312,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=22893,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2417,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=631,
+ ["unit"]=0
+ }
+ },
+ [6311]={
+ ["next_chapter"]=6312,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=198128,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=51513,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=23122,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2335,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=23122,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2417,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=631,
+ ["unit"]=0
+ }
+ },
+ [6312]={
+ ["next_chapter"]=6313,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=198594,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=51634,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=23353,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2359,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=23353,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2417,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=631,
+ ["unit"]=0
+ }
+ },
+ [6313]={
+ ["next_chapter"]=6314,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=199063,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=51756,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=23587,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2382,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=23587,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2417,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=631,
+ ["unit"]=0
+ }
+ },
+ [6314]={
+ ["next_chapter"]=6315,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=199535,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=51879,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=23823,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2406,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=23823,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2417,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=631,
+ ["unit"]=0
+ }
+ },
+ [6315]={
+ ["next_chapter"]=6316,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=200009,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=52002,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=24061,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2430,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=24061,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2417,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=631,
+ ["unit"]=0
+ }
+ },
+ [6316]={
+ ["next_chapter"]=6317,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=200487,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=52127,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=24301,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2454,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=24301,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2417,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=631,
+ ["unit"]=0
+ }
+ },
+ [6317]={
+ ["next_chapter"]=6318,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=200968,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=52252,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=24544,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2479,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=24544,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2417,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=631,
+ ["unit"]=0
+ }
+ },
+ [6318]={
+ ["next_chapter"]=6319,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=201452,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=52377,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=24790,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2504,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=24790,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2417,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=631,
+ ["unit"]=0
+ }
+ },
+ [6319]={
+ ["next_chapter"]=6320,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=201939,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=52504,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=25038,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2529,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=25038,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2417,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=631,
+ ["unit"]=0
+ }
+ },
+ [6320]={
+ ["next_chapter"]=6321,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=202429,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=52631,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=25288,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2554,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=25288,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2670,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=632,
+ ["unit"]=0
+ }
+ },
+ [6321]={
+ ["next_chapter"]=6322,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=202922,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=52760,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=25541,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2580,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=25541,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2670,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=632,
+ ["unit"]=0
+ }
+ },
+ [6322]={
+ ["next_chapter"]=6323,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=203418,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=52889,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=25796,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2605,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=25796,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2670,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=632,
+ ["unit"]=0
+ }
+ },
+ [6323]={
+ ["next_chapter"]=6324,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=203917,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=53018,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=26054,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2631,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=26054,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2670,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=632,
+ ["unit"]=0
+ }
+ },
+ [6324]={
+ ["next_chapter"]=6325,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=204420,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=53149,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=26315,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2658,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=26315,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2670,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=632,
+ ["unit"]=0
+ }
+ },
+ [6325]={
+ ["next_chapter"]=6326,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=204925,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=53281,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=26578,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2684,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=26578,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2670,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=632,
+ ["unit"]=0
+ }
+ },
+ [6326]={
+ ["next_chapter"]=6327,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=205434,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=53413,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=26844,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2711,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=26844,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2670,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=632,
+ ["unit"]=0
+ }
+ },
+ [6327]={
+ ["next_chapter"]=6328,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=205945,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=53546,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=27112,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2738,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=27112,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2670,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=632,
+ ["unit"]=0
+ }
+ },
+ [6328]={
+ ["next_chapter"]=6329,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=206460,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=53680,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=27383,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2766,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=27383,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2670,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=632,
+ ["unit"]=0
+ }
+ },
+ [6329]={
+ ["next_chapter"]=6330,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=206978,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=53814,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=27657,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2793,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=27657,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2670,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=632,
+ ["unit"]=0
+ }
+ },
+ [6330]={
+ ["next_chapter"]=6331,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=207499,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=53950,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=27934,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2821,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=27934,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2949,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=633,
+ ["unit"]=0
+ }
+ },
+ [6331]={
+ ["next_chapter"]=6332,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=208024,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=54086,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=28213,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2850,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=28213,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2949,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=633,
+ ["unit"]=0
+ }
+ },
+ [6332]={
+ ["next_chapter"]=6333,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=208551,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=54223,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=28495,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2878,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=28495,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2949,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=633,
+ ["unit"]=0
+ }
+ },
+ [6333]={
+ ["next_chapter"]=6334,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=209082,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=54361,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=28780,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2907,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=28780,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2949,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=633,
+ ["unit"]=0
+ }
+ },
+ [6334]={
+ ["next_chapter"]=6335,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=209616,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=54500,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=29068,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2936,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=29068,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2949,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=633,
+ ["unit"]=0
+ }
+ },
+ [6335]={
+ ["next_chapter"]=6336,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=210153,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=54640,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=29359,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2965,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=29359,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2949,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=633,
+ ["unit"]=0
+ }
+ },
+ [6336]={
+ ["next_chapter"]=6337,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=210693,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=54780,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=29652,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2995,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=29652,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2949,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=633,
+ ["unit"]=0
+ }
+ },
+ [6337]={
+ ["next_chapter"]=6338,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=211236,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=54921,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=29949,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3025,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=29949,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2949,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=633,
+ ["unit"]=0
+ }
+ },
+ [6338]={
+ ["next_chapter"]=6339,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=211783,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=55064,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=30248,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3055,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=30248,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2949,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=633,
+ ["unit"]=0
+ }
+ },
+ [6339]={
+ ["next_chapter"]=6340,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=212333,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=55207,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=30551,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3086,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=30551,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2949,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=633,
+ ["unit"]=0
+ }
+ },
+ [6340]={
+ ["next_chapter"]=6341,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=212886,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=55350,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=30856,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3116,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=30856,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3258,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=634,
+ ["unit"]=0
+ }
+ },
+ [6341]={
+ ["next_chapter"]=6342,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=213443,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=55495,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=31165,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3148,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=31165,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3258,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=634,
+ ["unit"]=0
+ }
+ },
+ [6342]={
+ ["next_chapter"]=6343,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=214003,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=55641,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=31477,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3179,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=31477,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3258,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=634,
+ ["unit"]=0
+ }
+ },
+ [6343]={
+ ["next_chapter"]=6344,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=214566,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=55787,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=31791,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3211,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=31791,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3258,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=634,
+ ["unit"]=0
+ }
+ },
+ [6344]={
+ ["next_chapter"]=6345,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=215132,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=55934,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=32109,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3243,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=32109,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3258,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=634,
+ ["unit"]=0
+ }
+ },
+ [6345]={
+ ["next_chapter"]=6346,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=215702,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=56082,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=32430,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3275,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=32430,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3258,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=634,
+ ["unit"]=0
+ }
+ },
+ [6346]={
+ ["next_chapter"]=6347,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=216275,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=56231,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=32755,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3308,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=32755,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3258,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=634,
+ ["unit"]=0
+ }
+ },
+ [6347]={
+ ["next_chapter"]=6348,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=216851,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=56381,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=33082,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3341,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=33082,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3258,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=634,
+ ["unit"]=0
+ }
+ },
+ [6348]={
+ ["next_chapter"]=6349,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=217431,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=56532,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=33413,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3375,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=33413,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3258,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=634,
+ ["unit"]=0
+ }
+ },
+ [6349]={
+ ["next_chapter"]=6350,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=218014,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=56684,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=33747,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3408,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=33747,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3258,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=634,
+ ["unit"]=0
+ }
+ },
+ [6350]={
+ ["next_chapter"]=6351,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=218600,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=56836,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=34085,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3443,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=34085,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3599,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=635,
+ ["unit"]=0
+ }
+ },
+ [6351]={
+ ["next_chapter"]=6352,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=219190,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=56989,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=34425,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3477,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=34425,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3599,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=635,
+ ["unit"]=0
+ }
+ },
+ [6352]={
+ ["next_chapter"]=6353,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=219783,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=57144,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=34770,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3512,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=34770,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3599,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=635,
+ ["unit"]=0
+ }
+ },
+ [6353]={
+ ["next_chapter"]=6354,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=220379,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=57299,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=35117,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3547,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=35117,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3599,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=635,
+ ["unit"]=0
+ }
+ },
+ [6354]={
+ ["next_chapter"]=6355,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=220979,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=57455,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=35469,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3582,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=35469,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3599,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=635,
+ ["unit"]=0
+ }
+ },
+ [6355]={
+ ["next_chapter"]=6356,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=221582,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=57611,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=35823,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3618,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=35823,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3599,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=635,
+ ["unit"]=0
+ }
+ },
+ [6356]={
+ ["next_chapter"]=6357,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=222189,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=57769,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=36181,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3654,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=36181,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3599,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=635,
+ ["unit"]=0
+ }
+ },
+ [6357]={
+ ["next_chapter"]=6358,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=222799,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=57928,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=36543,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3691,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=36543,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3599,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=635,
+ ["unit"]=0
+ }
+ },
+ [6358]={
+ ["next_chapter"]=6359,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=223412,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=58087,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=36909,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3728,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=36909,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3599,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=635,
+ ["unit"]=0
+ }
+ },
+ [6359]={
+ ["next_chapter"]=6360,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=224029,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=58248,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=37278,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3765,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=37278,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3599,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=635,
+ ["unit"]=0
+ }
+ },
+ [6360]={
+ ["next_chapter"]=6361,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=224650,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=58409,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=37651,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3803,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=37651,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3975,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=636,
+ ["unit"]=0
+ }
+ },
+ [6361]={
+ ["next_chapter"]=6362,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=225273,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=58571,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=38027,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3841,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=38027,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3975,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=636,
+ ["unit"]=0
+ }
+ },
+ [6362]={
+ ["next_chapter"]=6363,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=225901,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=58734,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=38407,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3879,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=38407,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3975,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=636,
+ ["unit"]=0
+ }
+ },
+ [6363]={
+ ["next_chapter"]=6364,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=226531,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=58898,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=38791,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3918,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=38791,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3975,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=636,
+ ["unit"]=0
+ }
+ },
+ [6364]={
+ ["next_chapter"]=6365,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=227166,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=59063,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=39179,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3957,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=39179,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3975,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=636,
+ ["unit"]=0
+ }
+ },
+ [6365]={
+ ["next_chapter"]=6366,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=227803,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=59229,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=39571,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3997,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=39571,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3975,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=636,
+ ["unit"]=0
+ }
+ },
+ [6366]={
+ ["next_chapter"]=6367,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=228445,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=59396,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=39967,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4037,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=39967,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3975,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=636,
+ ["unit"]=0
+ }
+ },
+ [6367]={
+ ["next_chapter"]=6368,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=229089,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=59563,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=40367,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4077,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=40367,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3975,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=636,
+ ["unit"]=0
+ }
+ },
+ [6368]={
+ ["next_chapter"]=6369,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=229738,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=59732,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=40770,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4118,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=40770,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3975,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=636,
+ ["unit"]=0
+ }
+ },
+ [6369]={
+ ["next_chapter"]=6370,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=230389,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=59901,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=41178,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4159,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=41178,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3975,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=636,
+ ["unit"]=0
+ }
+ },
+ [6370]={
+ ["next_chapter"]=6371,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=231045,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=60072,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=41590,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4201,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=41590,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=4391,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=637,
+ ["unit"]=0
+ }
+ },
+ [6371]={
+ ["next_chapter"]=6372,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=231704,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=60243,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=42006,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4243,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=42006,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=4391,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=637,
+ ["unit"]=0
+ }
+ },
+ [6372]={
+ ["next_chapter"]=6373,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=232366,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=60415,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=42426,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4285,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=42426,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=4391,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=637,
+ ["unit"]=0
+ }
+ },
+ [6373]={
+ ["next_chapter"]=6374,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=233032,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=60588,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=42850,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4328,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=42850,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=4391,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=637,
+ ["unit"]=0
+ }
+ },
+ [6374]={
+ ["next_chapter"]=6375,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=233702,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=60762,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=43278,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4371,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=43278,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=4391,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=637,
+ ["unit"]=0
+ }
+ },
+ [6375]={
+ ["next_chapter"]=6376,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=234375,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=60938,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=43711,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4415,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=43711,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=4391,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=637,
+ ["unit"]=0
+ }
+ },
+ [6376]={
+ ["next_chapter"]=6377,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=235052,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=61113,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=44148,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4459,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=44148,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=4391,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=637,
+ ["unit"]=0
+ }
+ },
+ [6377]={
+ ["next_chapter"]=6378,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=235732,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=61290,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=44590,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4504,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=44590,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=4391,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=637,
+ ["unit"]=0
+ }
+ },
+ [6378]={
+ ["next_chapter"]=6379,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=236416,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=61468,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=45036,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4549,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=45036,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=4391,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=637,
+ ["unit"]=0
+ }
+ },
+ [6379]={
+ ["next_chapter"]=6380,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=237104,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=61647,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=45486,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4594,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=45486,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=4391,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=637,
+ ["unit"]=0
+ }
+ },
+ [6380]={
+ ["next_chapter"]=6381,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=237795,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=61827,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=45941,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4640,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=45941,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=4851,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=638,
+ ["unit"]=0
+ }
+ },
+ [6381]={
+ ["next_chapter"]=6382,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=238490,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=62007,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=46400,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4686,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=46400,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=4851,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=638,
+ ["unit"]=0
+ }
+ },
+ [6382]={
+ ["next_chapter"]=6383,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=239189,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=62189,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=46864,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4733,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=46864,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=4851,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=638,
+ ["unit"]=0
+ }
+ },
+ [6383]={
+ ["next_chapter"]=6384,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=239891,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=62372,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=47333,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4781,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=47333,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=4851,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=638,
+ ["unit"]=0
+ }
+ },
+ [6384]={
+ ["next_chapter"]=6385,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=240597,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=62555,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=47806,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4828,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=47806,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=4851,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=638,
+ ["unit"]=0
+ }
+ },
+ [6385]={
+ ["next_chapter"]=6386,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=241307,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=62740,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=48284,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4877,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=48284,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=4851,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=638,
+ ["unit"]=0
+ }
+ },
+ [6386]={
+ ["next_chapter"]=6387,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=242020,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=62925,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=48767,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4925,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=48767,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=4851,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=638,
+ ["unit"]=0
+ }
+ },
+ [6387]={
+ ["next_chapter"]=6388,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=242737,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=63112,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=49255,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4975,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=49255,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=4851,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=638,
+ ["unit"]=0
+ }
+ },
+ [6388]={
+ ["next_chapter"]=6389,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=243458,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=63299,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=49747,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5024,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=49747,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=4851,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=638,
+ ["unit"]=0
+ }
+ },
+ [6389]={
+ ["next_chapter"]=6390,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=244182,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=63487,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=50245,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5075,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=50245,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=4851,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=638,
+ ["unit"]=0
+ }
+ },
+ [6390]={
+ ["next_chapter"]=6391,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=244910,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=63677,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=50747,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5125,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=50747,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=5358,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=639,
+ ["unit"]=0
+ }
+ },
+ [6391]={
+ ["next_chapter"]=6392,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=245642,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=63867,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=51255,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5177,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=51255,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=5358,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=639,
+ ["unit"]=0
+ }
+ },
+ [6392]={
+ ["next_chapter"]=6393,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=246378,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=64058,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=51767,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5228,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=51767,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=5358,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=639,
+ ["unit"]=0
+ }
+ },
+ [6393]={
+ ["next_chapter"]=6394,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=247118,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=64251,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=52285,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5281,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=52285,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=5358,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=639,
+ ["unit"]=0
+ }
+ },
+ [6394]={
+ ["next_chapter"]=6395,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=247861,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=64444,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=52808,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5334,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=52808,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=5358,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=639,
+ ["unit"]=0
+ }
+ },
+ [6395]={
+ ["next_chapter"]=6396,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=248608,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=64638,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=53336,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5387,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=53336,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=5358,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=639,
+ ["unit"]=0
+ }
+ },
+ [6396]={
+ ["next_chapter"]=6397,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=249359,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=64833,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=53869,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5441,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=53869,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=5358,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=639,
+ ["unit"]=0
+ }
+ },
+ [6397]={
+ ["next_chapter"]=6398,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=250113,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=65029,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=54408,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5495,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=54408,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=5358,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=639,
+ ["unit"]=0
+ }
+ },
+ [6398]={
+ ["next_chapter"]=6399,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=250872,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=65227,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=54952,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5550,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=54952,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=5358,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=639,
+ ["unit"]=0
+ }
+ },
+ [6399]={
+ ["next_chapter"]=6400,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=251634,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=65425,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=55502,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5606,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=55502,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=5358,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=639,
+ ["unit"]=0
+ }
+ },
+ [6400]={
+ ["next_chapter"]=6401,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=252400,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=65624,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=56057,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5662,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=56057,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=5919,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=640,
+ ["unit"]=0
+ }
+ },
+ [6401]={
+ ["next_chapter"]=6402,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=253170,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=65824,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=56617,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5718,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=56617,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=5919,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=640,
+ ["unit"]=0
+ }
+ },
+ [6402]={
+ ["next_chapter"]=6403,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=253944,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=66025,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=57183,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5776,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=57183,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=5919,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=640,
+ ["unit"]=0
+ }
+ },
+ [6403]={
+ ["next_chapter"]=6404,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=254721,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=66228,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=57755,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5833,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=57755,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=5919,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=640,
+ ["unit"]=0
+ }
+ },
+ [6404]={
+ ["next_chapter"]=6405,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=255503,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=66431,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=58333,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5892,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=58333,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=5919,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=640,
+ ["unit"]=0
+ }
+ },
+ [6405]={
+ ["next_chapter"]=6406,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=256288,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=66635,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=58916,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5951,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=58916,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=5919,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=640,
+ ["unit"]=0
+ }
+ },
+ [6406]={
+ ["next_chapter"]=6407,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=257077,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=66840,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=59505,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6010,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=59505,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=5919,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=640,
+ ["unit"]=0
+ }
+ },
+ [6407]={
+ ["next_chapter"]=6408,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=257871,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=67046,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=60100,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6070,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=60100,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=5919,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=640,
+ ["unit"]=0
+ }
+ },
+ [6408]={
+ ["next_chapter"]=6409,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=258668,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=67254,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=60701,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6131,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=60701,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=5919,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=640,
+ ["unit"]=0
+ }
+ },
+ [6409]={
+ ["next_chapter"]=6410,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=259469,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=67462,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=61308,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6192,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=61308,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=5919,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=640,
+ ["unit"]=0
+ }
+ },
+ [6410]={
+ ["next_chapter"]=6411,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=260274,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=67671,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=61921,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6254,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=61921,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=6538,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=641,
+ ["unit"]=0
+ }
+ },
+ [6411]={
+ ["next_chapter"]=6412,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=261082,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=67881,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=62541,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6317,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=62541,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=6538,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=641,
+ ["unit"]=0
+ }
+ },
+ [6412]={
+ ["next_chapter"]=6413,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=261895,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=68093,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=63166,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6380,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=63166,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=6538,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=641,
+ ["unit"]=0
+ }
+ },
+ [6413]={
+ ["next_chapter"]=6414,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=262712,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=68305,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=63798,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6444,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=63798,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=6538,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=641,
+ ["unit"]=0
+ }
+ },
+ [6414]={
+ ["next_chapter"]=6415,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=263533,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=68519,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=64436,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6508,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=64436,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=6538,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=641,
+ ["unit"]=0
+ }
+ },
+ [6415]={
+ ["next_chapter"]=6416,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=264357,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=68733,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=65080,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6573,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=65080,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=6538,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=641,
+ ["unit"]=0
+ }
+ },
+ [6416]={
+ ["next_chapter"]=6417,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=265186,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=68948,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=65731,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6639,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=65731,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=6538,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=641,
+ ["unit"]=0
+ }
+ },
+ [6417]={
+ ["next_chapter"]=6418,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=266019,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=69165,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=66388,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6705,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=66388,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=6538,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=641,
+ ["unit"]=0
+ }
+ },
+ [6418]={
+ ["next_chapter"]=6419,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=266855,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=69382,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=67052,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6772,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=67052,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=6538,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=641,
+ ["unit"]=0
+ }
+ },
+ [6419]={
+ ["next_chapter"]=6420,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=267696,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=69601,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=67722,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6840,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=67722,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=6538,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=641,
+ ["unit"]=0
+ }
+ },
+ [6420]={
+ ["next_chapter"]=6421,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=268541,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=69821,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=68400,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6908,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=68400,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=7222,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=642,
+ ["unit"]=0
+ }
+ },
+ [6421]={
+ ["next_chapter"]=6422,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=269390,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=70041,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=69084,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6977,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=69084,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=7222,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=642,
+ ["unit"]=0
+ }
+ },
+ [6422]={
+ ["next_chapter"]=6423,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=270242,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=70263,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=69775,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7047,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=69775,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=7222,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=642,
+ ["unit"]=0
+ }
+ },
+ [6423]={
+ ["next_chapter"]=6424,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=271099,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=70486,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=70472,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7118,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=70472,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=7222,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=642,
+ ["unit"]=0
+ }
+ },
+ [6424]={
+ ["next_chapter"]=6425,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=271960,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=70710,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=71177,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7189,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=71177,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=7222,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=642,
+ ["unit"]=0
+ }
+ },
+ [6425]={
+ ["next_chapter"]=6426,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=272825,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=70935,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=71889,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7261,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=71889,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=7222,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=642,
+ ["unit"]=0
+ }
+ },
+ [6426]={
+ ["next_chapter"]=6427,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=273694,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=71160,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=72608,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7333,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=72608,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=7222,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=642,
+ ["unit"]=0
+ }
+ },
+ [6427]={
+ ["next_chapter"]=6428,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=274567,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=71387,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=73334,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7407,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=73334,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=7222,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=642,
+ ["unit"]=0
+ }
+ },
+ [6428]={
+ ["next_chapter"]=6429,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=275444,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=71616,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=74067,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7481,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=74067,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=7222,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=642,
+ ["unit"]=0
+ }
+ },
+ [6429]={
+ ["next_chapter"]=6430,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=276326,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=71845,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=74808,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7556,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=74808,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=7222,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=642,
+ ["unit"]=0
+ }
+ },
+ [6430]={
+ ["next_chapter"]=6431,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=277211,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=72075,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=75556,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7631,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=75556,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=7977,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=643,
+ ["unit"]=0
+ }
+ },
+ [6431]={
+ ["next_chapter"]=6432,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=278101,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=72306,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=76311,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7707,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=76311,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=7977,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=643,
+ ["unit"]=0
+ }
+ },
+ [6432]={
+ ["next_chapter"]=6433,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=278995,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=72539,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=77074,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7785,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=77074,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=7977,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=643,
+ ["unit"]=0
+ }
+ },
+ [6433]={
+ ["next_chapter"]=6434,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=279892,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=72772,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=77845,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7862,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=77845,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=7977,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=643,
+ ["unit"]=0
+ }
+ },
+ [6434]={
+ ["next_chapter"]=6435,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=280794,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=73007,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=78624,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7941,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=78624,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=7977,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=643,
+ ["unit"]=0
+ }
+ },
+ [6435]={
+ ["next_chapter"]=6436,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=281701,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=73242,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=79410,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8020,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=79410,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=7977,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=643,
+ ["unit"]=0
+ }
+ },
+ [6436]={
+ ["next_chapter"]=6437,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=282611,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=73479,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=80204,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8101,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=80204,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=7977,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=643,
+ ["unit"]=0
+ }
+ },
+ [6437]={
+ ["next_chapter"]=6438,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=283526,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=73717,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=81006,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8182,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=81006,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=7977,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=643,
+ ["unit"]=0
+ }
+ },
+ [6438]={
+ ["next_chapter"]=6439,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=284444,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=73956,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=81816,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8263,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=81816,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=7977,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=643,
+ ["unit"]=0
+ }
+ },
+ [6439]={
+ ["next_chapter"]=6440,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=285367,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=74195,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=82634,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8346,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=82634,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=7977,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=643,
+ ["unit"]=0
+ }
+ },
+ [6440]={
+ ["next_chapter"]=6441,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=286294,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=74437,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=83461,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8430,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=83461,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=8812,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=644,
+ ["unit"]=0
+ }
+ },
+ [6441]={
+ ["next_chapter"]=6442,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=287226,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=74679,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=84295,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8514,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=84295,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=8812,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=644,
+ ["unit"]=0
+ }
+ },
+ [6442]={
+ ["next_chapter"]=6443,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=288161,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=74922,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=85138,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8599,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=85138,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=8812,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=644,
+ ["unit"]=0
+ }
+ },
+ [6443]={
+ ["next_chapter"]=6444,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=289101,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=75166,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=85990,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8685,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=85990,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=8812,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=644,
+ ["unit"]=0
+ }
+ },
+ [6444]={
+ ["next_chapter"]=6445,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=290045,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=75412,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=86849,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8772,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=86849,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=8812,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=644,
+ ["unit"]=0
+ }
+ },
+ [6445]={
+ ["next_chapter"]=6446,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=290994,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=75658,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=87718,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8860,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=87718,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=8812,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=644,
+ ["unit"]=0
+ }
+ },
+ [6446]={
+ ["next_chapter"]=6447,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=291946,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=75906,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=88595,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8948,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=88595,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=8812,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=644,
+ ["unit"]=0
+ }
+ },
+ [6447]={
+ ["next_chapter"]=6448,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=292903,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=76155,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=89481,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9038,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=89481,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=8812,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=644,
+ ["unit"]=0
+ }
+ },
+ [6448]={
+ ["next_chapter"]=6449,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=293865,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=76405,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=90376,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9128,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=90376,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=8812,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=644,
+ ["unit"]=0
+ }
+ },
+ [6449]={
+ ["next_chapter"]=6450,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=294830,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=76656,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=91280,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9219,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=91280,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=8812,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=644,
+ ["unit"]=0
+ }
+ },
+ [6450]={
+ ["next_chapter"]=6451,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=295800,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=76908,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=92192,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9311,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=92192,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=9734,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=645,
+ ["unit"]=0
+ }
+ },
+ [6451]={
+ ["next_chapter"]=6452,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=296774,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=77161,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=93114,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9405,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=93114,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=9734,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=645,
+ ["unit"]=0
+ }
+ },
+ [6452]={
+ ["next_chapter"]=6453,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=297753,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=77416,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=94046,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9499,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=94046,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=9734,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=645,
+ ["unit"]=0
+ }
+ },
+ [6453]={
+ ["next_chapter"]=6454,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=298735,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=77671,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=94986,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9594,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=94986,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=9734,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=645,
+ ["unit"]=0
+ }
+ },
+ [6454]={
+ ["next_chapter"]=6455,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=299723,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=77928,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=95936,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9690,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=95936,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=9734,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=645,
+ ["unit"]=0
+ }
+ },
+ [6455]={
+ ["next_chapter"]=6456,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=300714,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=78186,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=96895,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9786,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=96895,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=9734,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=645,
+ ["unit"]=0
+ }
+ },
+ [6456]={
+ ["next_chapter"]=6457,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=301710,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=78445,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=97864,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9884,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=97864,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=9734,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=645,
+ ["unit"]=0
+ }
+ },
+ [6457]={
+ ["next_chapter"]=6458,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=302710,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=78705,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=98843,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9983,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=98843,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=9734,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=645,
+ ["unit"]=0
+ }
+ },
+ [6458]={
+ ["next_chapter"]=6459,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=303715,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=78966,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=99831,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10083,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=99831,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=9734,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=645,
+ ["unit"]=0
+ }
+ },
+ [6459]={
+ ["next_chapter"]=6460,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=304724,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=79228,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=100830,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10184,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=100830,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=9734,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=645,
+ ["unit"]=0
+ }
+ },
+ [6460]={
+ ["next_chapter"]=6461,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=305738,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=79492,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=101838,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10286,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=101838,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=10752,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=646,
+ ["unit"]=0
+ }
+ },
+ [6461]={
+ ["next_chapter"]=6462,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=306755,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=79756,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=102856,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10388,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=102856,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=10752,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=646,
+ ["unit"]=0
+ }
+ },
+ [6462]={
+ ["next_chapter"]=6463,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=307778,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=80022,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=103885,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10492,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=103885,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=10752,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=646,
+ ["unit"]=0
+ }
+ },
+ [6463]={
+ ["next_chapter"]=6464,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=308805,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=80289,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=104924,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10597,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=104924,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=10752,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=646,
+ ["unit"]=0
+ }
+ },
+ [6464]={
+ ["next_chapter"]=6465,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=309836,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=80557,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=105973,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10703,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=105973,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=10752,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=646,
+ ["unit"]=0
+ }
+ },
+ [6465]={
+ ["next_chapter"]=6466,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=310871,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=80827,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=107033,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10810,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=107033,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=10752,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=646,
+ ["unit"]=0
+ }
+ },
+ [6466]={
+ ["next_chapter"]=6467,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=311912,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=81097,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=108103,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10918,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=108103,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=10752,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=646,
+ ["unit"]=0
+ }
+ },
+ [6467]={
+ ["next_chapter"]=6468,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=312956,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=81369,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=109184,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11028,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=109184,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=10752,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=646,
+ ["unit"]=0
+ }
+ },
+ [6468]={
+ ["next_chapter"]=6469,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=314005,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=81641,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=110276,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11138,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=110276,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=10752,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=646,
+ ["unit"]=0
+ }
+ },
+ [6469]={
+ ["next_chapter"]=6470,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=315059,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=81915,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=111379,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11249,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=111379,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=10752,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=646,
+ ["unit"]=0
+ }
+ },
+ [6470]={
+ ["next_chapter"]=6471,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=316117,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=82190,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=112492,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11362,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=112492,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=11877,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=647,
+ ["unit"]=0
+ }
+ },
+ [6471]={
+ ["next_chapter"]=6472,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=317179,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=82467,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=113617,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11475,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=113617,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=11877,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=647,
+ ["unit"]=0
+ }
+ },
+ [6472]={
+ ["next_chapter"]=6473,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=318246,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=82744,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=114753,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11590,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=114753,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=11877,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=647,
+ ["unit"]=0
+ }
+ },
+ [6473]={
+ ["next_chapter"]=6474,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=319318,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=83023,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=115901,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11706,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=115901,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=11877,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=647,
+ ["unit"]=0
+ }
+ },
+ [6474]={
+ ["next_chapter"]=6475,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=320394,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=83303,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=117060,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11823,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=117060,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=11877,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=647,
+ ["unit"]=0
+ }
+ },
+ [6475]={
+ ["next_chapter"]=6476,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=321475,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=83584,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=118231,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11941,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=118231,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=11877,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=647,
+ ["unit"]=0
+ }
+ },
+ [6476]={
+ ["next_chapter"]=6477,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=322560,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=83866,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=119413,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12061,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=119413,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=11877,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=647,
+ ["unit"]=0
+ }
+ },
+ [6477]={
+ ["next_chapter"]=6478,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=323650,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=84149,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=120607,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12181,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=120607,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=11877,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=647,
+ ["unit"]=0
+ }
+ },
+ [6478]={
+ ["next_chapter"]=6479,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=324745,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=84434,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=121813,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12303,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=121813,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=11877,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=647,
+ ["unit"]=0
+ }
+ },
+ [6479]={
+ ["next_chapter"]=6480,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=325844,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=84719,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=123031,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12426,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=123031,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=11877,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=647,
+ ["unit"]=0
+ }
+ },
+ [6480]={
+ ["next_chapter"]=6481,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=326947,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=85006,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=124261,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12550,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=124261,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=13120,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=648,
+ ["unit"]=0
+ }
+ },
+ [6481]={
+ ["next_chapter"]=6482,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=328055,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=85294,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=125504,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12676,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=125504,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=13120,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=648,
+ ["unit"]=0
+ }
+ },
+ [6482]={
+ ["next_chapter"]=6483,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=329168,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=85584,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=126759,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12803,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=126759,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=13120,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=648,
+ ["unit"]=0
+ }
+ },
+ [6483]={
+ ["next_chapter"]=6484,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=330286,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=85874,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=128027,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12931,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=128027,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=13120,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=648,
+ ["unit"]=0
+ }
+ },
+ [6484]={
+ ["next_chapter"]=6485,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=331408,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=86166,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=129307,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13060,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=129307,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=13120,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=648,
+ ["unit"]=0
+ }
+ },
+ [6485]={
+ ["next_chapter"]=6486,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=332535,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=86459,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=130600,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13191,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=130600,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=13120,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=648,
+ ["unit"]=0
+ }
+ },
+ [6486]={
+ ["next_chapter"]=6487,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=333666,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=86753,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=131906,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13323,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=131906,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=13120,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=648,
+ ["unit"]=0
+ }
+ },
+ [6487]={
+ ["next_chapter"]=6488,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=334802,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=87049,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=133225,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13456,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=133225,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=13120,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=648,
+ ["unit"]=0
+ }
+ },
+ [6488]={
+ ["next_chapter"]=6489,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=335943,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=87345,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=134557,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13590,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=134557,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=13120,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=648,
+ ["unit"]=0
+ }
+ },
+ [6489]={
+ ["next_chapter"]=6490,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=337088,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=87643,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=135903,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13726,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=135903,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=13120,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=648,
+ ["unit"]=0
+ }
+ },
+ [6490]={
+ ["next_chapter"]=6491,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=338238,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=87942,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=137262,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13863,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=137262,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=14492,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=649,
+ ["unit"]=0
+ }
+ },
+ [6491]={
+ ["next_chapter"]=6492,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=339393,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=88242,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=138635,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14002,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=138635,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=14492,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=649,
+ ["unit"]=0
+ }
+ },
+ [6492]={
+ ["next_chapter"]=6493,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=340553,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=88544,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=140021,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14142,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=140021,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=14492,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=649,
+ ["unit"]=0
+ }
+ },
+ [6493]={
+ ["next_chapter"]=6494,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=341717,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=88846,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=141421,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14284,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=141421,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=14492,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=649,
+ ["unit"]=0
+ }
+ },
+ [6494]={
+ ["next_chapter"]=6495,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=342886,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=89150,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=142835,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14426,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=142835,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=14492,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=649,
+ ["unit"]=0
+ }
+ },
+ [6495]={
+ ["next_chapter"]=6496,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=344060,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=89456,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=144264,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14571,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=144264,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=14492,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=649,
+ ["unit"]=0
+ }
+ },
+ [6496]={
+ ["next_chapter"]=6497,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=345238,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=89762,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=145706,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14716,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=145706,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=14492,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=649,
+ ["unit"]=0
+ }
+ },
+ [6497]={
+ ["next_chapter"]=6498,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=346422,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=90070,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=147163,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14864,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=147163,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=14492,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=649,
+ ["unit"]=0
+ }
+ },
+ [6498]={
+ ["next_chapter"]=6499,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=347610,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=90378,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=148635,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15012,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=148635,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=14492,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=649,
+ ["unit"]=0
+ }
+ },
+ [6499]={
+ ["next_chapter"]=6500,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=348802,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=90689,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=150121,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15162,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=150121,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=14492,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=649,
+ ["unit"]=0
+ }
+ },
+ [6500]={
+ ["next_chapter"]=6501,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=350000,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94500,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=151623,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15314,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=151623,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=16009,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=650,
+ ["unit"]=0
+ }
+ },
+ [6501]={
+ ["next_chapter"]=6502,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350000,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94500,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=153139,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15467,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=153139,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=16009,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=650,
+ ["unit"]=0
+ }
+ },
+ [6502]={
+ ["next_chapter"]=6503,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350000,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94500,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=154670,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15622,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=154670,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=16009,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=650,
+ ["unit"]=0
+ }
+ },
+ [6503]={
+ ["next_chapter"]=6504,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350000,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94500,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=156217,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15778,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=156217,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=16009,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=650,
+ ["unit"]=0
+ }
+ },
+ [6504]={
+ ["next_chapter"]=6505,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350000,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94500,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=157779,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15936,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=157779,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=16009,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=650,
+ ["unit"]=0
+ }
+ },
+ [6505]={
+ ["next_chapter"]=6506,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350000,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94500,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=159357,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16095,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=159357,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=16009,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=650,
+ ["unit"]=0
+ }
+ },
+ [6506]={
+ ["next_chapter"]=6507,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350001,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94500,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=160950,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16256,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=160950,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=16009,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=650,
+ ["unit"]=0
+ }
+ },
+ [6507]={
+ ["next_chapter"]=6508,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350001,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94500,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=162560,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16419,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=162560,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=16009,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=650,
+ ["unit"]=0
+ }
+ },
+ [6508]={
+ ["next_chapter"]=6509,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350002,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94500,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=164186,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16583,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=164186,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=16009,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=650,
+ ["unit"]=0
+ }
+ },
+ [6509]={
+ ["next_chapter"]=6510,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350003,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94501,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=165827,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16749,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=165827,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=16009,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=650,
+ ["unit"]=0
+ }
+ },
+ [6510]={
+ ["next_chapter"]=6511,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=350004,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94501,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=167486,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16916,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=167486,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=17683,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=651,
+ ["unit"]=0
+ }
+ },
+ [6511]={
+ ["next_chapter"]=6512,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350005,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94501,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=169161,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17085,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=169161,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=17683,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=651,
+ ["unit"]=0
+ }
+ },
+ [6512]={
+ ["next_chapter"]=6513,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350006,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94502,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=170852,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17256,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=170852,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=17683,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=651,
+ ["unit"]=0
+ }
+ },
+ [6513]={
+ ["next_chapter"]=6514,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350008,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94502,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=172561,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17429,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=172561,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=17683,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=651,
+ ["unit"]=0
+ }
+ },
+ [6514]={
+ ["next_chapter"]=6515,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350010,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94503,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=174286,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17603,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=174286,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=17683,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=651,
+ ["unit"]=0
+ }
+ },
+ [6515]={
+ ["next_chapter"]=6516,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350012,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94503,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=176029,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17779,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=176029,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=17683,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=651,
+ ["unit"]=0
+ }
+ },
+ [6516]={
+ ["next_chapter"]=6517,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350015,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94504,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=177789,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17957,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=177789,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=17683,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=651,
+ ["unit"]=0
+ }
+ },
+ [6517]={
+ ["next_chapter"]=6518,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350018,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94505,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=179567,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18136,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=179567,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=17683,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=651,
+ ["unit"]=0
+ }
+ },
+ [6518]={
+ ["next_chapter"]=6519,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350021,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94506,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=181363,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18318,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=181363,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=17683,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=651,
+ ["unit"]=0
+ }
+ },
+ [6519]={
+ ["next_chapter"]=6520,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350025,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94507,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=183177,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18501,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=183177,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=17683,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=651,
+ ["unit"]=0
+ }
+ },
+ [6520]={
+ ["next_chapter"]=6521,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=350029,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94508,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=185008,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18686,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=185008,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=19534,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=652,
+ ["unit"]=0
+ }
+ },
+ [6521]={
+ ["next_chapter"]=6522,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350033,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94509,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=186858,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18873,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=186858,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=19534,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=652,
+ ["unit"]=0
+ }
+ },
+ [6522]={
+ ["next_chapter"]=6523,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350038,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94510,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=188727,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19061,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=188727,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=19534,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=652,
+ ["unit"]=0
+ }
+ },
+ [6523]={
+ ["next_chapter"]=6524,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350044,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94512,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=190614,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19252,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=190614,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=19534,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=652,
+ ["unit"]=0
+ }
+ },
+ [6524]={
+ ["next_chapter"]=6525,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350050,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94513,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=192520,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19445,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=192520,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=19534,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=652,
+ ["unit"]=0
+ }
+ },
+ [6525]={
+ ["next_chapter"]=6526,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350056,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94515,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=194446,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19639,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=194446,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=19534,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=652,
+ ["unit"]=0
+ }
+ },
+ [6526]={
+ ["next_chapter"]=6527,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350063,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94517,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=196390,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19835,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=196390,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=19534,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=652,
+ ["unit"]=0
+ }
+ },
+ [6527]={
+ ["next_chapter"]=6528,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350071,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94519,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=198354,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20034,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=198354,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=19534,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=652,
+ ["unit"]=0
+ }
+ },
+ [6528]={
+ ["next_chapter"]=6529,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350079,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94521,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=200338,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20234,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=200338,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=19534,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=652,
+ ["unit"]=0
+ }
+ },
+ [6529]={
+ ["next_chapter"]=6530,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350088,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94524,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=202341,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20436,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=202341,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=19534,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=652,
+ ["unit"]=0
+ }
+ },
+ [6530]={
+ ["next_chapter"]=6531,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=350097,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94526,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=204364,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20641,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=204364,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=21577,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=653,
+ ["unit"]=0
+ }
+ },
+ [6531]={
+ ["next_chapter"]=6532,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350107,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94529,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=206408,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20847,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=206408,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=21577,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=653,
+ ["unit"]=0
+ }
+ },
+ [6532]={
+ ["next_chapter"]=6533,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350118,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94532,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=208472,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21056,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=208472,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=21577,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=653,
+ ["unit"]=0
+ }
+ },
+ [6533]={
+ ["next_chapter"]=6534,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350129,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94535,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=210557,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21266,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=210557,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=21577,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=653,
+ ["unit"]=0
+ }
+ },
+ [6534]={
+ ["next_chapter"]=6535,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350141,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94538,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=212662,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21479,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=212662,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=21577,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=653,
+ ["unit"]=0
+ }
+ },
+ [6535]={
+ ["next_chapter"]=6536,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350154,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94542,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=214789,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21694,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=214789,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=21577,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=653,
+ ["unit"]=0
+ }
+ },
+ [6536]={
+ ["next_chapter"]=6537,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350168,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94545,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=216937,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21911,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=216937,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=21577,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=653,
+ ["unit"]=0
+ }
+ },
+ [6537]={
+ ["next_chapter"]=6538,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350182,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94549,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=219106,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22130,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=219106,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=21577,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=653,
+ ["unit"]=0
+ }
+ },
+ [6538]={
+ ["next_chapter"]=6539,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350198,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94553,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=221297,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22351,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=221297,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=21577,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=653,
+ ["unit"]=0
+ }
+ },
+ [6539]={
+ ["next_chapter"]=6540,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350214,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94558,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=223510,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22575,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=223510,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=21577,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=653,
+ ["unit"]=0
+ }
+ },
+ [6540]={
+ ["next_chapter"]=6541,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=350230,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94562,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=225745,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22800,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=225745,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=23835,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=654,
+ ["unit"]=0
+ }
+ },
+ [6541]={
+ ["next_chapter"]=6542,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350248,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94567,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=228003,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23028,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=228003,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=23835,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=654,
+ ["unit"]=0
+ }
+ },
+ [6542]={
+ ["next_chapter"]=6543,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350267,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94572,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=230283,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23259,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=230283,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=23835,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=654,
+ ["unit"]=0
+ }
+ },
+ [6543]={
+ ["next_chapter"]=6544,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350286,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94577,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=232586,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23491,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=232586,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=23835,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=654,
+ ["unit"]=0
+ }
+ },
+ [6544]={
+ ["next_chapter"]=6545,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350307,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94583,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=234912,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23726,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=234912,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=23835,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=654,
+ ["unit"]=0
+ }
+ },
+ [6545]={
+ ["next_chapter"]=6546,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350328,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94589,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=237261,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23963,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=237261,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=23835,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=654,
+ ["unit"]=0
+ }
+ },
+ [6546]={
+ ["next_chapter"]=6547,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350350,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94595,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=239633,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24203,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=239633,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=23835,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=654,
+ ["unit"]=0
+ }
+ },
+ [6547]={
+ ["next_chapter"]=6548,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350374,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94601,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=242030,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24445,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=242030,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=23835,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=654,
+ ["unit"]=0
+ }
+ },
+ [6548]={
+ ["next_chapter"]=6549,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350398,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94607,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=244450,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24689,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=244450,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=23835,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=654,
+ ["unit"]=0
+ }
+ },
+ [6549]={
+ ["next_chapter"]=6550,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350424,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94614,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=246894,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24936,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=246894,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=23835,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=654,
+ ["unit"]=0
+ }
+ },
+ [6550]={
+ ["next_chapter"]=6551,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=350450,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94622,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=249363,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25186,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=249363,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=26328,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=655,
+ ["unit"]=0
+ }
+ },
+ [6551]={
+ ["next_chapter"]=6552,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350478,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94629,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=251857,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25438,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=251857,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=26328,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=655,
+ ["unit"]=0
+ }
+ },
+ [6552]={
+ ["next_chapter"]=6553,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350506,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94637,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=254376,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25692,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=254376,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=26328,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=655,
+ ["unit"]=0
+ }
+ },
+ [6553]={
+ ["next_chapter"]=6554,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350536,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94645,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=256919,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25949,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=256919,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=26328,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=655,
+ ["unit"]=0
+ }
+ },
+ [6554]={
+ ["next_chapter"]=6555,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350567,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94653,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=259489,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26208,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=259489,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=26328,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=655,
+ ["unit"]=0
+ }
+ },
+ [6555]={
+ ["next_chapter"]=6556,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350599,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94662,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=262083,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26470,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=262083,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=26328,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=655,
+ ["unit"]=0
+ }
+ },
+ [6556]={
+ ["next_chapter"]=6557,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350632,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94671,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=264704,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26735,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=264704,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=26328,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=655,
+ ["unit"]=0
+ }
+ },
+ [6557]={
+ ["next_chapter"]=6558,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350667,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94680,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=267351,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27002,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=267351,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=26328,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=655,
+ ["unit"]=0
+ }
+ },
+ [6558]={
+ ["next_chapter"]=6559,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350702,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94690,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=270025,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27273,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=270025,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=26328,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=655,
+ ["unit"]=0
+ }
+ },
+ [6559]={
+ ["next_chapter"]=6560,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350739,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94700,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=272725,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27545,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=272725,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=26328,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=655,
+ ["unit"]=0
+ }
+ },
+ [6560]={
+ ["next_chapter"]=6561,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=350778,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94710,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=275452,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27821,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=275452,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=29083,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=656,
+ ["unit"]=0
+ }
+ },
+ [6561]={
+ ["next_chapter"]=6562,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350817,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94721,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=278207,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28099,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=278207,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=29083,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=656,
+ ["unit"]=0
+ }
+ },
+ [6562]={
+ ["next_chapter"]=6563,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350858,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94732,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=280989,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28380,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=280989,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=29083,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=656,
+ ["unit"]=0
+ }
+ },
+ [6563]={
+ ["next_chapter"]=6564,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350900,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94743,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=283799,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28664,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=283799,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=29083,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=656,
+ ["unit"]=0
+ }
+ },
+ [6564]={
+ ["next_chapter"]=6565,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350944,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94755,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=286637,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28950,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=286637,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=29083,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=656,
+ ["unit"]=0
+ }
+ },
+ [6565]={
+ ["next_chapter"]=6566,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350989,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94767,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=289503,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29240,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=289503,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=29083,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=656,
+ ["unit"]=0
+ }
+ },
+ [6566]={
+ ["next_chapter"]=6567,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=351035,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94779,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=292398,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29532,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=292398,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=29083,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=656,
+ ["unit"]=0
+ }
+ },
+ [6567]={
+ ["next_chapter"]=6568,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=351083,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94792,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=295322,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29828,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=295322,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=29083,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=656,
+ ["unit"]=0
+ }
+ },
+ [6568]={
+ ["next_chapter"]=6569,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=351132,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94806,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=298275,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30126,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=298275,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=29083,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=656,
+ ["unit"]=0
+ }
+ },
+ [6569]={
+ ["next_chapter"]=6570,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=351183,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94819,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=301258,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30427,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=301258,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=29083,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=656,
+ ["unit"]=0
+ }
+ },
+ [6570]={
+ ["next_chapter"]=6571,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=351235,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94833,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=304271,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30731,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=304271,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=32126,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=657,
+ ["unit"]=0
+ }
+ },
+ [6571]={
+ ["next_chapter"]=6572,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=351288,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94848,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=307313,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31039,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=307313,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=32126,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=657,
+ ["unit"]=0
+ }
+ },
+ [6572]={
+ ["next_chapter"]=6573,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=351344,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94863,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=310387,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31349,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=310387,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=32126,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=657,
+ ["unit"]=0
+ }
+ },
+ [6573]={
+ ["next_chapter"]=6574,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=351400,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94878,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=313490,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31663,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=313490,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=32126,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=657,
+ ["unit"]=0
+ }
+ },
+ [6574]={
+ ["next_chapter"]=6575,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=351459,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94894,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=316625,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31979,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=316625,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=32126,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=657,
+ ["unit"]=0
+ }
+ },
+ [6575]={
+ ["next_chapter"]=6576,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=351519,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94910,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=319792,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32299,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=319792,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=32126,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=657,
+ ["unit"]=0
+ }
+ },
+ [6576]={
+ ["next_chapter"]=6577,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=351580,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94927,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=322989,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32622,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=322989,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=32126,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=657,
+ ["unit"]=0
+ }
+ },
+ [6577]={
+ ["next_chapter"]=6578,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=351644,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94944,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=326219,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32948,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=326219,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=32126,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=657,
+ ["unit"]=0
+ }
+ },
+ [6578]={
+ ["next_chapter"]=6579,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=351708,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94961,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=329482,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33278,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=329482,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=32126,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=657,
+ ["unit"]=0
+ }
+ },
+ [6579]={
+ ["next_chapter"]=6580,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=351775,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94979,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=332776,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33610,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=332776,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=32126,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=657,
+ ["unit"]=0
+ }
+ },
+ [6580]={
+ ["next_chapter"]=6581,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=351843,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=94998,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=336104,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33947,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=336104,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=35487,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=658,
+ ["unit"]=0
+ }
+ },
+ [6581]={
+ ["next_chapter"]=6582,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=351913,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=95017,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=339465,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34286,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=339465,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=35487,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=658,
+ ["unit"]=0
+ }
+ },
+ [6582]={
+ ["next_chapter"]=6583,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=351985,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=95036,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=342860,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34629,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=342860,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=35487,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=658,
+ ["unit"]=0
+ }
+ },
+ [6583]={
+ ["next_chapter"]=6584,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=352058,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=95056,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=346288,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34975,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=346288,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=35487,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=658,
+ ["unit"]=0
+ }
+ },
+ [6584]={
+ ["next_chapter"]=6585,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=352134,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=95076,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=349751,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35325,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=349751,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=35487,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=658,
+ ["unit"]=0
+ }
+ },
+ [6585]={
+ ["next_chapter"]=6586,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=352211,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=95097,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=353249,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35678,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=353249,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=35487,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=658,
+ ["unit"]=0
+ }
+ },
+ [6586]={
+ ["next_chapter"]=6587,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=352290,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=95118,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=356781,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36035,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=356781,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=35487,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=658,
+ ["unit"]=0
+ }
+ },
+ [6587]={
+ ["next_chapter"]=6588,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=352371,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=95140,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=360349,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36395,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=360349,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=35487,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=658,
+ ["unit"]=0
+ }
+ },
+ [6588]={
+ ["next_chapter"]=6589,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=352453,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=95162,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=363953,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36759,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=363953,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=35487,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=658,
+ ["unit"]=0
+ }
+ },
+ [6589]={
+ ["next_chapter"]=6590,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=352538,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=95185,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=367592,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37127,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=367592,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=35487,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=658,
+ ["unit"]=0
+ }
+ },
+ [6590]={
+ ["next_chapter"]=6591,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=352624,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=95209,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=371268,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37498,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=371268,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=39199,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=659,
+ ["unit"]=0
+ }
+ },
+ [6591]={
+ ["next_chapter"]=6592,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=352713,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=95232,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=374981,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37873,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=374981,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=39199,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=659,
+ ["unit"]=0
+ }
+ },
+ [6592]={
+ ["next_chapter"]=6593,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=352803,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=95257,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=378731,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=38252,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=378731,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=39199,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=659,
+ ["unit"]=0
+ }
+ },
+ [6593]={
+ ["next_chapter"]=6594,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=352896,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=95282,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=382518,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=38634,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=382518,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=39199,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=659,
+ ["unit"]=0
+ }
+ },
+ [6594]={
+ ["next_chapter"]=6595,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=352990,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=95307,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=386343,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39021,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=386343,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=39199,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=659,
+ ["unit"]=0
+ }
+ },
+ [6595]={
+ ["next_chapter"]=6596,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=353087,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=95333,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=390206,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39411,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=390206,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=39199,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=659,
+ ["unit"]=0
+ }
+ },
+ [6596]={
+ ["next_chapter"]=6597,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=353185,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=95360,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=394109,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39805,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=394109,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=39199,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=659,
+ ["unit"]=0
+ }
+ },
+ [6597]={
+ ["next_chapter"]=6598,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=353286,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=95387,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=398050,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=40203,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=398050,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=39199,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=659,
+ ["unit"]=0
+ }
+ },
+ [6598]={
+ ["next_chapter"]=6599,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=353388,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=95415,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=402030,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=40605,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=402030,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=39199,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=659,
+ ["unit"]=0
+ }
+ },
+ [6599]={
+ ["next_chapter"]=6600,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=353493,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=95443,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=406050,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41011,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=406050,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=39199,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=659,
+ ["unit"]=0
+ }
+ },
+ [6600]={
+ ["next_chapter"]=6601,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=353600,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=95472,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=410111,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41421,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=410111,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=43300,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=660,
+ ["unit"]=0
+ }
+ },
+ [6601]={
+ ["next_chapter"]=6602,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=353709,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=95501,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=414212,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41835,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=414212,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=43300,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=660,
+ ["unit"]=0
+ }
+ },
+ [6602]={
+ ["next_chapter"]=6603,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=353820,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=95531,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=418354,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=42254,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=418354,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=43300,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=660,
+ ["unit"]=0
+ }
+ },
+ [6603]={
+ ["next_chapter"]=6604,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=353934,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=95562,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=422538,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=42676,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=422538,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=43300,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=660,
+ ["unit"]=0
+ }
+ },
+ [6604]={
+ ["next_chapter"]=6605,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=354050,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=95593,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=426763,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=43103,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=426763,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=43300,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=660,
+ ["unit"]=0
+ }
+ },
+ [6605]={
+ ["next_chapter"]=6606,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=354167,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=95625,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=431031,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=43534,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=431031,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=43300,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=660,
+ ["unit"]=0
+ }
+ },
+ [6606]={
+ ["next_chapter"]=6607,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=354288,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=95658,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=435341,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=43969,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=435341,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=43300,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=660,
+ ["unit"]=0
+ }
+ },
+ [6607]={
+ ["next_chapter"]=6608,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=354410,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=95691,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=439694,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=44409,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=439694,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=43300,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=660,
+ ["unit"]=0
+ }
+ },
+ [6608]={
+ ["next_chapter"]=6609,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=354535,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=95724,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=444091,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=44853,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=444091,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=43300,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=660,
+ ["unit"]=0
+ }
+ },
+ [6609]={
+ ["next_chapter"]=6610,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=354662,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=95759,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=448532,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=45302,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=448532,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=43300,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=660,
+ ["unit"]=0
+ }
+ },
+ [6610]={
+ ["next_chapter"]=6611,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=354792,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=95794,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=453018,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=45755,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=453018,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=47831,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=661,
+ ["unit"]=0
+ }
+ },
+ [6611]={
+ ["next_chapter"]=6612,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=354923,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=95829,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=457548,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=46212,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=457548,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=47831,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=661,
+ ["unit"]=0
+ }
+ },
+ [6612]={
+ ["next_chapter"]=6613,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=355058,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=95866,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=462123,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=46674,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=462123,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=47831,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=661,
+ ["unit"]=0
+ }
+ },
+ [6613]={
+ ["next_chapter"]=6614,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=355194,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=95902,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=466745,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=47141,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=466745,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=47831,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=661,
+ ["unit"]=0
+ }
+ },
+ [6614]={
+ ["next_chapter"]=6615,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=355334,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=95940,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=471412,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=47613,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=471412,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=47831,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=661,
+ ["unit"]=0
+ }
+ },
+ [6615]={
+ ["next_chapter"]=6616,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=355475,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=95978,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=476126,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=48089,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=476126,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=47831,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=661,
+ ["unit"]=0
+ }
+ },
+ [6616]={
+ ["next_chapter"]=6617,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=355619,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=96017,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=480887,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=48570,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=480887,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=47831,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=661,
+ ["unit"]=0
+ }
+ },
+ [6617]={
+ ["next_chapter"]=6618,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=355766,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=96057,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=485696,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=49055,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=485696,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=47831,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=661,
+ ["unit"]=0
+ }
+ },
+ [6618]={
+ ["next_chapter"]=6619,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=355915,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=96097,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=490553,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=49546,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=490553,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=47831,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=661,
+ ["unit"]=0
+ }
+ },
+ [6619]={
+ ["next_chapter"]=6620,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=356067,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=96138,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=495459,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=50041,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=495459,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=47831,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=661,
+ ["unit"]=0
+ }
+ },
+ [6620]={
+ ["next_chapter"]=6621,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=356221,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=96180,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=500413,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=50542,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=500413,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=52835,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=662,
+ ["unit"]=0
+ }
+ },
+ [6621]={
+ ["next_chapter"]=6622,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=356378,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=96222,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=505417,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=51047,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=505417,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=52835,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=662,
+ ["unit"]=0
+ }
+ },
+ [6622]={
+ ["next_chapter"]=6623,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=356537,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=96265,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=510472,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=51558,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=510472,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=52835,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=662,
+ ["unit"]=0
+ }
+ },
+ [6623]={
+ ["next_chapter"]=6624,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=356699,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=96309,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=515576,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=52073,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=515576,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=52835,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=662,
+ ["unit"]=0
+ }
+ },
+ [6624]={
+ ["next_chapter"]=6625,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=356864,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=96353,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=520732,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=52594,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=520732,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=52835,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=662,
+ ["unit"]=0
+ }
+ },
+ [6625]={
+ ["next_chapter"]=6626,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=357031,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=96398,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=525939,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=53120,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=525939,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=52835,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=662,
+ ["unit"]=0
+ }
+ },
+ [6626]={
+ ["next_chapter"]=6627,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=357201,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=96444,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=531199,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=53651,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=531199,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=52835,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=662,
+ ["unit"]=0
+ }
+ },
+ [6627]={
+ ["next_chapter"]=6628,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=357374,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=96491,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=536511,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=54188,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=536511,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=52835,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=662,
+ ["unit"]=0
+ }
+ },
+ [6628]={
+ ["next_chapter"]=6629,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=357550,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=96538,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=541876,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=54729,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=541876,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=52835,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=662,
+ ["unit"]=0
+ }
+ },
+ [6629]={
+ ["next_chapter"]=6630,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=357728,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=96587,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=547295,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=55277,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=547295,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=52835,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=662,
+ ["unit"]=0
+ }
+ },
+ [6630]={
+ ["next_chapter"]=6631,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=357909,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=96635,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=552768,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=55830,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=552768,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=58362,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=663,
+ ["unit"]=0
+ }
+ },
+ [6631]={
+ ["next_chapter"]=6632,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=358093,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=96685,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=558295,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=56388,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=558295,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=58362,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=663,
+ ["unit"]=0
+ }
+ },
+ [6632]={
+ ["next_chapter"]=6633,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=358280,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=96736,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=563878,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=56952,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=563878,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=58362,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=663,
+ ["unit"]=0
+ }
+ },
+ [6633]={
+ ["next_chapter"]=6634,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=358469,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=96787,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=569517,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=57521,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=569517,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=58362,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=663,
+ ["unit"]=0
+ }
+ },
+ [6634]={
+ ["next_chapter"]=6635,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=358662,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=96839,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=575212,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=58096,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=575212,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=58362,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=663,
+ ["unit"]=0
+ }
+ },
+ [6635]={
+ ["next_chapter"]=6636,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=358857,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=96891,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=580964,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=58677,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=580964,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=58362,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=663,
+ ["unit"]=0
+ }
+ },
+ [6636]={
+ ["next_chapter"]=6637,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=359056,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=96945,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=586774,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=59264,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=586774,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=58362,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=663,
+ ["unit"]=0
+ }
+ },
+ [6637]={
+ ["next_chapter"]=6638,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=359257,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=96999,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=592642,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=59857,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=592642,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=58362,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=663,
+ ["unit"]=0
+ }
+ },
+ [6638]={
+ ["next_chapter"]=6639,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=359461,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=97054,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=598568,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=60455,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=598568,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=58362,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=663,
+ ["unit"]=0
+ }
+ },
+ [6639]={
+ ["next_chapter"]=6640,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=359668,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=97110,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=604554,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=61060,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=604554,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=58362,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=663,
+ ["unit"]=0
+ }
+ },
+ [6640]={
+ ["next_chapter"]=6641,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=359878,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=97167,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=610599,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=61671,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=610599,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=64468,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=664,
+ ["unit"]=0
+ }
+ },
+ [6641]={
+ ["next_chapter"]=6642,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=360092,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=97225,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=616705,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=62287,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=616705,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=64468,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=664,
+ ["unit"]=0
+ }
+ },
+ [6642]={
+ ["next_chapter"]=6643,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=360308,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=97283,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=622872,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=62910,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=622872,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=64468,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=664,
+ ["unit"]=0
+ }
+ },
+ [6643]={
+ ["next_chapter"]=6644,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=360527,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=97342,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=629101,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=63539,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=629101,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=64468,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=664,
+ ["unit"]=0
+ }
+ },
+ [6644]={
+ ["next_chapter"]=6645,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=360750,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=97402,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=635392,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=64175,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=635392,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=64468,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=664,
+ ["unit"]=0
+ }
+ },
+ [6645]={
+ ["next_chapter"]=6646,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=360975,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=97463,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=641746,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=64816,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=641746,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=64468,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=664,
+ ["unit"]=0
+ }
+ },
+ [6646]={
+ ["next_chapter"]=6647,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=361204,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=97525,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=648163,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=65465,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=648163,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=64468,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=664,
+ ["unit"]=0
+ }
+ },
+ [6647]={
+ ["next_chapter"]=6648,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=361435,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=97588,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=654645,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=66119,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=654645,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=64468,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=664,
+ ["unit"]=0
+ }
+ },
+ [6648]={
+ ["next_chapter"]=6649,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=361670,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=97651,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=661192,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=66780,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=661192,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=64468,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=664,
+ ["unit"]=0
+ }
+ },
+ [6649]={
+ ["next_chapter"]=6650,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=361909,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=97715,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=667803,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=67448,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=667803,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=64468,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=664,
+ ["unit"]=0
+ }
+ },
+ [6650]={
+ ["next_chapter"]=6651,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=362150,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=97781,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=674481,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=68123,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=674481,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=71213,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=665,
+ ["unit"]=0
+ }
+ },
+ [6651]={
+ ["next_chapter"]=6652,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=362395,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=97847,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=681226,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=68804,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=681226,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=71213,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=665,
+ ["unit"]=0
+ }
+ },
+ [6652]={
+ ["next_chapter"]=6653,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=362643,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=97913,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=688039,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=69492,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=688039,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=71213,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=665,
+ ["unit"]=0
+ }
+ },
+ [6653]={
+ ["next_chapter"]=6654,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=362894,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=97981,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=694919,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=70187,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=694919,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=71213,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=665,
+ ["unit"]=0
+ }
+ },
+ [6654]={
+ ["next_chapter"]=6655,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=363148,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=98050,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=701868,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=70889,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=701868,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=71213,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=665,
+ ["unit"]=0
+ }
+ },
+ [6655]={
+ ["next_chapter"]=6656,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=363406,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=98120,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=708887,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=71598,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=708887,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=71213,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=665,
+ ["unit"]=0
+ }
+ },
+ [6656]={
+ ["next_chapter"]=6657,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=363667,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=98190,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=715976,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=72314,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=715976,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=71213,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=665,
+ ["unit"]=0
+ }
+ },
+ [6657]={
+ ["next_chapter"]=6658,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=363932,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=98262,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=723135,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=73037,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=723135,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=71213,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=665,
+ ["unit"]=0
+ }
+ },
+ [6658]={
+ ["next_chapter"]=6659,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=364200,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=98334,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=730367,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=73767,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=730367,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=71213,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=665,
+ ["unit"]=0
+ }
+ },
+ [6659]={
+ ["next_chapter"]=6660,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=364471,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=98407,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=737670,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=74505,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=737670,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=71213,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=665,
+ ["unit"]=0
+ }
+ },
+ [6660]={
+ ["next_chapter"]=6661,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=364746,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=98481,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=745047,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=75250,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=745047,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=78664,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=666,
+ ["unit"]=0
+ }
+ },
+ [6661]={
+ ["next_chapter"]=6662,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=365024,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=98556,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=752498,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=76002,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=752498,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=78664,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=666,
+ ["unit"]=0
+ }
+ },
+ [6662]={
+ ["next_chapter"]=6663,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=365306,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=98632,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=760023,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=76762,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=760023,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=78664,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=666,
+ ["unit"]=0
+ }
+ },
+ [6663]={
+ ["next_chapter"]=6664,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=365591,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=98709,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=767623,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=77530,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=767623,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=78664,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=666,
+ ["unit"]=0
+ }
+ },
+ [6664]={
+ ["next_chapter"]=6665,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=365879,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=98787,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=775299,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=78305,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=775299,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=78664,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=666,
+ ["unit"]=0
+ }
+ },
+ [6665]={
+ ["next_chapter"]=6666,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=366172,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=98866,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=783052,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=79088,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=783052,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=78664,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=666,
+ ["unit"]=0
+ }
+ },
+ [6666]={
+ ["next_chapter"]=6667,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=366467,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=98946,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=790883,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=79879,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=790883,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=78664,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=666,
+ ["unit"]=0
+ }
+ },
+ [6667]={
+ ["next_chapter"]=6668,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=366767,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=99027,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=798791,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=80678,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=798791,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=78664,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=666,
+ ["unit"]=0
+ }
+ },
+ [6668]={
+ ["next_chapter"]=6669,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=367070,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=99109,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=806779,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=81485,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=806779,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=78664,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=666,
+ ["unit"]=0
+ }
+ },
+ [6669]={
+ ["next_chapter"]=6670,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=367377,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=99192,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=814847,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=82300,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=814847,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=78664,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=666,
+ ["unit"]=0
+ }
+ },
+ [6670]={
+ ["next_chapter"]=6671,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=367687,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=99275,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=822996,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=83123,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=822996,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=86894,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=667,
+ ["unit"]=0
+ }
+ },
+ [6671]={
+ ["next_chapter"]=6672,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=368001,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=99360,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=831226,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=83954,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=831226,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=86894,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=667,
+ ["unit"]=0
+ }
+ },
+ [6672]={
+ ["next_chapter"]=6673,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=368318,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=99446,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=839538,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=84793,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=839538,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=86894,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=667,
+ ["unit"]=0
+ }
+ },
+ [6673]={
+ ["next_chapter"]=6674,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=368640,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=99533,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=847933,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=85641,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=847933,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=86894,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=667,
+ ["unit"]=0
+ }
+ },
+ [6674]={
+ ["next_chapter"]=6675,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=368965,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=99621,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=856413,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=86498,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=856413,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=86894,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=667,
+ ["unit"]=0
+ }
+ },
+ [6675]={
+ ["next_chapter"]=6676,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=369294,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=99709,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=864977,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=87363,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=864977,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=86894,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=667,
+ ["unit"]=0
+ }
+ },
+ [6676]={
+ ["next_chapter"]=6677,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=369626,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=99799,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=873626,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=88236,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=873626,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=86894,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=667,
+ ["unit"]=0
+ }
+ },
+ [6677]={
+ ["next_chapter"]=6678,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=369963,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=99890,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=882363,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=89119,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=882363,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=86894,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=667,
+ ["unit"]=0
+ }
+ },
+ [6678]={
+ ["next_chapter"]=6679,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=370303,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=99982,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=891186,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=90010,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=891186,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=86894,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=667,
+ ["unit"]=0
+ }
+ },
+ [6679]={
+ ["next_chapter"]=6680,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=370647,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=100075,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=900098,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=90910,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=900098,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=86894,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=667,
+ ["unit"]=0
+ }
+ },
+ [6680]={
+ ["next_chapter"]=6681,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=370995,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=100169,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=909099,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=91819,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=909099,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=95985,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=668,
+ ["unit"]=0
+ }
+ },
+ [6681]={
+ ["next_chapter"]=6682,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=371347,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=100264,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=918190,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=92737,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=918190,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=95985,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=668,
+ ["unit"]=0
+ }
+ },
+ [6682]={
+ ["next_chapter"]=6683,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=371703,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=100360,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=927372,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=93665,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=927372,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=95985,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=668,
+ ["unit"]=0
+ }
+ },
+ [6683]={
+ ["next_chapter"]=6684,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=372063,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=100457,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=936646,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=94601,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=936646,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=95985,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=668,
+ ["unit"]=0
+ }
+ },
+ [6684]={
+ ["next_chapter"]=6685,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=372426,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=100555,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=946012,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=95547,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=946012,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=95985,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=668,
+ ["unit"]=0
+ }
+ },
+ [6685]={
+ ["next_chapter"]=6686,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=372794,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=100654,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=955472,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=96503,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=955472,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=95985,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=668,
+ ["unit"]=0
+ }
+ },
+ [6686]={
+ ["next_chapter"]=6687,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=373165,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=100755,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=965027,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=97468,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=965027,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=95985,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=668,
+ ["unit"]=0
+ }
+ },
+ [6687]={
+ ["next_chapter"]=6688,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=373541,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=100856,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=974677,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=98442,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=974677,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=95985,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=668,
+ ["unit"]=0
+ }
+ },
+ [6688]={
+ ["next_chapter"]=6689,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=373921,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=100959,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=984424,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=99427,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=984424,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=95985,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=668,
+ ["unit"]=0
+ }
+ },
+ [6689]={
+ ["next_chapter"]=6690,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=374305,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=101062,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=994268,
+ ["unit"]=8
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=100421,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=994268,
+ ["unit"]=8
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=95985,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=668,
+ ["unit"]=0
+ }
+ },
+ [6690]={
+ ["next_chapter"]=6691,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=374692,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=101167,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1004,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=101425,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1004,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=106027,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=669,
+ ["unit"]=0
+ }
+ },
+ [6691]={
+ ["next_chapter"]=6692,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=375084,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=101273,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1014,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=102440,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1014,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=106027,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=669,
+ ["unit"]=0
+ }
+ },
+ [6692]={
+ ["next_chapter"]=6693,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=375480,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=101380,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1024,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=103464,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1024,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=106027,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=669,
+ ["unit"]=0
+ }
+ },
+ [6693]={
+ ["next_chapter"]=6694,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=375881,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=101488,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1035,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=104499,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1035,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=106027,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=669,
+ ["unit"]=0
+ }
+ },
+ [6694]={
+ ["next_chapter"]=6695,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=376285,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=101597,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1045,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=105544,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1045,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=106027,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=669,
+ ["unit"]=0
+ }
+ },
+ [6695]={
+ ["next_chapter"]=6696,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=376694,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=101707,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1055,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=106599,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1055,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=106027,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=669,
+ ["unit"]=0
+ }
+ },
+ [6696]={
+ ["next_chapter"]=6697,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=377106,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=101819,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1066,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=107665,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1066,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=106027,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=669,
+ ["unit"]=0
+ }
+ },
+ [6697]={
+ ["next_chapter"]=6698,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=377523,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=101931,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1077,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=108742,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1077,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=106027,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=669,
+ ["unit"]=0
+ }
+ },
+ [6698]={
+ ["next_chapter"]=6699,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=377945,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=102045,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1087,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=109829,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1087,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=106027,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=669,
+ ["unit"]=0
+ }
+ },
+ [6699]={
+ ["next_chapter"]=6700,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=378370,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=102160,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1098,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=110927,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1098,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=106027,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=669,
+ ["unit"]=0
+ }
+ },
+ [6700]={
+ ["next_chapter"]=6701,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=378800,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=102276,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1109,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=112037,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1109,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=117119,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=670,
+ ["unit"]=0
+ }
+ },
+ [6701]={
+ ["next_chapter"]=6702,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=379234,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=102393,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1120,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=113157,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1120,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=117119,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=670,
+ ["unit"]=0
+ }
+ },
+ [6702]={
+ ["next_chapter"]=6703,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=379673,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=102512,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1132,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=114289,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1132,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=117119,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=670,
+ ["unit"]=0
+ }
+ },
+ [6703]={
+ ["next_chapter"]=6704,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=380116,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=102631,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1143,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=115431,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1143,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=117119,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=670,
+ ["unit"]=0
+ }
+ },
+ [6704]={
+ ["next_chapter"]=6705,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=380563,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=102752,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1154,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=116586,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1154,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=117119,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=670,
+ ["unit"]=0
+ }
+ },
+ [6705]={
+ ["next_chapter"]=6706,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=381014,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=102874,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1166,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=117752,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1166,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=117119,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=670,
+ ["unit"]=0
+ }
+ },
+ [6706]={
+ ["next_chapter"]=6707,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=381471,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=102997,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1178,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=118929,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1178,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=117119,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=670,
+ ["unit"]=0
+ }
+ },
+ [6707]={
+ ["next_chapter"]=6708,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=381931,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=103121,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1189,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=120118,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1189,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=117119,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=670,
+ ["unit"]=0
+ }
+ },
+ [6708]={
+ ["next_chapter"]=6709,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=382396,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=103247,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1201,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=121320,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1201,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=117119,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=670,
+ ["unit"]=0
+ }
+ },
+ [6709]={
+ ["next_chapter"]=6710,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=382866,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=103374,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1213,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=122533,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1213,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=117119,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=670,
+ ["unit"]=0
+ }
+ },
+ [6710]={
+ ["next_chapter"]=6711,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=383340,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=103502,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1225,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=123758,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1225,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=129373,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=671,
+ ["unit"]=0
+ }
+ },
+ [6711]={
+ ["next_chapter"]=6712,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=383818,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=103631,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1238,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=124996,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1238,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=129373,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=671,
+ ["unit"]=0
+ }
+ },
+ [6712]={
+ ["next_chapter"]=6713,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=384301,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=103761,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1250,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=126246,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1250,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=129373,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=671,
+ ["unit"]=0
+ }
+ },
+ [6713]={
+ ["next_chapter"]=6714,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=384789,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=103893,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1262,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=127508,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1262,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=129373,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=671,
+ ["unit"]=0
+ }
+ },
+ [6714]={
+ ["next_chapter"]=6715,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=385281,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=104026,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1275,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=128783,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1275,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=129373,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=671,
+ ["unit"]=0
+ }
+ },
+ [6715]={
+ ["next_chapter"]=6716,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=385778,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=104160,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1288,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=130071,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1288,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=129373,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=671,
+ ["unit"]=0
+ }
+ },
+ [6716]={
+ ["next_chapter"]=6717,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=386280,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=104296,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1301,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=131372,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1301,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=129373,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=671,
+ ["unit"]=0
+ }
+ },
+ [6717]={
+ ["next_chapter"]=6718,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=386786,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=104432,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1314,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=132685,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1314,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=129373,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=671,
+ ["unit"]=0
+ }
+ },
+ [6718]={
+ ["next_chapter"]=6719,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=387297,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=104570,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1327,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=134012,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1327,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=129373,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=671,
+ ["unit"]=0
+ }
+ },
+ [6719]={
+ ["next_chapter"]=6720,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=387812,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=104709,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1340,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=135352,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1340,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=129373,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=671,
+ ["unit"]=0
+ }
+ },
+ [6720]={
+ ["next_chapter"]=6721,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=388333,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=104850,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1354,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=136706,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1354,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=142908,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=672,
+ ["unit"]=0
+ }
+ },
+ [6721]={
+ ["next_chapter"]=6722,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=388858,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=104992,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1367,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=138073,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1367,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=142908,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=672,
+ ["unit"]=0
+ }
+ },
+ [6722]={
+ ["next_chapter"]=6723,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=389388,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=105135,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1381,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=139454,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1381,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=142908,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=672,
+ ["unit"]=0
+ }
+ },
+ [6723]={
+ ["next_chapter"]=6724,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=389922,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=105279,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1395,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=140848,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1395,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=142908,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=672,
+ ["unit"]=0
+ }
+ },
+ [6724]={
+ ["next_chapter"]=6725,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=390462,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=105425,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1408,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=142257,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1408,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=142908,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=672,
+ ["unit"]=0
+ }
+ },
+ [6725]={
+ ["next_chapter"]=6726,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=391006,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=105572,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1423,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=143679,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1423,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=142908,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=672,
+ ["unit"]=0
+ }
+ },
+ [6726]={
+ ["next_chapter"]=6727,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=391555,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=105720,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1437,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=145116,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1437,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=142908,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=672,
+ ["unit"]=0
+ }
+ },
+ [6727]={
+ ["next_chapter"]=6728,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=392109,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=105870,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1451,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=146567,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1451,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=142908,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=672,
+ ["unit"]=0
+ }
+ },
+ [6728]={
+ ["next_chapter"]=6729,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=392668,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=106020,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1466,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=148033,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1466,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=142908,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=672,
+ ["unit"]=0
+ }
+ },
+ [6729]={
+ ["next_chapter"]=6730,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=393232,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=106173,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1480,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=149513,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1480,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=142908,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=672,
+ ["unit"]=0
+ }
+ },
+ [6730]={
+ ["next_chapter"]=6731,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=393801,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=106326,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1495,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=151008,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1495,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=157859,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=673,
+ ["unit"]=0
+ }
+ },
+ [6731]={
+ ["next_chapter"]=6732,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=394375,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=106481,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1510,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=152519,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1510,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=157859,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=673,
+ ["unit"]=0
+ }
+ },
+ [6732]={
+ ["next_chapter"]=6733,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=394954,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=106638,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1525,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=154044,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1525,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=157859,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=673,
+ ["unit"]=0
+ }
+ },
+ [6733]={
+ ["next_chapter"]=6734,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=395538,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=106795,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1540,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=155584,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1540,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=157859,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=673,
+ ["unit"]=0
+ }
+ },
+ [6734]={
+ ["next_chapter"]=6735,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=396126,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=106954,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1556,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=157140,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1556,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=157859,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=673,
+ ["unit"]=0
+ }
+ },
+ [6735]={
+ ["next_chapter"]=6736,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=396720,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=107114,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1571,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=158711,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1571,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=157859,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=673,
+ ["unit"]=0
+ }
+ },
+ [6736]={
+ ["next_chapter"]=6737,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=397319,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=107276,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1587,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=160299,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1587,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=157859,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=673,
+ ["unit"]=0
+ }
+ },
+ [6737]={
+ ["next_chapter"]=6738,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=397923,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=107439,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1603,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=161902,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1603,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=157859,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=673,
+ ["unit"]=0
+ }
+ },
+ [6738]={
+ ["next_chapter"]=6739,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=398533,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=107604,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1619,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=163521,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1619,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=157859,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=673,
+ ["unit"]=0
+ }
+ },
+ [6739]={
+ ["next_chapter"]=6740,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=399147,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=107770,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1635,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=165156,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1635,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=157859,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=673,
+ ["unit"]=0
+ }
+ },
+ [6740]={
+ ["next_chapter"]=6741,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=399766,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=107937,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1652,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=166807,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1652,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=174375,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=674,
+ ["unit"]=0
+ }
+ },
+ [6741]={
+ ["next_chapter"]=6742,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=400391,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=108106,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1668,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=168475,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1668,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=174375,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=674,
+ ["unit"]=0
+ }
+ },
+ [6742]={
+ ["next_chapter"]=6743,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=401021,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=108276,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1685,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=170160,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1685,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=174375,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=674,
+ ["unit"]=0
+ }
+ },
+ [6743]={
+ ["next_chapter"]=6744,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=401656,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=108447,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1702,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=171862,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1702,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=174375,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=674,
+ ["unit"]=0
+ }
+ },
+ [6744]={
+ ["next_chapter"]=6745,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=402296,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=108620,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1719,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=173580,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1719,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=174375,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=674,
+ ["unit"]=0
+ }
+ },
+ [6745]={
+ ["next_chapter"]=6746,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=402942,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=108794,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1736,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=175316,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1736,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=174375,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=674,
+ ["unit"]=0
+ }
+ },
+ [6746]={
+ ["next_chapter"]=6747,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=403593,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=108970,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1753,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=177069,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1753,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=174375,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=674,
+ ["unit"]=0
+ }
+ },
+ [6747]={
+ ["next_chapter"]=6748,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=404249,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=109147,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1771,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=178840,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1771,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=174375,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=674,
+ ["unit"]=0
+ }
+ },
+ [6748]={
+ ["next_chapter"]=6749,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=404911,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=109326,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1788,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=180628,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1788,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=174375,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=674,
+ ["unit"]=0
+ }
+ },
+ [6749]={
+ ["next_chapter"]=6750,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=405578,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=109506,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1806,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=182435,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1806,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=174375,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=674,
+ ["unit"]=0
+ }
+ },
+ [6750]={
+ ["next_chapter"]=6751,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=406250,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=109688,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1824,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=184259,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1824,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=192618,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=675,
+ ["unit"]=0
+ }
+ },
+ [6751]={
+ ["next_chapter"]=6752,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=406928,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=109870,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1843,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=186102,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1843,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=192618,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=675,
+ ["unit"]=0
+ }
+ },
+ [6752]={
+ ["next_chapter"]=6753,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=407611,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=110055,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1861,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=187963,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1861,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=192618,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=675,
+ ["unit"]=0
+ }
+ },
+ [6753]={
+ ["next_chapter"]=6754,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=408299,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=110241,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1880,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=189842,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1880,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=192618,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=675,
+ ["unit"]=0
+ }
+ },
+ [6754]={
+ ["next_chapter"]=6755,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=408993,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=110428,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1898,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=191741,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1898,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=192618,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=675,
+ ["unit"]=0
+ }
+ },
+ [6755]={
+ ["next_chapter"]=6756,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=409693,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=110617,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1917,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=193658,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1917,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=192618,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=675,
+ ["unit"]=0
+ }
+ },
+ [6756]={
+ ["next_chapter"]=6757,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=410398,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=110807,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1937,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=195595,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1937,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=192618,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=675,
+ ["unit"]=0
+ }
+ },
+ [6757]={
+ ["next_chapter"]=6758,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=411109,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=110999,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1956,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=197551,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1956,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=192618,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=675,
+ ["unit"]=0
+ }
+ },
+ [6758]={
+ ["next_chapter"]=6759,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=411825,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=111193,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1976,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=199526,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1976,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=192618,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=675,
+ ["unit"]=0
+ }
+ },
+ [6759]={
+ ["next_chapter"]=6760,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=412546,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=111388,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1995,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=201521,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=1995,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=192618,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=675,
+ ["unit"]=0
+ }
+ },
+ [6760]={
+ ["next_chapter"]=6761,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=413274,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=111584,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2015,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=203537,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=2015,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=212770,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=676,
+ ["unit"]=0
+ }
+ },
+ [6761]={
+ ["next_chapter"]=6762,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=414006,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=111782,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2035,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=205572,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=2035,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=212770,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=676,
+ ["unit"]=0
+ }
+ },
+ [6762]={
+ ["next_chapter"]=6763,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=414745,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=111981,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2056,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=207628,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=2056,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=212770,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=676,
+ ["unit"]=0
+ }
+ },
+ [6763]={
+ ["next_chapter"]=6764,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=415489,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=112182,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2076,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=209704,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=2076,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=212770,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=676,
+ ["unit"]=0
+ }
+ },
+ [6764]={
+ ["next_chapter"]=6765,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=416239,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=112385,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2097,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=211801,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=2097,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=212770,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=676,
+ ["unit"]=0
+ }
+ },
+ [6765]={
+ ["next_chapter"]=6766,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=416995,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=112589,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2118,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=213919,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=2118,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=212770,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=676,
+ ["unit"]=0
+ }
+ },
+ [6766]={
+ ["next_chapter"]=6767,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=417756,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=112794,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2139,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=216058,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=2139,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=212770,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=676,
+ ["unit"]=0
+ }
+ },
+ [6767]={
+ ["next_chapter"]=6768,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=418523,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=113001,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2161,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=218219,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=2161,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=212770,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=676,
+ ["unit"]=0
+ }
+ },
+ [6768]={
+ ["next_chapter"]=6769,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=419296,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=113210,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2182,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=220401,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=2182,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=212770,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=676,
+ ["unit"]=0
+ }
+ },
+ [6769]={
+ ["next_chapter"]=6770,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=420074,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=113420,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2204,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=222605,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=2204,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=212770,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=676,
+ ["unit"]=0
+ }
+ },
+ [6770]={
+ ["next_chapter"]=6771,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=420859,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=113632,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2226,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=224831,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=2226,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=235031,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=677,
+ ["unit"]=0
+ }
+ },
+ [6771]={
+ ["next_chapter"]=6772,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=421649,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=113845,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2248,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=227079,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=2248,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=235031,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=677,
+ ["unit"]=0
+ }
+ },
+ [6772]={
+ ["next_chapter"]=6773,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=422445,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=114060,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2271,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=229350,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=2271,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=235031,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=677,
+ ["unit"]=0
+ }
+ },
+ [6773]={
+ ["next_chapter"]=6774,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=423247,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=114277,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2294,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=231644,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=2294,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=235031,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=677,
+ ["unit"]=0
+ }
+ },
+ [6774]={
+ ["next_chapter"]=6775,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=424055,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=114495,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2316,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=233960,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=2316,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=235031,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=677,
+ ["unit"]=0
+ }
+ },
+ [6775]={
+ ["next_chapter"]=6776,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=424869,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=114715,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2340,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=236300,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=2340,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=235031,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=677,
+ ["unit"]=0
+ }
+ },
+ [6776]={
+ ["next_chapter"]=6777,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=425688,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=114936,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2363,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=238663,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=2363,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=235031,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=677,
+ ["unit"]=0
+ }
+ },
+ [6777]={
+ ["next_chapter"]=6778,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=426514,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=115159,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2387,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=241049,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=2387,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=235031,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=677,
+ ["unit"]=0
+ }
+ },
+ [6778]={
+ ["next_chapter"]=6779,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=427346,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=115383,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2410,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=243460,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=2410,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=235031,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=677,
+ ["unit"]=0
+ }
+ },
+ [6779]={
+ ["next_chapter"]=6780,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=428184,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=115610,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2435,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=245894,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=2435,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=235031,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=677,
+ ["unit"]=0
+ }
+ },
+ [6780]={
+ ["next_chapter"]=6781,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=429027,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=115837,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2459,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=248353,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=2459,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=259620,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=678,
+ ["unit"]=0
+ }
+ },
+ [6781]={
+ ["next_chapter"]=6782,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=429877,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=116067,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2484,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=250837,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=2484,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=259620,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=678,
+ ["unit"]=0
+ }
+ },
+ [6782]={
+ ["next_chapter"]=6783,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=430733,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=116298,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2508,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=253345,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=2508,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=259620,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=678,
+ ["unit"]=0
+ }
+ },
+ [6783]={
+ ["next_chapter"]=6784,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=431595,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=116531,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2533,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=255879,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=2533,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=259620,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=678,
+ ["unit"]=0
+ }
+ },
+ [6784]={
+ ["next_chapter"]=6785,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=432463,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=116765,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2559,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=258437,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=2559,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=259620,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=678,
+ ["unit"]=0
+ }
+ },
+ [6785]={
+ ["next_chapter"]=6786,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=433337,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=117001,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2584,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=261022,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=2584,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=259620,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=678,
+ ["unit"]=0
+ }
+ },
+ [6786]={
+ ["next_chapter"]=6787,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=434217,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=117239,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2610,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=263632,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=2610,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=259620,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=678,
+ ["unit"]=0
+ }
+ },
+ [6787]={
+ ["next_chapter"]=6788,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=435104,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=117478,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2636,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=266268,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=2636,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=259620,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=678,
+ ["unit"]=0
+ }
+ },
+ [6788]={
+ ["next_chapter"]=6789,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=435996,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=117719,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2663,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=268931,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=2663,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=259620,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=678,
+ ["unit"]=0
+ }
+ },
+ [6789]={
+ ["next_chapter"]=6790,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=436895,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=117962,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2689,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=271620,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=2689,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=259620,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=678,
+ ["unit"]=0
+ }
+ },
+ [6790]={
+ ["next_chapter"]=6791,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=437800,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=118206,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2716,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=274337,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=2716,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=286782,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=679,
+ ["unit"]=0
+ }
+ },
+ [6791]={
+ ["next_chapter"]=6792,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=438712,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=118452,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2743,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=277080,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=2743,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=286782,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=679,
+ ["unit"]=0
+ }
+ },
+ [6792]={
+ ["next_chapter"]=6793,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=439630,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=118700,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2771,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=279851,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=2771,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=286782,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=679,
+ ["unit"]=0
+ }
+ },
+ [6793]={
+ ["next_chapter"]=6794,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=440554,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=118949,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2799,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=282649,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=2799,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=286782,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=679,
+ ["unit"]=0
+ }
+ },
+ [6794]={
+ ["next_chapter"]=6795,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=441484,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=119201,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2826,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=285476,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=2826,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=286782,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=679,
+ ["unit"]=0
+ }
+ },
+ [6795]={
+ ["next_chapter"]=6796,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=442421,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=119454,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2855,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=288331,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=2855,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=286782,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=679,
+ ["unit"]=0
+ }
+ },
+ [6796]={
+ ["next_chapter"]=6797,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=443364,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=119708,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2883,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=291214,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=2883,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=286782,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=679,
+ ["unit"]=0
+ }
+ },
+ [6797]={
+ ["next_chapter"]=6798,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=444313,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=119965,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2912,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=294126,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=2912,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=286782,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=679,
+ ["unit"]=0
+ }
+ },
+ [6798]={
+ ["next_chapter"]=6799,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=445269,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=120223,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2941,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=297067,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=2941,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=286782,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=679,
+ ["unit"]=0
+ }
+ },
+ [6799]={
+ ["next_chapter"]=6800,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=446231,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=120482,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2971,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=300038,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=2971,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=286782,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=679,
+ ["unit"]=0
+ }
+ },
+ [6800]={
+ ["next_chapter"]=6801,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=447200,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=120744,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=303038,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=3000,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=316786,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=680,
+ ["unit"]=0
+ }
+ },
+ [6801]={
+ ["next_chapter"]=6802,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=448175,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=121007,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3030,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=306069,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=3030,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=316786,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=680,
+ ["unit"]=0
+ }
+ },
+ [6802]={
+ ["next_chapter"]=6803,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=449157,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=121272,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3061,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=309129,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=3061,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=316786,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=680,
+ ["unit"]=0
+ }
+ },
+ [6803]={
+ ["next_chapter"]=6804,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=450145,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=121539,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3091,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=312221,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=3091,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=316786,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=680,
+ ["unit"]=0
+ }
+ },
+ [6804]={
+ ["next_chapter"]=6805,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=451140,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=121808,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3122,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=315343,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=3122,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=316786,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=680,
+ ["unit"]=0
+ }
+ },
+ [6805]={
+ ["next_chapter"]=6806,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=452141,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=122078,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3153,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=318496,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=3153,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=316786,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=680,
+ ["unit"]=0
+ }
+ },
+ [6806]={
+ ["next_chapter"]=6807,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=453149,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=122350,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3185,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=321681,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=3185,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=316786,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=680,
+ ["unit"]=0
+ }
+ },
+ [6807]={
+ ["next_chapter"]=6808,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=454164,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=122624,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3217,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=324898,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=3217,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=316786,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=680,
+ ["unit"]=0
+ }
+ },
+ [6808]={
+ ["next_chapter"]=6809,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=455185,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=122900,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3249,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=328147,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=3249,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=316786,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=680,
+ ["unit"]=0
+ }
+ },
+ [6809]={
+ ["next_chapter"]=6810,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=456213,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=123178,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3281,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=331428,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=3281,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=316786,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=680,
+ ["unit"]=0
+ }
+ },
+ [6810]={
+ ["next_chapter"]=6811,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=457248,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=123457,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3314,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=334743,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=3314,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=349929,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=681,
+ ["unit"]=0
+ }
+ },
+ [6811]={
+ ["next_chapter"]=6812,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=458289,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=123738,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3347,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=338090,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=3347,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=349929,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=681,
+ ["unit"]=0
+ }
+ },
+ [6812]={
+ ["next_chapter"]=6813,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=459337,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=124021,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3381,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=341471,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=3381,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=349929,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=681,
+ ["unit"]=0
+ }
+ },
+ [6813]={
+ ["next_chapter"]=6814,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=460391,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=124306,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3415,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=344886,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=3415,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=349929,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=681,
+ ["unit"]=0
+ }
+ },
+ [6814]={
+ ["next_chapter"]=6815,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=461453,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=124592,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3449,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=348335,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=3449,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=349929,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=681,
+ ["unit"]=0
+ }
+ },
+ [6815]={
+ ["next_chapter"]=6816,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=462521,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=124881,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3483,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=351818,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=3483,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=349929,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=681,
+ ["unit"]=0
+ }
+ },
+ [6816]={
+ ["next_chapter"]=6817,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=463596,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=125171,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3518,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=355336,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=3518,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=349929,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=681,
+ ["unit"]=0
+ }
+ },
+ [6817]={
+ ["next_chapter"]=6818,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=464678,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=125463,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3553,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=358890,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=3553,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=349929,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=681,
+ ["unit"]=0
+ }
+ },
+ [6818]={
+ ["next_chapter"]=6819,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=465767,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=125757,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3589,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=362478,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=3589,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=349929,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=681,
+ ["unit"]=0
+ }
+ },
+ [6819]={
+ ["next_chapter"]=6820,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=466862,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=126053,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3625,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=366103,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=3625,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=349929,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=681,
+ ["unit"]=0
+ }
+ },
+ [6820]={
+ ["next_chapter"]=6821,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=467965,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=126350,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3661,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=369764,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=3661,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=386539,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=682,
+ ["unit"]=0
+ }
+ },
+ [6821]={
+ ["next_chapter"]=6822,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=469074,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=126650,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3698,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=373462,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=3698,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=386539,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=682,
+ ["unit"]=0
+ }
+ },
+ [6822]={
+ ["next_chapter"]=6823,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=470190,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=126951,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3735,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=377197,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=3735,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=386539,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=682,
+ ["unit"]=0
+ }
+ },
+ [6823]={
+ ["next_chapter"]=6824,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=471314,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=127255,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3772,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=380969,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=3772,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=386539,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=682,
+ ["unit"]=0
+ }
+ },
+ [6824]={
+ ["next_chapter"]=6825,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=472444,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=127560,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3810,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=384778,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=3810,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=386539,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=682,
+ ["unit"]=0
+ }
+ },
+ [6825]={
+ ["next_chapter"]=6826,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=473581,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=127867,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3848,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=388626,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=3848,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=386539,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=682,
+ ["unit"]=0
+ }
+ },
+ [6826]={
+ ["next_chapter"]=6827,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=474726,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=128176,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3886,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=392512,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=3886,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=386539,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=682,
+ ["unit"]=0
+ }
+ },
+ [6827]={
+ ["next_chapter"]=6828,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=475877,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=128487,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3925,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=396437,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=3925,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=386539,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=682,
+ ["unit"]=0
+ }
+ },
+ [6828]={
+ ["next_chapter"]=6829,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=477035,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=128800,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3964,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=400402,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=3964,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=386539,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=682,
+ ["unit"]=0
+ }
+ },
+ [6829]={
+ ["next_chapter"]=6830,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=478201,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=129114,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4004,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=404406,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=4004,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=386539,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=682,
+ ["unit"]=0
+ }
+ },
+ [6830]={
+ ["next_chapter"]=6831,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=479373,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=129431,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4044,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=408450,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=4044,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=426980,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=683,
+ ["unit"]=0
+ }
+ },
+ [6831]={
+ ["next_chapter"]=6832,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=480553,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=129749,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4084,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=412534,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=4084,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=426980,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=683,
+ ["unit"]=0
+ }
+ },
+ [6832]={
+ ["next_chapter"]=6833,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=481740,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=130070,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4125,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=416660,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=4125,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=426980,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=683,
+ ["unit"]=0
+ }
+ },
+ [6833]={
+ ["next_chapter"]=6834,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=482934,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=130392,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4167,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=420826,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=4167,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=426980,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=683,
+ ["unit"]=0
+ }
+ },
+ [6834]={
+ ["next_chapter"]=6835,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=484135,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=130716,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4208,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=425035,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=4208,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=426980,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=683,
+ ["unit"]=0
+ }
+ },
+ [6835]={
+ ["next_chapter"]=6836,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=485343,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=131043,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4250,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=429285,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=4250,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=426980,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=683,
+ ["unit"]=0
+ }
+ },
+ [6836]={
+ ["next_chapter"]=6837,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=486559,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=131371,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4293,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=433578,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=4293,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=426980,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=683,
+ ["unit"]=0
+ }
+ },
+ [6837]={
+ ["next_chapter"]=6838,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=487782,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=131701,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4336,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=437913,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=4336,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=426980,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=683,
+ ["unit"]=0
+ }
+ },
+ [6838]={
+ ["next_chapter"]=6839,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=489012,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=132033,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4379,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=442293,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=4379,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=426980,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=683,
+ ["unit"]=0
+ }
+ },
+ [6839]={
+ ["next_chapter"]=6840,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=490250,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=132367,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4423,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=446716,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=4423,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=426980,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=683,
+ ["unit"]=0
+ }
+ },
+ [6840]={
+ ["next_chapter"]=6841,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=491494,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=132703,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4467,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=451183,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=4467,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=471652,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=684,
+ ["unit"]=0
+ }
+ },
+ [6841]={
+ ["next_chapter"]=6842,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=492747,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=133042,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4512,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=455695,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=4512,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=471652,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=684,
+ ["unit"]=0
+ }
+ },
+ [6842]={
+ ["next_chapter"]=6843,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=494006,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=133382,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4557,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=460251,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=4557,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=471652,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=684,
+ ["unit"]=0
+ }
+ },
+ [6843]={
+ ["next_chapter"]=6844,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=495273,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=133724,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4603,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=464854,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=4603,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=471652,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=684,
+ ["unit"]=0
+ }
+ },
+ [6844]={
+ ["next_chapter"]=6845,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=496547,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=134068,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4649,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=469503,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=4649,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=471652,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=684,
+ ["unit"]=0
+ }
+ },
+ [6845]={
+ ["next_chapter"]=6846,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=497829,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=134414,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4695,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=474198,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=4695,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=471652,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=684,
+ ["unit"]=0
+ }
+ },
+ [6846]={
+ ["next_chapter"]=6847,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=499118,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=134762,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4742,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=478940,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=4742,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=471652,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=684,
+ ["unit"]=0
+ }
+ },
+ [6847]={
+ ["next_chapter"]=6848,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=500415,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=135112,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4789,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=483729,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=4789,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=471652,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=684,
+ ["unit"]=0
+ }
+ },
+ [6848]={
+ ["next_chapter"]=6849,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=501719,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=135464,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4837,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=488566,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=4837,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=471652,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=684,
+ ["unit"]=0
+ }
+ },
+ [6849]={
+ ["next_chapter"]=6850,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=503031,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=135818,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4886,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=493452,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=4886,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=471652,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=684,
+ ["unit"]=0
+ }
+ },
+ [6850]={
+ ["next_chapter"]=6851,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=504350,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=136175,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4935,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=498386,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=4935,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=520997,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=685,
+ ["unit"]=0
+ }
+ },
+ [6851]={
+ ["next_chapter"]=6852,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=505677,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=136533,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4984,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=503370,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=4984,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=520997,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=685,
+ ["unit"]=0
+ }
+ },
+ [6852]={
+ ["next_chapter"]=6853,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=507011,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=136893,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5034,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=508404,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=5034,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=520997,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=685,
+ ["unit"]=0
+ }
+ },
+ [6853]={
+ ["next_chapter"]=6854,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=508353,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=137255,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5084,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=513488,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=5084,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=520997,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=685,
+ ["unit"]=0
+ }
+ },
+ [6854]={
+ ["next_chapter"]=6855,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=509703,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=137620,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5135,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=518623,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=5135,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=520997,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=685,
+ ["unit"]=0
+ }
+ },
+ [6855]={
+ ["next_chapter"]=6856,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=511060,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=137986,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5186,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=523809,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=5186,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=520997,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=685,
+ ["unit"]=0
+ }
+ },
+ [6856]={
+ ["next_chapter"]=6857,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=512425,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=138355,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5238,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=529047,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=5238,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=520997,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=685,
+ ["unit"]=0
+ }
+ },
+ [6857]={
+ ["next_chapter"]=6858,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=513797,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=138725,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5290,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=534338,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=5290,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=520997,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=685,
+ ["unit"]=0
+ }
+ },
+ [6858]={
+ ["next_chapter"]=6859,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=515178,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=139098,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5343,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=539681,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=5343,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=520997,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=685,
+ ["unit"]=0
+ }
+ },
+ [6859]={
+ ["next_chapter"]=6860,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=516566,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=139473,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5397,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=545078,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=5397,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=520997,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=685,
+ ["unit"]=0
+ }
+ },
+ [6860]={
+ ["next_chapter"]=6861,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=517962,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=139850,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5451,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=550529,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=5451,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=575505,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=686,
+ ["unit"]=0
+ }
+ },
+ [6861]={
+ ["next_chapter"]=6862,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=519365,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=140229,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5505,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=556034,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=5505,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=575505,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=686,
+ ["unit"]=0
+ }
+ },
+ [6862]={
+ ["next_chapter"]=6863,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=520777,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=140610,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5560,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=561594,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=5560,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=575505,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=686,
+ ["unit"]=0
+ }
+ },
+ [6863]={
+ ["next_chapter"]=6864,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=522196,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=140993,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5616,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=567210,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=5616,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=575505,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=686,
+ ["unit"]=0
+ }
+ },
+ [6864]={
+ ["next_chapter"]=6865,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=523623,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=141378,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5672,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=572882,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=5672,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=575505,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=686,
+ ["unit"]=0
+ }
+ },
+ [6865]={
+ ["next_chapter"]=6866,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=525058,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=141766,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5729,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=578611,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=5729,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=575505,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=686,
+ ["unit"]=0
+ }
+ },
+ [6866]={
+ ["next_chapter"]=6867,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=526500,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=142155,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5786,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=584397,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=5786,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=575505,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=686,
+ ["unit"]=0
+ }
+ },
+ [6867]={
+ ["next_chapter"]=6868,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=527951,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=142547,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5844,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=590241,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=5844,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=575505,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=686,
+ ["unit"]=0
+ }
+ },
+ [6868]={
+ ["next_chapter"]=6869,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=529410,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=142941,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5902,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=596144,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=5902,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=575505,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=686,
+ ["unit"]=0
+ }
+ },
+ [6869]={
+ ["next_chapter"]=6870,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=530876,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=143337,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5961,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=602105,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=5961,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=575505,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=686,
+ ["unit"]=0
+ }
+ },
+ [6870]={
+ ["next_chapter"]=6871,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=532351,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=143735,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6021,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=608126,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=6021,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=635715,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=687,
+ ["unit"]=0
+ }
+ },
+ [6871]={
+ ["next_chapter"]=6872,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=533833,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=144135,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6081,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=614207,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=6081,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=635715,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=687,
+ ["unit"]=0
+ }
+ },
+ [6872]={
+ ["next_chapter"]=6873,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=535324,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=144537,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6142,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=620349,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=6142,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=635715,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=687,
+ ["unit"]=0
+ }
+ },
+ [6873]={
+ ["next_chapter"]=6874,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=536822,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=144942,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6203,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=626553,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=6203,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=635715,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=687,
+ ["unit"]=0
+ }
+ },
+ [6874]={
+ ["next_chapter"]=6875,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=538329,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=145349,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6266,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=632818,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=6266,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=635715,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=687,
+ ["unit"]=0
+ }
+ },
+ [6875]={
+ ["next_chapter"]=6876,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=539844,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=145758,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6328,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=639147,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=6328,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=635715,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=687,
+ ["unit"]=0
+ }
+ },
+ [6876]={
+ ["next_chapter"]=6877,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=541367,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=146169,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6391,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=645538,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=6391,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=635715,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=687,
+ ["unit"]=0
+ }
+ },
+ [6877]={
+ ["next_chapter"]=6878,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=542897,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=146582,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6455,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=651993,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=6455,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=635715,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=687,
+ ["unit"]=0
+ }
+ },
+ [6878]={
+ ["next_chapter"]=6879,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=544437,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=146998,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6520,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=658513,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=6520,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=635715,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=687,
+ ["unit"]=0
+ }
+ },
+ [6879]={
+ ["next_chapter"]=6880,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=545984,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=147416,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6585,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=665099,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=6585,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=635715,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=687,
+ ["unit"]=0
+ }
+ },
+ [6880]={
+ ["next_chapter"]=6881,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=547539,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=147836,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6651,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=671750,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=6651,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=702225,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=688,
+ ["unit"]=0
+ }
+ },
+ [6881]={
+ ["next_chapter"]=6882,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=549103,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=148258,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6717,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=678467,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=6717,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=702225,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=688,
+ ["unit"]=0
+ }
+ },
+ [6882]={
+ ["next_chapter"]=6883,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=550675,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=148682,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6785,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=685252,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=6785,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=702225,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=688,
+ ["unit"]=0
+ }
+ },
+ [6883]={
+ ["next_chapter"]=6884,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=552255,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=149109,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6853,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=692104,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=6853,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=702225,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=688,
+ ["unit"]=0
+ }
+ },
+ [6884]={
+ ["next_chapter"]=6885,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=553843,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=149538,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6921,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=699025,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=6921,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=702225,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=688,
+ ["unit"]=0
+ }
+ },
+ [6885]={
+ ["next_chapter"]=6886,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=555440,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=149969,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6990,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=706016,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=6990,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=702225,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=688,
+ ["unit"]=0
+ }
+ },
+ [6886]={
+ ["next_chapter"]=6887,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=557045,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=150402,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7060,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=713076,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=7060,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=702225,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=688,
+ ["unit"]=0
+ }
+ },
+ [6887]={
+ ["next_chapter"]=6888,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=558658,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=150838,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7131,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=720206,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=7131,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=702225,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=688,
+ ["unit"]=0
+ }
+ },
+ [6888]={
+ ["next_chapter"]=6889,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=560280,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=151276,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7202,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=727409,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=7202,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=702225,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=688,
+ ["unit"]=0
+ }
+ },
+ [6889]={
+ ["next_chapter"]=6890,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=561910,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=151716,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7274,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=734683,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=7274,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=702225,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=688,
+ ["unit"]=0
+ }
+ },
+ [6890]={
+ ["next_chapter"]=6891,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=563548,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=152158,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7347,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=742029,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=7347,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=775693,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=689,
+ ["unit"]=0
+ }
+ },
+ [6891]={
+ ["next_chapter"]=6892,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=565195,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=152603,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7420,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=749450,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=7420,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=775693,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=689,
+ ["unit"]=0
+ }
+ },
+ [6892]={
+ ["next_chapter"]=6893,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=566851,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=153050,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7494,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=756944,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=7494,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=775693,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=689,
+ ["unit"]=0
+ }
+ },
+ [6893]={
+ ["next_chapter"]=6894,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=568514,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=153499,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7569,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=764514,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=7569,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=775693,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=689,
+ ["unit"]=0
+ }
+ },
+ [6894]={
+ ["next_chapter"]=6895,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=570187,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=153950,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7645,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=772159,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=7645,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=775693,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=689,
+ ["unit"]=0
+ }
+ },
+ [6895]={
+ ["next_chapter"]=6896,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=571868,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=154404,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7722,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=779880,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=7722,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=775693,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=689,
+ ["unit"]=0
+ }
+ },
+ [6896]={
+ ["next_chapter"]=6897,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=573557,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=154860,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7799,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=787679,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=7799,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=775693,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=689,
+ ["unit"]=0
+ }
+ },
+ [6897]={
+ ["next_chapter"]=6898,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=575255,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=155319,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7877,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=795556,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=7877,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=775693,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=689,
+ ["unit"]=0
+ }
+ },
+ [6898]={
+ ["next_chapter"]=6899,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=576961,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=155780,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7956,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=803512,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=7956,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=775693,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=689,
+ ["unit"]=0
+ }
+ },
+ [6899]={
+ ["next_chapter"]=6900,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=578676,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=156243,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8035,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=811547,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=8035,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=775693,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=689,
+ ["unit"]=0
+ }
+ },
+ [6900]={
+ ["next_chapter"]=6901,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=580400,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=156708,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8115,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=819662,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=8115,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=856848,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=690,
+ ["unit"]=0
+ }
+ },
+ [6901]={
+ ["next_chapter"]=6902,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=582132,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=157176,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8197,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=827859,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=8197,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=856848,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=690,
+ ["unit"]=0
+ }
+ },
+ [6902]={
+ ["next_chapter"]=6903,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=583873,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=157646,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8279,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=836137,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=8279,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=856848,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=690,
+ ["unit"]=0
+ }
+ },
+ [6903]={
+ ["next_chapter"]=6904,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=585623,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=158118,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8361,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=844499,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=8361,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=856848,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=690,
+ ["unit"]=0
+ }
+ },
+ [6904]={
+ ["next_chapter"]=6905,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=587381,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=158593,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8445,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=852944,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=8445,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=856848,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=690,
+ ["unit"]=0
+ }
+ },
+ [6905]={
+ ["next_chapter"]=6906,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=589148,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=159070,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8529,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=861473,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=8529,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=856848,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=690,
+ ["unit"]=0
+ }
+ },
+ [6906]={
+ ["next_chapter"]=6907,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=590924,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=159550,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8615,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=870088,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=8615,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=856848,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=690,
+ ["unit"]=0
+ }
+ },
+ [6907]={
+ ["next_chapter"]=6908,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=592709,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=160031,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8701,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=878789,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=8701,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=856848,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=690,
+ ["unit"]=0
+ }
+ },
+ [6908]={
+ ["next_chapter"]=6909,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=594502,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=160516,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8788,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=887577,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=8788,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=856848,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=690,
+ ["unit"]=0
+ }
+ },
+ [6909]={
+ ["next_chapter"]=6910,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=596305,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=161002,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8876,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=896452,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=8876,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=856848,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=690,
+ ["unit"]=0
+ }
+ },
+ [6910]={
+ ["next_chapter"]=6911,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=598116,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=161491,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8965,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=905417,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=8965,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=946493,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=691,
+ ["unit"]=0
+ }
+ },
+ [6911]={
+ ["next_chapter"]=6912,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=599936,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=161983,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=9054,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=914471,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=9054,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=946493,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=691,
+ ["unit"]=0
+ }
+ },
+ [6912]={
+ ["next_chapter"]=6913,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=601764,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=162476,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=9145,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=923616,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=9145,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=946493,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=691,
+ ["unit"]=0
+ }
+ },
+ [6913]={
+ ["next_chapter"]=6914,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=603602,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=162973,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=9236,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=932852,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=9236,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=946493,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=691,
+ ["unit"]=0
+ }
+ },
+ [6914]={
+ ["next_chapter"]=6915,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=605449,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=163471,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=9329,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=942180,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=9329,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=946493,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=691,
+ ["unit"]=0
+ }
+ },
+ [6915]={
+ ["next_chapter"]=6916,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=607304,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=163972,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=9422,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=951602,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=9422,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=946493,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=691,
+ ["unit"]=0
+ }
+ },
+ [6916]={
+ ["next_chapter"]=6917,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=609169,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=164476,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=9516,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=961118,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=9516,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=946493,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=691,
+ ["unit"]=0
+ }
+ },
+ [6917]={
+ ["next_chapter"]=6918,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=611042,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=164981,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=9611,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=970729,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=9611,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=946493,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=691,
+ ["unit"]=0
+ }
+ },
+ [6918]={
+ ["next_chapter"]=6919,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=612925,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=165490,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=9707,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=980437,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=9707,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=946493,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=691,
+ ["unit"]=0
+ }
+ },
+ [6919]={
+ ["next_chapter"]=6920,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=614816,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=166000,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=9804,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=990241,
+ ["unit"]=9
+ },
+ ["idle_gold"]={
+ ["value"]=9804,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=946493,
+ ["unit"]=9
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=691,
+ ["unit"]=0
+ }
+ },
+ [6920]={
+ ["next_chapter"]=6921,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=616717,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=166514,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=9902,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=9902,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1046,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=692,
+ ["unit"]=0
+ }
+ },
+ [6921]={
+ ["next_chapter"]=6922,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=618626,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=167029,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=10001,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1010,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=10001,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1046,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=692,
+ ["unit"]=0
+ }
+ },
+ [6922]={
+ ["next_chapter"]=6923,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=620545,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=167547,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=10101,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1020,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=10101,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1046,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=692,
+ ["unit"]=0
+ }
+ },
+ [6923]={
+ ["next_chapter"]=6924,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=622473,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=168068,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=10202,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1030,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=10202,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1046,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=692,
+ ["unit"]=0
+ }
+ },
+ [6924]={
+ ["next_chapter"]=6925,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=624410,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=168591,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=10304,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1041,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=10304,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1046,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=692,
+ ["unit"]=0
+ }
+ },
+ [6925]={
+ ["next_chapter"]=6926,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=626356,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=169116,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=10408,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1051,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=10408,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1046,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=692,
+ ["unit"]=0
+ }
+ },
+ [6926]={
+ ["next_chapter"]=6927,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=628312,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=169644,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=10512,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1062,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=10512,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1046,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=692,
+ ["unit"]=0
+ }
+ },
+ [6927]={
+ ["next_chapter"]=6928,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=630276,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=170175,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=10617,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1072,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=10617,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1046,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=692,
+ ["unit"]=0
+ }
+ },
+ [6928]={
+ ["next_chapter"]=6929,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=632250,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=170707,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=10723,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1083,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=10723,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1046,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=692,
+ ["unit"]=0
+ }
+ },
+ [6929]={
+ ["next_chapter"]=6930,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=634233,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=171243,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=10830,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1094,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=10830,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1046,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=692,
+ ["unit"]=0
+ }
+ },
+ [6930]={
+ ["next_chapter"]=6931,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=636225,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=171781,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=10938,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1105,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=10938,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1155,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=693,
+ ["unit"]=0
+ }
+ },
+ [6931]={
+ ["next_chapter"]=6932,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=638227,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=172321,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=11048,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1116,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=11048,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1155,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=693,
+ ["unit"]=0
+ }
+ },
+ [6932]={
+ ["next_chapter"]=6933,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=640238,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=172864,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=11158,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1127,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=11158,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1155,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=693,
+ ["unit"]=0
+ }
+ },
+ [6933]={
+ ["next_chapter"]=6934,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=642258,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=173410,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=11270,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1138,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=11270,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1155,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=693,
+ ["unit"]=0
+ }
+ },
+ [6934]={
+ ["next_chapter"]=6935,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=644287,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=173958,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=11383,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1150,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=11383,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1155,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=693,
+ ["unit"]=0
+ }
+ },
+ [6935]={
+ ["next_chapter"]=6936,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=646326,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=174508,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=11496,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1161,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=11496,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1155,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=693,
+ ["unit"]=0
+ }
+ },
+ [6936]={
+ ["next_chapter"]=6937,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=648375,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=175061,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=11611,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1173,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=11611,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1155,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=693,
+ ["unit"]=0
+ }
+ },
+ [6937]={
+ ["next_chapter"]=6938,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=650432,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=175617,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=11727,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1184,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=11727,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1155,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=693,
+ ["unit"]=0
+ }
+ },
+ [6938]={
+ ["next_chapter"]=6939,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=652500,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=176175,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=11845,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1196,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=11845,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1155,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=693,
+ ["unit"]=0
+ }
+ },
+ [6939]={
+ ["next_chapter"]=6940,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=654576,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=176736,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=11963,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1208,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=11963,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1155,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=693,
+ ["unit"]=0
+ }
+ },
+ [6940]={
+ ["next_chapter"]=6941,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=656662,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=177299,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=12083,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1220,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=12083,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1276,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=694,
+ ["unit"]=0
+ }
+ },
+ [6941]={
+ ["next_chapter"]=6942,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=658758,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=177865,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=12204,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1233,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=12204,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1276,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=694,
+ ["unit"]=0
+ }
+ },
+ [6942]={
+ ["next_chapter"]=6943,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=660863,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=178433,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=12326,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1245,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=12326,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1276,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=694,
+ ["unit"]=0
+ }
+ },
+ [6943]={
+ ["next_chapter"]=6944,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=662978,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=179004,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=12449,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1257,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=12449,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1276,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=694,
+ ["unit"]=0
+ }
+ },
+ [6944]={
+ ["next_chapter"]=6945,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=665102,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=179578,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=12573,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1270,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=12573,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1276,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=694,
+ ["unit"]=0
+ }
+ },
+ [6945]={
+ ["next_chapter"]=6946,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=667236,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=180154,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=12699,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1283,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=12699,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1276,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=694,
+ ["unit"]=0
+ }
+ },
+ [6946]={
+ ["next_chapter"]=6947,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=669380,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=180732,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=12826,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1295,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=12826,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1276,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=694,
+ ["unit"]=0
+ }
+ },
+ [6947]={
+ ["next_chapter"]=6948,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=671533,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=181314,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=12954,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1308,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=12954,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1276,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=694,
+ ["unit"]=0
+ }
+ },
+ [6948]={
+ ["next_chapter"]=6949,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=673695,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=181898,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=13084,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1321,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=13084,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1276,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=694,
+ ["unit"]=0
+ }
+ },
+ [6949]={
+ ["next_chapter"]=6950,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=675868,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=182484,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=13215,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1335,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=13215,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1276,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=694,
+ ["unit"]=0
+ }
+ },
+ [6950]={
+ ["next_chapter"]=6951,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=678050,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=183074,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=13347,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1348,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=13347,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1409,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=695,
+ ["unit"]=0
+ }
+ },
+ [6951]={
+ ["next_chapter"]=6952,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=680242,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=183665,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=13480,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1362,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=13480,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1409,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=695,
+ ["unit"]=0
+ }
+ },
+ [6952]={
+ ["next_chapter"]=6953,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=682443,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=184260,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=13615,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1375,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=13615,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1409,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=695,
+ ["unit"]=0
+ }
+ },
+ [6953]={
+ ["next_chapter"]=6954,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=684655,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=184857,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=13751,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1389,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=13751,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1409,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=695,
+ ["unit"]=0
+ }
+ },
+ [6954]={
+ ["next_chapter"]=6955,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=686876,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=185457,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=13889,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1403,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=13889,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1409,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=695,
+ ["unit"]=0
+ }
+ },
+ [6955]={
+ ["next_chapter"]=6956,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=689107,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=186059,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=14028,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1417,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=14028,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1409,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=695,
+ ["unit"]=0
+ }
+ },
+ [6956]={
+ ["next_chapter"]=6957,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=691348,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=186664,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=14168,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1431,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=14168,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1409,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=695,
+ ["unit"]=0
+ }
+ },
+ [6957]={
+ ["next_chapter"]=6958,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=693598,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=187272,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=14310,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1445,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=14310,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1409,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=695,
+ ["unit"]=0
+ }
+ },
+ [6958]={
+ ["next_chapter"]=6959,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=695859,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=187882,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=14453,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1460,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=14453,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1409,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=695,
+ ["unit"]=0
+ }
+ },
+ [6959]={
+ ["next_chapter"]=6960,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=698129,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=188495,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=14597,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1474,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=14597,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1409,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=695,
+ ["unit"]=0
+ }
+ },
+ [6960]={
+ ["next_chapter"]=6961,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=700410,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=189111,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=14743,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1489,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=14743,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1557,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=696,
+ ["unit"]=0
+ }
+ },
+ [6961]={
+ ["next_chapter"]=6962,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=702700,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=189729,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=14891,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1504,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=14891,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1557,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=696,
+ ["unit"]=0
+ }
+ },
+ [6962]={
+ ["next_chapter"]=6963,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=705000,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=190350,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=15040,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1519,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=15040,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1557,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=696,
+ ["unit"]=0
+ }
+ },
+ [6963]={
+ ["next_chapter"]=6964,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=707310,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=190974,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=15190,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1534,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=15190,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1557,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=696,
+ ["unit"]=0
+ }
+ },
+ [6964]={
+ ["next_chapter"]=6965,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=709630,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=191600,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=15342,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1550,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=15342,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1557,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=696,
+ ["unit"]=0
+ }
+ },
+ [6965]={
+ ["next_chapter"]=6966,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=711961,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=192229,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=15495,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1565,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=15495,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1557,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=696,
+ ["unit"]=0
+ }
+ },
+ [6966]={
+ ["next_chapter"]=6967,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=714301,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=192861,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=15650,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1581,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=15650,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1557,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=696,
+ ["unit"]=0
+ }
+ },
+ [6967]={
+ ["next_chapter"]=6968,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=716651,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=193496,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=15807,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1596,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=15807,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1557,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=696,
+ ["unit"]=0
+ }
+ },
+ [6968]={
+ ["next_chapter"]=6969,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=719012,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=194133,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=15965,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1612,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=15965,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1557,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=696,
+ ["unit"]=0
+ }
+ },
+ [6969]={
+ ["next_chapter"]=6970,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=721382,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=194773,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=16125,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1629,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=16125,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1557,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=696,
+ ["unit"]=0
+ }
+ },
+ [6970]={
+ ["next_chapter"]=6971,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=723763,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=195416,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=16286,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1645,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=16286,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1719,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=697,
+ ["unit"]=0
+ }
+ },
+ [6971]={
+ ["next_chapter"]=6972,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=726154,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=196061,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=16449,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1661,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=16449,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1719,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=697,
+ ["unit"]=0
+ }
+ },
+ [6972]={
+ ["next_chapter"]=6973,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=728555,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=196710,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=16613,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1678,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=16613,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1719,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=697,
+ ["unit"]=0
+ }
+ },
+ [6973]={
+ ["next_chapter"]=6974,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=730966,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=197361,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=16779,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1695,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=16779,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1719,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=697,
+ ["unit"]=0
+ }
+ },
+ [6974]={
+ ["next_chapter"]=6975,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=733387,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=198015,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=16947,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1712,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=16947,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1719,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=697,
+ ["unit"]=0
+ }
+ },
+ [6975]={
+ ["next_chapter"]=6976,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=735819,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=198671,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=17117,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1729,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=17117,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1719,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=697,
+ ["unit"]=0
+ }
+ },
+ [6976]={
+ ["next_chapter"]=6977,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=738261,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=199330,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=17288,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1746,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=17288,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1719,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=697,
+ ["unit"]=0
+ }
+ },
+ [6977]={
+ ["next_chapter"]=6978,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=740713,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=199992,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=17461,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1764,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=17461,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1719,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=697,
+ ["unit"]=0
+ }
+ },
+ [6978]={
+ ["next_chapter"]=6979,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=743175,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=200657,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=17635,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1781,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=17635,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1719,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=697,
+ ["unit"]=0
+ }
+ },
+ [6979]={
+ ["next_chapter"]=6980,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=745648,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=201325,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=17812,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1799,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=17812,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1719,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=697,
+ ["unit"]=0
+ }
+ },
+ [6980]={
+ ["next_chapter"]=6981,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=748131,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=201995,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=17990,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1817,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=17990,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1899,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=698,
+ ["unit"]=0
+ }
+ },
+ [6981]={
+ ["next_chapter"]=6982,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=750625,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=202669,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=18170,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1835,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=18170,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1899,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=698,
+ ["unit"]=0
+ }
+ },
+ [6982]={
+ ["next_chapter"]=6983,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=753129,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=203345,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=18351,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1853,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=18351,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1899,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=698,
+ ["unit"]=0
+ }
+ },
+ [6983]={
+ ["next_chapter"]=6984,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=755643,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=204024,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=18535,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1872,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=18535,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1899,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=698,
+ ["unit"]=0
+ }
+ },
+ [6984]={
+ ["next_chapter"]=6985,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=758168,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=204705,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=18720,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1891,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=18720,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1899,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=698,
+ ["unit"]=0
+ }
+ },
+ [6985]={
+ ["next_chapter"]=6986,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=760703,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=205390,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=18907,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1910,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=18907,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1899,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=698,
+ ["unit"]=0
+ }
+ },
+ [6986]={
+ ["next_chapter"]=6987,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=763249,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=206077,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=19096,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1929,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=19096,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1899,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=698,
+ ["unit"]=0
+ }
+ },
+ [6987]={
+ ["next_chapter"]=6988,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=765805,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=206767,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=19287,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1948,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=19287,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1899,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=698,
+ ["unit"]=0
+ }
+ },
+ [6988]={
+ ["next_chapter"]=6989,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=768371,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=207460,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=19480,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1968,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=19480,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1899,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=698,
+ ["unit"]=0
+ }
+ },
+ [6989]={
+ ["next_chapter"]=6990,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=770949,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=208156,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=19675,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1987,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=19675,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=1899,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=698,
+ ["unit"]=0
+ }
+ },
+ [6990]={
+ ["next_chapter"]=6991,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=773536,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=208855,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=19872,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2007,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=19872,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2098,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=699,
+ ["unit"]=0
+ }
+ },
+ [6991]={
+ ["next_chapter"]=6992,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=776135,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=209556,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=20071,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2027,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=20071,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2098,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=699,
+ ["unit"]=0
+ }
+ },
+ [6992]={
+ ["next_chapter"]=6993,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=778744,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=210261,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=20271,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2047,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=20271,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2098,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=699,
+ ["unit"]=0
+ }
+ },
+ [6993]={
+ ["next_chapter"]=6994,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=781363,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=210968,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=20474,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2068,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=20474,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2098,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=699,
+ ["unit"]=0
+ }
+ },
+ [6994]={
+ ["next_chapter"]=6995,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=783994,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=211678,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=20679,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2089,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=20679,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2098,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=699,
+ ["unit"]=0
+ }
+ },
+ [6995]={
+ ["next_chapter"]=6996,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=786635,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=212391,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=20885,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2109,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=20885,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2098,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=699,
+ ["unit"]=0
+ }
+ },
+ [6996]={
+ ["next_chapter"]=6997,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=789286,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=213107,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=21094,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2131,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=21094,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2098,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=699,
+ ["unit"]=0
+ }
+ },
+ [6997]={
+ ["next_chapter"]=6998,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=791949,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=213826,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=21305,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2152,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=21305,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2098,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=699,
+ ["unit"]=0
+ }
+ },
+ [6998]={
+ ["next_chapter"]=6999,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=794622,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=214548,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=21518,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2173,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=21518,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2098,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=699,
+ ["unit"]=0
+ }
+ },
+ [6999]={
+ ["next_chapter"]=7000,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=797305,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=215272,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=21733,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2195,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=21733,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2098,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=699,
+ ["unit"]=0
+ }
+ },
+ [7000]={
+ ["next_chapter"]=7001,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=800000,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224000,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=21951,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2217,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=21951,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2318,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=700,
+ ["unit"]=0
+ }
+ },
+ [7001]={
+ ["next_chapter"]=7002,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800000,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224000,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=22170,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2239,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=22170,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2318,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=700,
+ ["unit"]=0
+ }
+ },
+ [7002]={
+ ["next_chapter"]=7003,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800000,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224000,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=22392,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2262,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=22392,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2318,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=700,
+ ["unit"]=0
+ }
+ },
+ [7003]={
+ ["next_chapter"]=7004,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800000,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224000,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=22616,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2284,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=22616,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2318,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=700,
+ ["unit"]=0
+ }
+ },
+ [7004]={
+ ["next_chapter"]=7005,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800001,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224000,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=22842,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2307,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=22842,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2318,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=700,
+ ["unit"]=0
+ }
+ },
+ [7005]={
+ ["next_chapter"]=7006,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800001,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224000,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=23071,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2330,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=23071,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2318,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=700,
+ ["unit"]=0
+ }
+ },
+ [7006]={
+ ["next_chapter"]=7007,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800002,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224000,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=23301,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2353,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=23301,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2318,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=700,
+ ["unit"]=0
+ }
+ },
+ [7007]={
+ ["next_chapter"]=7008,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800003,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224001,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=23534,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2377,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=23534,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2318,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=700,
+ ["unit"]=0
+ }
+ },
+ [7008]={
+ ["next_chapter"]=7009,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800004,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224001,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=23770,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2401,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=23770,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2318,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=700,
+ ["unit"]=0
+ }
+ },
+ [7009]={
+ ["next_chapter"]=7010,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800006,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224002,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=24007,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2425,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=24007,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2318,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=700,
+ ["unit"]=0
+ }
+ },
+ [7010]={
+ ["next_chapter"]=7011,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=800008,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224002,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=24247,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2449,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=24247,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2560,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=701,
+ ["unit"]=0
+ }
+ },
+ [7011]={
+ ["next_chapter"]=7012,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800011,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224003,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=24490,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2473,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=24490,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2560,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=701,
+ ["unit"]=0
+ }
+ },
+ [7012]={
+ ["next_chapter"]=7013,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800014,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224004,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=24735,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2498,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=24735,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2560,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=701,
+ ["unit"]=0
+ }
+ },
+ [7013]={
+ ["next_chapter"]=7014,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800018,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224005,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=24982,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2523,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=24982,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2560,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=701,
+ ["unit"]=0
+ }
+ },
+ [7014]={
+ ["next_chapter"]=7015,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800022,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224006,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=25232,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2548,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=25232,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2560,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=701,
+ ["unit"]=0
+ }
+ },
+ [7015]={
+ ["next_chapter"]=7016,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800027,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224008,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=25484,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2574,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=25484,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2560,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=701,
+ ["unit"]=0
+ }
+ },
+ [7016]={
+ ["next_chapter"]=7017,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800033,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224009,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=25739,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2600,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=25739,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2560,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=701,
+ ["unit"]=0
+ }
+ },
+ [7017]={
+ ["next_chapter"]=7018,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800039,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224011,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=25996,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2626,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=25996,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2560,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=701,
+ ["unit"]=0
+ }
+ },
+ [7018]={
+ ["next_chapter"]=7019,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800047,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224013,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=26256,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2652,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=26256,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2560,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=701,
+ ["unit"]=0
+ }
+ },
+ [7019]={
+ ["next_chapter"]=7020,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800055,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224015,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=26519,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2678,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=26519,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2560,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=701,
+ ["unit"]=0
+ }
+ },
+ [7020]={
+ ["next_chapter"]=7021,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=800064,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224018,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=26784,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2705,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=26784,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2828,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=702,
+ ["unit"]=0
+ }
+ },
+ [7021]={
+ ["next_chapter"]=7022,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800074,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224021,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=27052,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2732,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=27052,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2828,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=702,
+ ["unit"]=0
+ }
+ },
+ [7022]={
+ ["next_chapter"]=7023,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800085,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224024,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=27323,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2760,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=27323,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2828,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=702,
+ ["unit"]=0
+ }
+ },
+ [7023]={
+ ["next_chapter"]=7024,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800097,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224027,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=27596,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2787,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=27596,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2828,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=702,
+ ["unit"]=0
+ }
+ },
+ [7024]={
+ ["next_chapter"]=7025,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800111,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224031,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=27872,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2815,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=27872,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2828,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=702,
+ ["unit"]=0
+ }
+ },
+ [7025]={
+ ["next_chapter"]=7026,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800125,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224035,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=28150,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2843,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=28150,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2828,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=702,
+ ["unit"]=0
+ }
+ },
+ [7026]={
+ ["next_chapter"]=7027,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800141,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224039,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=28432,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2872,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=28432,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2828,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=702,
+ ["unit"]=0
+ }
+ },
+ [7027]={
+ ["next_chapter"]=7028,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800157,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224044,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=28716,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2900,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=28716,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2828,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=702,
+ ["unit"]=0
+ }
+ },
+ [7028]={
+ ["next_chapter"]=7029,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800176,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224049,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=29003,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2929,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=29003,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2828,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=702,
+ ["unit"]=0
+ }
+ },
+ [7029]={
+ ["next_chapter"]=7030,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800195,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224055,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=29293,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2959,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=29293,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=2828,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=702,
+ ["unit"]=0
+ }
+ },
+ [7030]={
+ ["next_chapter"]=7031,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=800216,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224060,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=29586,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2988,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=29586,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3124,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=703,
+ ["unit"]=0
+ }
+ },
+ [7031]={
+ ["next_chapter"]=7032,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800238,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224067,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=29882,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3018,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=29882,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3124,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=703,
+ ["unit"]=0
+ }
+ },
+ [7032]={
+ ["next_chapter"]=7033,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800262,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224073,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=30181,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3048,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=30181,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3124,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=703,
+ ["unit"]=0
+ }
+ },
+ [7033]={
+ ["next_chapter"]=7034,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800287,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224080,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=30483,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3079,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=30483,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3124,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=703,
+ ["unit"]=0
+ }
+ },
+ [7034]={
+ ["next_chapter"]=7035,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800314,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224088,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=30788,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3110,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=30788,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3124,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=703,
+ ["unit"]=0
+ }
+ },
+ [7035]={
+ ["next_chapter"]=7036,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800343,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224096,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=31096,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3141,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=31096,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3124,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=703,
+ ["unit"]=0
+ }
+ },
+ [7036]={
+ ["next_chapter"]=7037,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800373,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224105,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=31407,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3172,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=31407,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3124,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=703,
+ ["unit"]=0
+ }
+ },
+ [7037]={
+ ["next_chapter"]=7038,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800405,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224113,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=31721,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3204,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=31721,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3124,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=703,
+ ["unit"]=0
+ }
+ },
+ [7038]={
+ ["next_chapter"]=7039,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800439,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224123,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=32038,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3236,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=32038,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3124,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=703,
+ ["unit"]=0
+ }
+ },
+ [7039]={
+ ["next_chapter"]=7040,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800475,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224133,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=32358,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3268,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=32358,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3124,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=703,
+ ["unit"]=0
+ }
+ },
+ [7040]={
+ ["next_chapter"]=7041,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=800512,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224143,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=32682,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3301,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=32682,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3451,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=704,
+ ["unit"]=0
+ }
+ },
+ [7041]={
+ ["next_chapter"]=7042,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800551,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224154,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=33009,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3334,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=33009,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3451,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=704,
+ ["unit"]=0
+ }
+ },
+ [7042]={
+ ["next_chapter"]=7043,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800593,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224166,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=33339,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3367,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=33339,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3451,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=704,
+ ["unit"]=0
+ }
+ },
+ [7043]={
+ ["next_chapter"]=7044,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800636,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224178,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=33672,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3401,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=33672,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3451,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=704,
+ ["unit"]=0
+ }
+ },
+ [7044]={
+ ["next_chapter"]=7045,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800681,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224191,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=34009,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3435,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=34009,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3451,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=704,
+ ["unit"]=0
+ }
+ },
+ [7045]={
+ ["next_chapter"]=7046,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800729,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224204,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=34349,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3469,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=34349,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3451,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=704,
+ ["unit"]=0
+ }
+ },
+ [7046]={
+ ["next_chapter"]=7047,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800779,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224218,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=34692,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3504,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=34692,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3451,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=704,
+ ["unit"]=0
+ }
+ },
+ [7047]={
+ ["next_chapter"]=7048,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800831,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224233,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=35039,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3539,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=35039,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3451,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=704,
+ ["unit"]=0
+ }
+ },
+ [7048]={
+ ["next_chapter"]=7049,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800885,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224248,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=35390,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3574,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=35390,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3451,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=704,
+ ["unit"]=0
+ }
+ },
+ [7049]={
+ ["next_chapter"]=7050,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800941,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224264,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=35744,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3610,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=35744,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3451,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=704,
+ ["unit"]=0
+ }
+ },
+ [7050]={
+ ["next_chapter"]=7051,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=801000,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224280,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=36101,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3646,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=36101,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3812,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=705,
+ ["unit"]=0
+ }
+ },
+ [7051]={
+ ["next_chapter"]=7052,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=801061,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224297,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=36462,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3683,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=36462,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3812,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=705,
+ ["unit"]=0
+ }
+ },
+ [7052]={
+ ["next_chapter"]=7053,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=801125,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224315,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=36827,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3719,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=36827,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3812,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=705,
+ ["unit"]=0
+ }
+ },
+ [7053]={
+ ["next_chapter"]=7054,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=801191,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224333,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=37195,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3757,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=37195,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3812,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=705,
+ ["unit"]=0
+ }
+ },
+ [7054]={
+ ["next_chapter"]=7055,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=801260,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224353,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=37567,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3794,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=37567,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3812,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=705,
+ ["unit"]=0
+ }
+ },
+ [7055]={
+ ["next_chapter"]=7056,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=801331,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224373,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=37943,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3832,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=37943,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3812,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=705,
+ ["unit"]=0
+ }
+ },
+ [7056]={
+ ["next_chapter"]=7057,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=801405,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224393,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=38322,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3871,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=38322,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3812,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=705,
+ ["unit"]=0
+ }
+ },
+ [7057]={
+ ["next_chapter"]=7058,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=801482,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224415,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=38705,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3909,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=38705,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3812,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=705,
+ ["unit"]=0
+ }
+ },
+ [7058]={
+ ["next_chapter"]=7059,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=801561,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224437,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=39092,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3948,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=39092,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3812,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=705,
+ ["unit"]=0
+ }
+ },
+ [7059]={
+ ["next_chapter"]=7060,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=801643,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224460,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=39483,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3988,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=39483,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=3812,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=705,
+ ["unit"]=0
+ }
+ },
+ [7060]={
+ ["next_chapter"]=7061,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=801728,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224484,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=39878,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4028,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=39878,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=4210,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=706,
+ ["unit"]=0
+ }
+ },
+ [7061]={
+ ["next_chapter"]=7062,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=801816,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224508,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=40277,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4068,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=40277,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=4210,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=706,
+ ["unit"]=0
+ }
+ },
+ [7062]={
+ ["next_chapter"]=7063,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=801907,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224534,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=40680,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4109,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=40680,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=4210,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=706,
+ ["unit"]=0
+ }
+ },
+ [7063]={
+ ["next_chapter"]=7064,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=802000,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224560,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=41086,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4150,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=41086,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=4210,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=706,
+ ["unit"]=0
+ }
+ },
+ [7064]={
+ ["next_chapter"]=7065,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=802097,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224587,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=41497,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4191,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=41497,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=4210,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=706,
+ ["unit"]=0
+ }
+ },
+ [7065]={
+ ["next_chapter"]=7066,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=802197,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224615,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=41912,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4233,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=41912,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=4210,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=706,
+ ["unit"]=0
+ }
+ },
+ [7066]={
+ ["next_chapter"]=7067,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=802300,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224644,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=42331,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4275,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=42331,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=4210,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=706,
+ ["unit"]=0
+ }
+ },
+ [7067]={
+ ["next_chapter"]=7068,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=802406,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224674,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=42755,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4318,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=42755,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=4210,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=706,
+ ["unit"]=0
+ }
+ },
+ [7068]={
+ ["next_chapter"]=7069,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=802515,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224704,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=43182,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4361,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=43182,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=4210,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=706,
+ ["unit"]=0
+ }
+ },
+ [7069]={
+ ["next_chapter"]=7070,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=802628,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224736,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=43614,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4405,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=43614,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=4210,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=706,
+ ["unit"]=0
+ }
+ },
+ [7070]={
+ ["next_chapter"]=7071,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=802744,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224768,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=44050,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4449,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=44050,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=4651,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=707,
+ ["unit"]=0
+ }
+ },
+ [7071]={
+ ["next_chapter"]=7072,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=802863,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224802,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=44491,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4494,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=44491,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=4651,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=707,
+ ["unit"]=0
+ }
+ },
+ [7072]={
+ ["next_chapter"]=7073,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=802986,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224836,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=44936,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4538,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=44936,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=4651,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=707,
+ ["unit"]=0
+ }
+ },
+ [7073]={
+ ["next_chapter"]=7074,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=803112,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224871,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=45385,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4584,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=45385,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=4651,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=707,
+ ["unit"]=0
+ }
+ },
+ [7074]={
+ ["next_chapter"]=7075,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=803242,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224908,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=45839,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4630,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=45839,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=4651,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=707,
+ ["unit"]=0
+ }
+ },
+ [7075]={
+ ["next_chapter"]=7076,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=803375,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224945,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=46297,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4676,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=46297,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=4651,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=707,
+ ["unit"]=0
+ }
+ },
+ [7076]={
+ ["next_chapter"]=7077,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=803512,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=224983,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=46760,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4723,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=46760,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=4651,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=707,
+ ["unit"]=0
+ }
+ },
+ [7077]={
+ ["next_chapter"]=7078,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=803652,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=225023,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=47228,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4770,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=47228,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=4651,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=707,
+ ["unit"]=0
+ }
+ },
+ [7078]={
+ ["next_chapter"]=7079,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=803796,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=225063,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=47700,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4818,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=47700,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=4651,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=707,
+ ["unit"]=0
+ }
+ },
+ [7079]={
+ ["next_chapter"]=7080,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=803944,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=225104,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=48177,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4866,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=48177,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=4651,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=707,
+ ["unit"]=0
+ }
+ },
+ [7080]={
+ ["next_chapter"]=7081,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=804096,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=225147,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=48659,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4915,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=48659,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=5137,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=708,
+ ["unit"]=0
+ }
+ },
+ [7081]={
+ ["next_chapter"]=7082,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=804252,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=225190,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=49145,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4964,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=49145,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=5137,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=708,
+ ["unit"]=0
+ }
+ },
+ [7082]={
+ ["next_chapter"]=7083,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=804411,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=225235,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=49637,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5013,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=49637,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=5137,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=708,
+ ["unit"]=0
+ }
+ },
+ [7083]={
+ ["next_chapter"]=7084,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=804574,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=225281,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=50133,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5063,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=50133,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=5137,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=708,
+ ["unit"]=0
+ }
+ },
+ [7084]={
+ ["next_chapter"]=7085,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=804742,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=225328,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=50634,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5114,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=50634,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=5137,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=708,
+ ["unit"]=0
+ }
+ },
+ [7085]={
+ ["next_chapter"]=7086,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=804913,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=225376,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=51141,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5165,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=51141,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=5137,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=708,
+ ["unit"]=0
+ }
+ },
+ [7086]={
+ ["next_chapter"]=7087,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=805088,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=225425,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=51652,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5217,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=51652,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=5137,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=708,
+ ["unit"]=0
+ }
+ },
+ [7087]={
+ ["next_chapter"]=7088,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=805268,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=225475,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=52169,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5269,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=52169,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=5137,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=708,
+ ["unit"]=0
+ }
+ },
+ [7088]={
+ ["next_chapter"]=7089,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=805452,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=225526,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=52690,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5322,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=52690,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=5137,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=708,
+ ["unit"]=0
+ }
+ },
+ [7089]={
+ ["next_chapter"]=7090,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=805640,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=225579,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=53217,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5375,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=53217,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=5137,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=708,
+ ["unit"]=0
+ }
+ },
+ [7090]={
+ ["next_chapter"]=7091,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=805832,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=225633,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=53750,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5429,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=53750,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=5675,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=709,
+ ["unit"]=0
+ }
+ },
+ [7091]={
+ ["next_chapter"]=7092,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=806029,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=225688,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=54287,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5483,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=54287,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=5675,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=709,
+ ["unit"]=0
+ }
+ },
+ [7092]={
+ ["next_chapter"]=7093,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=806230,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=225744,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=54830,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5538,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=54830,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=5675,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=709,
+ ["unit"]=0
+ }
+ },
+ [7093]={
+ ["next_chapter"]=7094,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=806435,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=225802,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=55378,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5593,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=55378,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=5675,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=709,
+ ["unit"]=0
+ }
+ },
+ [7094]={
+ ["next_chapter"]=7095,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=806645,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=225861,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=55932,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5649,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=55932,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=5675,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=709,
+ ["unit"]=0
+ }
+ },
+ [7095]={
+ ["next_chapter"]=7096,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=806859,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=225921,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=56491,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5706,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=56491,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=5675,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=709,
+ ["unit"]=0
+ }
+ },
+ [7096]={
+ ["next_chapter"]=7097,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=807078,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=225982,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=57056,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5763,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=57056,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=5675,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=709,
+ ["unit"]=0
+ }
+ },
+ [7097]={
+ ["next_chapter"]=7098,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=807301,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=226044,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=57627,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5820,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=57627,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=5675,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=709,
+ ["unit"]=0
+ }
+ },
+ [7098]={
+ ["next_chapter"]=7099,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=807530,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=226108,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=58203,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5879,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=58203,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=5675,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=709,
+ ["unit"]=0
+ }
+ },
+ [7099]={
+ ["next_chapter"]=7100,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=807762,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=226173,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=58785,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5937,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=58785,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=5675,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=709,
+ ["unit"]=0
+ }
+ },
+ [7100]={
+ ["next_chapter"]=7101,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=808000,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=226240,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=59373,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5997,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=59373,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=54,
+ ["grasp_gold_reward"]={
+ ["value"]=6269,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=710,
+ ["unit"]=0
+ }
+ },
+ [7101]={
+ ["next_chapter"]=7102,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=808242,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=226308,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=59967,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6057,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=59967,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=6269,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=710,
+ ["unit"]=0
+ }
+ },
+ [7102]={
+ ["next_chapter"]=7103,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=808490,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=226377,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=60566,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6117,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=60566,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=6269,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=710,
+ ["unit"]=0
+ }
+ },
+ [7103]={
+ ["next_chapter"]=7104,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=808742,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=226448,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=61172,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6178,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=61172,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=6269,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=710,
+ ["unit"]=0
+ }
+ },
+ [7104]={
+ ["next_chapter"]=7105,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=808999,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=226520,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=61784,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6240,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=61784,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=6269,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=710,
+ ["unit"]=0
+ }
+ },
+ [7105]={
+ ["next_chapter"]=7106,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=809261,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=226593,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=62402,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6303,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=62402,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=6269,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=710,
+ ["unit"]=0
+ }
+ },
+ [7106]={
+ ["next_chapter"]=7107,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=809528,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=226668,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=63026,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6366,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=63026,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=6269,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=710,
+ ["unit"]=0
+ }
+ },
+ [7107]={
+ ["next_chapter"]=7108,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=809800,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=226744,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=63656,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6429,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=63656,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=6269,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=710,
+ ["unit"]=0
+ }
+ },
+ [7108]={
+ ["next_chapter"]=7109,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=810078,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=226822,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=64292,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6494,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=64292,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=6269,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=710,
+ ["unit"]=0
+ }
+ },
+ [7109]={
+ ["next_chapter"]=7110,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=810360,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=226901,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=64935,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6558,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=64935,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=6269,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=710,
+ ["unit"]=0
+ }
+ },
+ [7110]={
+ ["next_chapter"]=7111,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=810648,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=226981,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=65585,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6624,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=65585,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=6925,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=711,
+ ["unit"]=0
+ }
+ },
+ [7111]={
+ ["next_chapter"]=7112,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=810941,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=227063,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=66240,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6690,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=66240,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=6925,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=711,
+ ["unit"]=0
+ }
+ },
+ [7112]={
+ ["next_chapter"]=7113,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=811239,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=227147,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=66903,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6757,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=66903,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=6925,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=711,
+ ["unit"]=0
+ }
+ },
+ [7113]={
+ ["next_chapter"]=7114,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=811543,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=227232,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=67572,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6825,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=67572,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=6925,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=711,
+ ["unit"]=0
+ }
+ },
+ [7114]={
+ ["next_chapter"]=7115,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=811852,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=227319,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=68248,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6893,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=68248,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=6925,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=711,
+ ["unit"]=0
+ }
+ },
+ [7115]={
+ ["next_chapter"]=7116,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=812167,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=227407,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=68930,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6962,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=68930,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=6925,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=711,
+ ["unit"]=0
+ }
+ },
+ [7116]={
+ ["next_chapter"]=7117,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=812487,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=227496,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=69619,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7032,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=69619,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=6925,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=711,
+ ["unit"]=0
+ }
+ },
+ [7117]={
+ ["next_chapter"]=7118,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=812813,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=227588,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=70316,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7102,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=70316,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=6925,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=711,
+ ["unit"]=0
+ }
+ },
+ [7118]={
+ ["next_chapter"]=7119,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=813144,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=227680,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=71019,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7173,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=71019,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=6925,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=711,
+ ["unit"]=0
+ }
+ },
+ [7119]={
+ ["next_chapter"]=7120,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=813481,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=227775,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=71729,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7245,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=71729,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=6925,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=711,
+ ["unit"]=0
+ }
+ },
+ [7120]={
+ ["next_chapter"]=7121,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=813824,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=227871,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=72446,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7317,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=72446,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=7649,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=712,
+ ["unit"]=0
+ }
+ },
+ [7121]={
+ ["next_chapter"]=7122,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=814172,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=227968,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=73171,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7390,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=73171,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=7649,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=712,
+ ["unit"]=0
+ }
+ },
+ [7122]={
+ ["next_chapter"]=7123,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=814527,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=228067,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=73902,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7464,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=73902,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=7649,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=712,
+ ["unit"]=0
+ }
+ },
+ [7123]={
+ ["next_chapter"]=7124,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=814887,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=228168,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=74641,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7539,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=74641,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=7649,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=712,
+ ["unit"]=0
+ }
+ },
+ [7124]={
+ ["next_chapter"]=7125,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=815253,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=228271,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=75388,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7614,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=75388,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=7649,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=712,
+ ["unit"]=0
+ }
+ },
+ [7125]={
+ ["next_chapter"]=7126,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=815625,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=228375,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=76142,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7690,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=76142,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=7649,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=712,
+ ["unit"]=0
+ }
+ },
+ [7126]={
+ ["next_chapter"]=7127,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=816003,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=228481,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=76903,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7767,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=76903,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=7649,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=712,
+ ["unit"]=0
+ }
+ },
+ [7127]={
+ ["next_chapter"]=7128,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=816387,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=228588,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=77672,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7845,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=77672,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=7649,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=712,
+ ["unit"]=0
+ }
+ },
+ [7128]={
+ ["next_chapter"]=7129,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=816777,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=228698,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=78449,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7923,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=78449,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=7649,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=712,
+ ["unit"]=0
+ }
+ },
+ [7129]={
+ ["next_chapter"]=7130,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=817174,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=228809,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=79233,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8003,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=79233,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=7649,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=712,
+ ["unit"]=0
+ }
+ },
+ [7130]={
+ ["next_chapter"]=7131,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=817576,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=228921,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=80026,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8083,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=80026,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=8449,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=713,
+ ["unit"]=0
+ }
+ },
+ [7131]={
+ ["next_chapter"]=7132,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=817985,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=229036,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=80826,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8163,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=80826,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=8449,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=713,
+ ["unit"]=0
+ }
+ },
+ [7132]={
+ ["next_chapter"]=7133,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=818400,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=229152,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=81634,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8245,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=81634,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=8449,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=713,
+ ["unit"]=0
+ }
+ },
+ [7133]={
+ ["next_chapter"]=7134,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=818821,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=229270,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=82451,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8328,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=82451,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=8449,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=713,
+ ["unit"]=0
+ }
+ },
+ [7134]={
+ ["next_chapter"]=7135,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=819249,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=229390,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=83275,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8411,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=83275,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=8449,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=713,
+ ["unit"]=0
+ }
+ },
+ [7135]={
+ ["next_chapter"]=7136,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=819683,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=229511,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=84108,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8495,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=84108,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=8449,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=713,
+ ["unit"]=0
+ }
+ },
+ [7136]={
+ ["next_chapter"]=7137,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=820124,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=229635,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=84949,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8580,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=84949,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=8449,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=713,
+ ["unit"]=0
+ }
+ },
+ [7137]={
+ ["next_chapter"]=7138,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=820571,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=229760,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=85798,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8666,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=85798,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=8449,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=713,
+ ["unit"]=0
+ }
+ },
+ [7138]={
+ ["next_chapter"]=7139,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=821025,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=229887,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=86656,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8752,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=86656,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=8449,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=713,
+ ["unit"]=0
+ }
+ },
+ [7139]={
+ ["next_chapter"]=7140,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=821485,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=230016,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=87523,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8840,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=87523,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=8449,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=713,
+ ["unit"]=0
+ }
+ },
+ [7140]={
+ ["next_chapter"]=7141,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=821952,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=230147,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=88398,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8928,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=88398,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=9333,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=714,
+ ["unit"]=0
+ }
+ },
+ [7141]={
+ ["next_chapter"]=7142,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=822426,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=230279,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=89282,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9017,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=89282,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=9333,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=714,
+ ["unit"]=0
+ }
+ },
+ [7142]={
+ ["next_chapter"]=7143,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=822906,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=230414,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=90175,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9108,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=90175,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=9333,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=714,
+ ["unit"]=0
+ }
+ },
+ [7143]={
+ ["next_chapter"]=7144,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=823394,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=230550,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=91077,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9199,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=91077,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=9333,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=714,
+ ["unit"]=0
+ }
+ },
+ [7144]={
+ ["next_chapter"]=7145,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=823888,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=230689,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=91987,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9291,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=91987,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=9333,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=714,
+ ["unit"]=0
+ }
+ },
+ [7145]={
+ ["next_chapter"]=7146,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=824389,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=230829,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=92907,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9384,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=92907,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=9333,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=714,
+ ["unit"]=0
+ }
+ },
+ [7146]={
+ ["next_chapter"]=7147,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=824897,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=230971,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=93836,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9477,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=93836,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=9333,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=714,
+ ["unit"]=0
+ }
+ },
+ [7147]={
+ ["next_chapter"]=7148,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=825412,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=231115,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=94775,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9572,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=94775,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=9333,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=714,
+ ["unit"]=0
+ }
+ },
+ [7148]={
+ ["next_chapter"]=7149,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=825934,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=231262,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=95723,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9668,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=95723,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=9333,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=714,
+ ["unit"]=0
+ }
+ },
+ [7149]={
+ ["next_chapter"]=7150,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=826464,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=231410,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=96680,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9765,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=96680,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=9333,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=714,
+ ["unit"]=0
+ }
+ },
+ [7150]={
+ ["next_chapter"]=7151,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=827000,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=231560,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=97647,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9862,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=97647,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=10310,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=715,
+ ["unit"]=0
+ }
+ },
+ [7151]={
+ ["next_chapter"]=7152,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=827544,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=231712,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=98623,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9961,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=98623,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=10310,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=715,
+ ["unit"]=0
+ }
+ },
+ [7152]={
+ ["next_chapter"]=7153,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=828094,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=231866,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=99609,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10061,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=99609,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=10310,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=715,
+ ["unit"]=0
+ }
+ },
+ [7153]={
+ ["next_chapter"]=7154,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=828653,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=232023,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=100605,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10161,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=100605,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=10310,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=715,
+ ["unit"]=0
+ }
+ },
+ [7154]={
+ ["next_chapter"]=7155,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=829218,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=232181,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=101611,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10263,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=101611,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=10310,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=715,
+ ["unit"]=0
+ }
+ },
+ [7155]={
+ ["next_chapter"]=7156,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=829791,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=232341,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=102628,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10365,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=102628,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=10310,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=715,
+ ["unit"]=0
+ }
+ },
+ [7156]={
+ ["next_chapter"]=7157,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=830371,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=232504,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=103654,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10469,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=103654,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=10310,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=715,
+ ["unit"]=0
+ }
+ },
+ [7157]={
+ ["next_chapter"]=7158,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=830959,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=232669,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=104690,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10574,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=104690,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=10310,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=715,
+ ["unit"]=0
+ }
+ },
+ [7158]={
+ ["next_chapter"]=7159,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=831554,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=232835,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=105737,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10679,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=105737,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=10310,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=715,
+ ["unit"]=0
+ }
+ },
+ [7159]={
+ ["next_chapter"]=7160,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=832157,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=233004,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=106795,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10786,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=106795,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=10310,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=715,
+ ["unit"]=0
+ }
+ },
+ [7160]={
+ ["next_chapter"]=7161,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=832768,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=233175,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=107863,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10894,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=107863,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=11388,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=716,
+ ["unit"]=0
+ }
+ },
+ [7161]={
+ ["next_chapter"]=7162,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=833386,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=233348,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=108941,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11003,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=108941,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=11388,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=716,
+ ["unit"]=0
+ }
+ },
+ [7162]={
+ ["next_chapter"]=7163,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=834012,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=233523,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=110031,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11113,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=110031,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=11388,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=716,
+ ["unit"]=0
+ }
+ },
+ [7163]={
+ ["next_chapter"]=7164,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=834646,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=233701,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=111131,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11224,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=111131,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=11388,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=716,
+ ["unit"]=0
+ }
+ },
+ [7164]={
+ ["next_chapter"]=7165,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=835288,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=233881,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=112242,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11336,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=112242,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=11388,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=716,
+ ["unit"]=0
+ }
+ },
+ [7165]={
+ ["next_chapter"]=7166,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=835937,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=234062,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=113365,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11450,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=113365,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=11388,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=716,
+ ["unit"]=0
+ }
+ },
+ [7166]={
+ ["next_chapter"]=7167,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=836594,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=234246,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=114498,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11564,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=114498,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=11388,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=716,
+ ["unit"]=0
+ }
+ },
+ [7167]={
+ ["next_chapter"]=7168,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=837260,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=234433,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=115643,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11680,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=115643,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=11388,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=716,
+ ["unit"]=0
+ }
+ },
+ [7168]={
+ ["next_chapter"]=7169,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=837933,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=234621,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=116800,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11797,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=116800,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=11388,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=716,
+ ["unit"]=0
+ }
+ },
+ [7169]={
+ ["next_chapter"]=7170,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=838614,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=234812,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=117968,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11915,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=117968,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=11388,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=716,
+ ["unit"]=0
+ }
+ },
+ [7170]={
+ ["next_chapter"]=7171,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=839304,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=235005,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=119147,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12034,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=119147,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=12580,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=717,
+ ["unit"]=0
+ }
+ },
+ [7171]={
+ ["next_chapter"]=7172,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=840002,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=235200,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=120339,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12154,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=120339,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=12580,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=717,
+ ["unit"]=0
+ }
+ },
+ [7172]={
+ ["next_chapter"]=7173,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=840708,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=235398,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=121542,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12276,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=121542,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=12580,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=717,
+ ["unit"]=0
+ }
+ },
+ [7173]={
+ ["next_chapter"]=7174,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=841422,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=235598,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=122758,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12399,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=122758,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=12580,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=717,
+ ["unit"]=0
+ }
+ },
+ [7174]={
+ ["next_chapter"]=7175,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=842144,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=235800,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=123985,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12523,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=123985,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=12580,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=717,
+ ["unit"]=0
+ }
+ },
+ [7175]={
+ ["next_chapter"]=7176,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=842875,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=236005,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=125225,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12648,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=125225,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=12580,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=717,
+ ["unit"]=0
+ }
+ },
+ [7176]={
+ ["next_chapter"]=7177,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=843614,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=236212,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=126477,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12774,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=126477,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=12580,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=717,
+ ["unit"]=0
+ }
+ },
+ [7177]={
+ ["next_chapter"]=7178,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=844362,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=236421,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=127742,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12902,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=127742,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=12580,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=717,
+ ["unit"]=0
+ }
+ },
+ [7178]={
+ ["next_chapter"]=7179,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=845118,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=236633,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=129020,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13031,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=129020,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=12580,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=717,
+ ["unit"]=0
+ }
+ },
+ [7179]={
+ ["next_chapter"]=7180,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=845883,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=236847,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=130310,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13161,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=130310,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=12580,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=717,
+ ["unit"]=0
+ }
+ },
+ [7180]={
+ ["next_chapter"]=7181,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=846656,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=237064,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=131613,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13293,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=131613,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=13896,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=718,
+ ["unit"]=0
+ }
+ },
+ [7181]={
+ ["next_chapter"]=7182,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=847438,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=237283,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=132929,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13426,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=132929,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=13896,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=718,
+ ["unit"]=0
+ }
+ },
+ [7182]={
+ ["next_chapter"]=7183,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=848229,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=237504,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=134258,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13560,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=134258,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=13896,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=718,
+ ["unit"]=0
+ }
+ },
+ [7183]={
+ ["next_chapter"]=7184,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=849028,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=237728,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=135601,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13696,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=135601,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=13896,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=718,
+ ["unit"]=0
+ }
+ },
+ [7184]={
+ ["next_chapter"]=7185,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=849836,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=237954,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=136957,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13833,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=136957,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=13896,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=718,
+ ["unit"]=0
+ }
+ },
+ [7185]={
+ ["next_chapter"]=7186,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=850653,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=238183,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=138326,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13971,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=138326,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=13896,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=718,
+ ["unit"]=0
+ }
+ },
+ [7186]={
+ ["next_chapter"]=7187,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=851479,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=238414,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=139710,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14111,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=139710,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=13896,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=718,
+ ["unit"]=0
+ }
+ },
+ [7187]={
+ ["next_chapter"]=7188,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=852314,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=238648,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=141107,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14252,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=141107,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=13896,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=718,
+ ["unit"]=0
+ }
+ },
+ [7188]={
+ ["next_chapter"]=7189,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=853157,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=238884,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=142518,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14394,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=142518,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=13896,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=718,
+ ["unit"]=0
+ }
+ },
+ [7189]={
+ ["next_chapter"]=7190,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=854010,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=239123,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=143943,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14538,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=143943,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=13896,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=718,
+ ["unit"]=0
+ }
+ },
+ [7190]={
+ ["next_chapter"]=7191,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=854872,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=239364,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=145382,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14684,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=145382,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=15350,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=719,
+ ["unit"]=0
+ }
+ },
+ [7191]={
+ ["next_chapter"]=7192,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=855743,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=239608,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=146836,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14830,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=146836,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=15350,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=719,
+ ["unit"]=0
+ }
+ },
+ [7192]={
+ ["next_chapter"]=7193,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=856623,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=239854,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=148305,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14979,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=148305,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=15350,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=719,
+ ["unit"]=0
+ }
+ },
+ [7193]={
+ ["next_chapter"]=7194,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=857512,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=240103,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=149788,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15129,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=149788,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=15350,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=719,
+ ["unit"]=0
+ }
+ },
+ [7194]={
+ ["next_chapter"]=7195,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=858411,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=240355,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=151286,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15280,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=151286,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=15350,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=719,
+ ["unit"]=0
+ }
+ },
+ [7195]={
+ ["next_chapter"]=7196,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=859319,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=240609,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=152798,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15433,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=152798,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=15350,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=719,
+ ["unit"]=0
+ }
+ },
+ [7196]={
+ ["next_chapter"]=7197,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=860236,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=240866,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=154326,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15587,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=154326,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=15350,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=719,
+ ["unit"]=0
+ }
+ },
+ [7197]={
+ ["next_chapter"]=7198,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=861163,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=241126,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=155870,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15743,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=155870,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=15350,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=719,
+ ["unit"]=0
+ }
+ },
+ [7198]={
+ ["next_chapter"]=7199,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=862099,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=241388,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=157428,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15900,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=157428,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=15350,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=719,
+ ["unit"]=0
+ }
+ },
+ [7199]={
+ ["next_chapter"]=7200,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=863045,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=241653,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=159003,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16059,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=159003,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=15350,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=719,
+ ["unit"]=0
+ }
+ },
+ [7200]={
+ ["next_chapter"]=7201,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=864000,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=241920,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=160593,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16220,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=160593,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=16956,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=720,
+ ["unit"]=0
+ }
+ },
+ [7201]={
+ ["next_chapter"]=7202,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=864965,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=242190,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=162199,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16382,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=162199,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=16956,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=720,
+ ["unit"]=0
+ }
+ },
+ [7202]={
+ ["next_chapter"]=7203,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=865939,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=242463,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=163821,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16546,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=163821,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=16956,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=720,
+ ["unit"]=0
+ }
+ },
+ [7203]={
+ ["next_chapter"]=7204,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=866923,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=242739,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=165459,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16711,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=165459,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=16956,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=720,
+ ["unit"]=0
+ }
+ },
+ [7204]={
+ ["next_chapter"]=7205,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=867917,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=243017,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=167113,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16878,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=167113,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=16956,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=720,
+ ["unit"]=0
+ }
+ },
+ [7205]={
+ ["next_chapter"]=7206,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=868921,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=243298,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=168784,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17047,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=168784,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=16956,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=720,
+ ["unit"]=0
+ }
+ },
+ [7206]={
+ ["next_chapter"]=7207,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=869935,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=243582,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=170472,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17218,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=170472,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=16956,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=720,
+ ["unit"]=0
+ }
+ },
+ [7207]={
+ ["next_chapter"]=7208,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=870958,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=243868,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=172177,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17390,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=172177,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=16956,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=720,
+ ["unit"]=0
+ }
+ },
+ [7208]={
+ ["next_chapter"]=7209,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=871991,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=244158,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=173899,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17564,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=173899,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=16956,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=720,
+ ["unit"]=0
+ }
+ },
+ [7209]={
+ ["next_chapter"]=7210,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=873035,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=244450,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=175638,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17739,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=175638,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=16956,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=720,
+ ["unit"]=0
+ }
+ },
+ [7210]={
+ ["next_chapter"]=7211,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=874088,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=244745,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=177394,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17917,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=177394,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=18730,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=721,
+ ["unit"]=0
+ }
+ },
+ [7211]={
+ ["next_chapter"]=7212,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=875151,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=245042,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=179168,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18096,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=179168,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=18730,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=721,
+ ["unit"]=0
+ }
+ },
+ [7212]={
+ ["next_chapter"]=7213,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=876225,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=245343,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=180960,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18277,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=180960,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=18730,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=721,
+ ["unit"]=0
+ }
+ },
+ [7213]={
+ ["next_chapter"]=7214,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=877309,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=245646,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=182769,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18460,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=182769,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=18730,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=721,
+ ["unit"]=0
+ }
+ },
+ [7214]={
+ ["next_chapter"]=7215,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=878403,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=245953,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=184597,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18644,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=184597,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=18730,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=721,
+ ["unit"]=0
+ }
+ },
+ [7215]={
+ ["next_chapter"]=7216,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=879507,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=246262,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=186443,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18831,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=186443,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=18730,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=721,
+ ["unit"]=0
+ }
+ },
+ [7216]={
+ ["next_chapter"]=7217,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=880622,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=246574,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=188307,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19019,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=188307,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=18730,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=721,
+ ["unit"]=0
+ }
+ },
+ [7217]={
+ ["next_chapter"]=7218,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=881747,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=246889,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=190191,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19209,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=190191,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=18730,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=721,
+ ["unit"]=0
+ }
+ },
+ [7218]={
+ ["next_chapter"]=7219,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=882882,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=247207,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=192092,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19401,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=192092,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=18730,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=721,
+ ["unit"]=0
+ }
+ },
+ [7219]={
+ ["next_chapter"]=7220,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=884028,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=247528,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=194013,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19595,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=194013,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=18730,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=721,
+ ["unit"]=0
+ }
+ },
+ [7220]={
+ ["next_chapter"]=7221,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=885184,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=247852,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=195954,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19791,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=195954,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=20689,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=722,
+ ["unit"]=0
+ }
+ },
+ [7221]={
+ ["next_chapter"]=7222,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=886351,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=248178,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=197913,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19989,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=197913,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=20689,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=722,
+ ["unit"]=0
+ }
+ },
+ [7222]={
+ ["next_chapter"]=7223,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=887528,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=248508,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=199892,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20189,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=199892,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=20689,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=722,
+ ["unit"]=0
+ }
+ },
+ [7223]={
+ ["next_chapter"]=7224,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=888717,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=248841,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=201891,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20391,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=201891,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=20689,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=722,
+ ["unit"]=0
+ }
+ },
+ [7224]={
+ ["next_chapter"]=7225,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=889915,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=249176,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=203910,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20595,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=203910,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=20689,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=722,
+ ["unit"]=0
+ }
+ },
+ [7225]={
+ ["next_chapter"]=7226,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=891125,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=249515,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=205949,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20801,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=205949,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=20689,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=722,
+ ["unit"]=0
+ }
+ },
+ [7226]={
+ ["next_chapter"]=7227,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=892345,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=249857,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=208009,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21009,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=208009,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=20689,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=722,
+ ["unit"]=0
+ }
+ },
+ [7227]={
+ ["next_chapter"]=7228,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=893577,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=250201,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=210089,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21219,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=210089,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=20689,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=722,
+ ["unit"]=0
+ }
+ },
+ [7228]={
+ ["next_chapter"]=7229,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=894819,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=250549,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=212190,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21431,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=212190,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=20689,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=722,
+ ["unit"]=0
+ }
+ },
+ [7229]={
+ ["next_chapter"]=7230,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=896072,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=250900,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=214311,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21645,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=214311,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=20689,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=722,
+ ["unit"]=0
+ }
+ },
+ [7230]={
+ ["next_chapter"]=7231,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=897336,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=251254,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=216455,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21862,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=216455,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=22854,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=723,
+ ["unit"]=0
+ }
+ },
+ [7231]={
+ ["next_chapter"]=7232,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=898611,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=251611,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=218619,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22081,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=218619,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=22854,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=723,
+ ["unit"]=0
+ }
+ },
+ [7232]={
+ ["next_chapter"]=7233,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=899897,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=251971,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=220805,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22301,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=220805,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=22854,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=723,
+ ["unit"]=0
+ }
+ },
+ [7233]={
+ ["next_chapter"]=7234,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=901195,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=252335,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=223013,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22524,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=223013,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=22854,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=723,
+ ["unit"]=0
+ }
+ },
+ [7234]={
+ ["next_chapter"]=7235,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=902503,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=252701,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=225244,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22750,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=225244,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=22854,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=723,
+ ["unit"]=0
+ }
+ },
+ [7235]={
+ ["next_chapter"]=7236,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=903823,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=253070,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=227496,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22977,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=227496,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=22854,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=723,
+ ["unit"]=0
+ }
+ },
+ [7236]={
+ ["next_chapter"]=7237,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=905154,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=253443,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=229771,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23207,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=229771,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=22854,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=723,
+ ["unit"]=0
+ }
+ },
+ [7237]={
+ ["next_chapter"]=7238,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=906496,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=253819,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=232069,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23439,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=232069,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=22854,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=723,
+ ["unit"]=0
+ }
+ },
+ [7238]={
+ ["next_chapter"]=7239,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=907850,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=254198,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=234389,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23673,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=234389,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=22854,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=723,
+ ["unit"]=0
+ }
+ },
+ [7239]={
+ ["next_chapter"]=7240,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=909215,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=254580,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=236733,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23910,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=236733,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=22854,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=723,
+ ["unit"]=0
+ }
+ },
+ [7240]={
+ ["next_chapter"]=7241,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=910592,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=254966,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=239101,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24149,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=239101,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=25245,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=724,
+ ["unit"]=0
+ }
+ },
+ [7241]={
+ ["next_chapter"]=7242,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=911980,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=255354,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=241492,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24391,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=241492,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=25245,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=724,
+ ["unit"]=0
+ }
+ },
+ [7242]={
+ ["next_chapter"]=7243,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=913380,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=255746,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=243906,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24635,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=243906,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=25245,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=724,
+ ["unit"]=0
+ }
+ },
+ [7243]={
+ ["next_chapter"]=7244,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=914791,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=256142,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=246346,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24881,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=246346,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=25245,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=724,
+ ["unit"]=0
+ }
+ },
+ [7244]={
+ ["next_chapter"]=7245,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=916214,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=256540,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=248809,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25130,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=248809,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=25245,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=724,
+ ["unit"]=0
+ }
+ },
+ [7245]={
+ ["next_chapter"]=7246,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=917649,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=256942,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=251297,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25381,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=251297,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=25245,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=724,
+ ["unit"]=0
+ }
+ },
+ [7246]={
+ ["next_chapter"]=7247,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=919095,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=257347,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=253810,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25635,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=253810,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=25245,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=724,
+ ["unit"]=0
+ }
+ },
+ [7247]={
+ ["next_chapter"]=7248,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=920554,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=257755,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=256348,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25891,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=256348,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=25245,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=724,
+ ["unit"]=0
+ }
+ },
+ [7248]={
+ ["next_chapter"]=7249,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=922024,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=258167,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=258912,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26150,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=258912,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=25245,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=724,
+ ["unit"]=0
+ }
+ },
+ [7249]={
+ ["next_chapter"]=7250,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=923506,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=258582,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=261501,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26412,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=261501,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=25245,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=724,
+ ["unit"]=0
+ }
+ },
+ [7250]={
+ ["next_chapter"]=7251,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=925000,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=259000,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=264116,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26676,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=264116,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=27886,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=725,
+ ["unit"]=0
+ }
+ },
+ [7251]={
+ ["next_chapter"]=7252,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=926506,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=259422,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=266757,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26942,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=266757,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=27886,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=725,
+ ["unit"]=0
+ }
+ },
+ [7252]={
+ ["next_chapter"]=7253,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=928024,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=259847,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=269424,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27212,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=269424,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=27886,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=725,
+ ["unit"]=0
+ }
+ },
+ [7253]={
+ ["next_chapter"]=7254,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=929554,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=260275,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=272119,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27484,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=272119,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=27886,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=725,
+ ["unit"]=0
+ }
+ },
+ [7254]={
+ ["next_chapter"]=7255,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=931097,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=260707,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=274840,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27759,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=274840,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=27886,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=725,
+ ["unit"]=0
+ }
+ },
+ [7255]={
+ ["next_chapter"]=7256,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=932651,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=261142,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=277588,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28036,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=277588,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=27886,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=725,
+ ["unit"]=0
+ }
+ },
+ [7256]={
+ ["next_chapter"]=7257,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=934218,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=261581,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=280364,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28317,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=280364,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=27886,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=725,
+ ["unit"]=0
+ }
+ },
+ [7257]={
+ ["next_chapter"]=7258,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=935797,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=262023,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=283168,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28600,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=283168,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=27886,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=725,
+ ["unit"]=0
+ }
+ },
+ [7258]={
+ ["next_chapter"]=7259,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=937388,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=262469,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=286000,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28886,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=286000,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=27886,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=725,
+ ["unit"]=0
+ }
+ },
+ [7259]={
+ ["next_chapter"]=7260,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=938992,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=262918,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=288860,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29175,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=288860,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=27886,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=725,
+ ["unit"]=0
+ }
+ },
+ [7260]={
+ ["next_chapter"]=7261,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=940608,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=263370,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=291748,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29467,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=291748,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=30803,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=726,
+ ["unit"]=0
+ }
+ },
+ [7261]={
+ ["next_chapter"]=7262,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=942237,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=263826,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=294666,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29761,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=294666,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=30803,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=726,
+ ["unit"]=0
+ }
+ },
+ [7262]={
+ ["next_chapter"]=7263,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=943878,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=264286,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=297612,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30059,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=297612,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=30803,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=726,
+ ["unit"]=0
+ }
+ },
+ [7263]={
+ ["next_chapter"]=7264,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=945532,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=264749,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=300588,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30359,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=300588,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=30803,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=726,
+ ["unit"]=0
+ }
+ },
+ [7264]={
+ ["next_chapter"]=7265,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=947198,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=265215,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=303594,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30663,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=303594,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=30803,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=726,
+ ["unit"]=0
+ }
+ },
+ [7265]={
+ ["next_chapter"]=7266,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=948877,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=265686,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=306630,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30970,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=306630,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=30803,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=726,
+ ["unit"]=0
+ }
+ },
+ [7266]={
+ ["next_chapter"]=7267,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=950569,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=266159,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=309696,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31279,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=309696,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=30803,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=726,
+ ["unit"]=0
+ }
+ },
+ [7267]={
+ ["next_chapter"]=7268,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=952273,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=266637,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=312793,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31592,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=312793,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=30803,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=726,
+ ["unit"]=0
+ }
+ },
+ [7268]={
+ ["next_chapter"]=7269,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=953991,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=267117,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=315921,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31908,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=315921,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=30803,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=726,
+ ["unit"]=0
+ }
+ },
+ [7269]={
+ ["next_chapter"]=7270,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=955721,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=267602,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=319081,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32227,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=319081,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=30803,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=726,
+ ["unit"]=0
+ }
+ },
+ [7270]={
+ ["next_chapter"]=7271,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=957464,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=268090,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=322271,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32549,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=322271,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=34026,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=727,
+ ["unit"]=0
+ }
+ },
+ [7271]={
+ ["next_chapter"]=7272,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=959220,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=268582,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=325494,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32875,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=325494,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=34026,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=727,
+ ["unit"]=0
+ }
+ },
+ [7272]={
+ ["next_chapter"]=7273,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=960989,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=269077,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=328749,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33204,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=328749,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=34026,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=727,
+ ["unit"]=0
+ }
+ },
+ [7273]={
+ ["next_chapter"]=7274,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=962771,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=269576,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=332037,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33536,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=332037,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=34026,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=727,
+ ["unit"]=0
+ }
+ },
+ [7274]={
+ ["next_chapter"]=7275,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=964567,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=270079,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=335357,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33871,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=335357,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=34026,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=727,
+ ["unit"]=0
+ }
+ },
+ [7275]={
+ ["next_chapter"]=7276,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=966375,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=270585,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=338710,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34210,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=338710,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=34026,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=727,
+ ["unit"]=0
+ }
+ },
+ [7276]={
+ ["next_chapter"]=7277,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=968197,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=271095,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=342098,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34552,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=342098,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=34026,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=727,
+ ["unit"]=0
+ }
+ },
+ [7277]={
+ ["next_chapter"]=7278,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=970031,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=271609,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=345519,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34897,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=345519,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=34026,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=727,
+ ["unit"]=0
+ }
+ },
+ [7278]={
+ ["next_chapter"]=7279,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=971880,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=272126,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=348974,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35246,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=348974,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=34026,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=727,
+ ["unit"]=0
+ }
+ },
+ [7279]={
+ ["next_chapter"]=7280,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=973741,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=272648,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=352464,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35599,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=352464,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=34026,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=727,
+ ["unit"]=0
+ }
+ },
+ [7280]={
+ ["next_chapter"]=7281,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=975616,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=273172,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=355988,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35955,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=355988,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=37586,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=728,
+ ["unit"]=0
+ }
+ },
+ [7281]={
+ ["next_chapter"]=7282,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=977504,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=273701,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=359548,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36314,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=359548,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=37586,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=728,
+ ["unit"]=0
+ }
+ },
+ [7282]={
+ ["next_chapter"]=7283,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=979406,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=274234,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=363143,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36677,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=363143,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=37586,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=728,
+ ["unit"]=0
+ }
+ },
+ [7283]={
+ ["next_chapter"]=7284,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=981321,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=274770,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=366775,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37044,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=366775,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=37586,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=728,
+ ["unit"]=0
+ }
+ },
+ [7284]={
+ ["next_chapter"]=7285,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=983250,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=275310,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=370443,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37415,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=370443,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=37586,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=728,
+ ["unit"]=0
+ }
+ },
+ [7285]={
+ ["next_chapter"]=7286,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=985193,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=275854,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=374147,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37789,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=374147,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=37586,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=728,
+ ["unit"]=0
+ }
+ },
+ [7286]={
+ ["next_chapter"]=7287,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=987149,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=276402,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=377889,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=38167,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=377889,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=37586,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=728,
+ ["unit"]=0
+ }
+ },
+ [7287]={
+ ["next_chapter"]=7288,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=989119,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=276953,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=381667,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=38548,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=381667,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=37586,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=728,
+ ["unit"]=0
+ }
+ },
+ [7288]={
+ ["next_chapter"]=7289,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=991103,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=277509,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=385484,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=38934,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=385484,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=37586,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=728,
+ ["unit"]=0
+ }
+ },
+ [7289]={
+ ["next_chapter"]=7290,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=993101,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=278068,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=389339,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39323,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=389339,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=37586,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=728,
+ ["unit"]=0
+ }
+ },
+ [7290]={
+ ["next_chapter"]=7291,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=995112,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=278631,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=393232,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39716,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=393232,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=41518,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=729,
+ ["unit"]=0
+ }
+ },
+ [7291]={
+ ["next_chapter"]=7292,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=997137,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=279198,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=397165,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=40114,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=397165,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=41518,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=729,
+ ["unit"]=0
+ }
+ },
+ [7292]={
+ ["next_chapter"]=7293,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=999177,
+ ["unit"]=7
+ },
+ ["hp_coefficient"]={
+ ["value"]=279769,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=401136,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=40515,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=401136,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=41518,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=729,
+ ["unit"]=0
+ }
+ },
+ [7293]={
+ ["next_chapter"]=7294,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1001,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=280344,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=405148,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=40920,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=405148,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=41518,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=729,
+ ["unit"]=0
+ }
+ },
+ [7294]={
+ ["next_chapter"]=7295,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1003,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=280923,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=409199,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41329,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=409199,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=41518,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=729,
+ ["unit"]=0
+ }
+ },
+ [7295]={
+ ["next_chapter"]=7296,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1005,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=281506,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=413291,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41742,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=413291,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=41518,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=729,
+ ["unit"]=0
+ }
+ },
+ [7296]={
+ ["next_chapter"]=7297,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1007,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=282093,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=417424,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=42160,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=417424,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=41518,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=729,
+ ["unit"]=0
+ }
+ },
+ [7297]={
+ ["next_chapter"]=7298,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1010,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=282684,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=421598,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=42581,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=421598,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=41518,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=729,
+ ["unit"]=0
+ }
+ },
+ [7298]={
+ ["next_chapter"]=7299,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1012,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=283278,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=425814,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=43007,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=425814,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=41518,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=729,
+ ["unit"]=0
+ }
+ },
+ [7299]={
+ ["next_chapter"]=7300,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1014,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=283877,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=430072,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=43437,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=430072,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=41518,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=729,
+ ["unit"]=0
+ }
+ },
+ [7300]={
+ ["next_chapter"]=7301,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=1016,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=284480,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=434373,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=43872,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=434373,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=45862,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=730,
+ ["unit"]=0
+ }
+ },
+ [7301]={
+ ["next_chapter"]=7302,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1018,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=285087,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=438717,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=44310,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=438717,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=45862,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=730,
+ ["unit"]=0
+ }
+ },
+ [7302]={
+ ["next_chapter"]=7303,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1020,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=285698,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=443104,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=44754,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=443104,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=45862,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=730,
+ ["unit"]=0
+ }
+ },
+ [7303]={
+ ["next_chapter"]=7304,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1023,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=286313,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=447535,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=45201,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=447535,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=45862,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=730,
+ ["unit"]=0
+ }
+ },
+ [7304]={
+ ["next_chapter"]=7305,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1025,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=286932,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=452010,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=45653,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=452010,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=45862,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=730,
+ ["unit"]=0
+ }
+ },
+ [7305]={
+ ["next_chapter"]=7306,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1027,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=287555,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=456531,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=46110,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=456531,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=45862,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=730,
+ ["unit"]=0
+ }
+ },
+ [7306]={
+ ["next_chapter"]=7307,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1029,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=288182,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=461096,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=46571,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=461096,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=45862,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=730,
+ ["unit"]=0
+ }
+ },
+ [7307]={
+ ["next_chapter"]=7308,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1031,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=288813,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=465707,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=47036,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=465707,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=45862,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=730,
+ ["unit"]=0
+ }
+ },
+ [7308]={
+ ["next_chapter"]=7309,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1034,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=289449,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=470364,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=47507,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=470364,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=45862,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=730,
+ ["unit"]=0
+ }
+ },
+ [7309]={
+ ["next_chapter"]=7310,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1036,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=290088,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=475068,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=47982,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=475068,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=45862,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=730,
+ ["unit"]=0
+ }
+ },
+ [7310]={
+ ["next_chapter"]=7311,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=1038,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=290732,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=479818,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=48462,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=479818,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=50660,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=731,
+ ["unit"]=0
+ }
+ },
+ [7311]={
+ ["next_chapter"]=7312,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1041,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=291380,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=484616,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=48946,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=484616,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=50660,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=731,
+ ["unit"]=0
+ }
+ },
+ [7312]={
+ ["next_chapter"]=7313,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1043,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=292032,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=489463,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=49436,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=489463,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=50660,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=731,
+ ["unit"]=0
+ }
+ },
+ [7313]={
+ ["next_chapter"]=7314,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1045,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=292688,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=494357,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=49930,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=494357,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=50660,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=731,
+ ["unit"]=0
+ }
+ },
+ [7314]={
+ ["next_chapter"]=7315,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1048,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=293348,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=499301,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=50429,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=499301,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=50660,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=731,
+ ["unit"]=0
+ }
+ },
+ [7315]={
+ ["next_chapter"]=7316,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1050,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=294013,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=504294,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=50934,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=504294,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=50660,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=731,
+ ["unit"]=0
+ }
+ },
+ [7316]={
+ ["next_chapter"]=7317,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1052,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=294682,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=509337,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=51443,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=509337,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=50660,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=731,
+ ["unit"]=0
+ }
+ },
+ [7317]={
+ ["next_chapter"]=7318,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1055,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=295355,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=514430,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=51957,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=514430,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=50660,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=731,
+ ["unit"]=0
+ }
+ },
+ [7318]={
+ ["next_chapter"]=7319,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1057,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=296033,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=519574,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=52477,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=519574,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=50660,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=731,
+ ["unit"]=0
+ }
+ },
+ [7319]={
+ ["next_chapter"]=7320,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1060,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=296714,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=524770,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=53002,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=524770,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=50660,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=731,
+ ["unit"]=0
+ }
+ },
+ [7320]={
+ ["next_chapter"]=7321,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=1062,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=297400,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=530018,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=53532,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=530018,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=55960,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=732,
+ ["unit"]=0
+ }
+ },
+ [7321]={
+ ["next_chapter"]=7322,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1065,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=298091,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=535318,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=54067,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=535318,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=55960,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=732,
+ ["unit"]=0
+ }
+ },
+ [7322]={
+ ["next_chapter"]=7323,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1067,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=298785,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=540671,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=54608,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=540671,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=55960,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=732,
+ ["unit"]=0
+ }
+ },
+ [7323]={
+ ["next_chapter"]=7324,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1070,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=299484,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=546078,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=55154,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=546078,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=55960,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=732,
+ ["unit"]=0
+ }
+ },
+ [7324]={
+ ["next_chapter"]=7325,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1072,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=300187,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=551539,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=55705,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=551539,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=55960,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=732,
+ ["unit"]=0
+ }
+ },
+ [7325]={
+ ["next_chapter"]=7326,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1075,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=300895,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=557054,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=56262,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=557054,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=55960,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=732,
+ ["unit"]=0
+ }
+ },
+ [7326]={
+ ["next_chapter"]=7327,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1077,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=301607,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=562625,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=56825,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=562625,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=55960,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=732,
+ ["unit"]=0
+ }
+ },
+ [7327]={
+ ["next_chapter"]=7328,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1080,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=302323,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=568251,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=57393,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=568251,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=55960,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=732,
+ ["unit"]=0
+ }
+ },
+ [7328]={
+ ["next_chapter"]=7329,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1082,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=303044,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=573933,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=57967,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=573933,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=55960,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=732,
+ ["unit"]=0
+ }
+ },
+ [7329]={
+ ["next_chapter"]=7330,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1085,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=303769,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=579673,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=58547,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=579673,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=55960,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=732,
+ ["unit"]=0
+ }
+ },
+ [7330]={
+ ["next_chapter"]=7331,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=1087,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=304499,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=585469,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=59132,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=585469,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=61815,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=733,
+ ["unit"]=0
+ }
+ },
+ [7331]={
+ ["next_chapter"]=7332,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1090,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=305233,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=591324,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=59724,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=591324,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=61815,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=733,
+ ["unit"]=0
+ }
+ },
+ [7332]={
+ ["next_chapter"]=7333,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1093,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=305971,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=597237,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=60321,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=597237,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=61815,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=733,
+ ["unit"]=0
+ }
+ },
+ [7333]={
+ ["next_chapter"]=7334,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1095,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=306714,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=603210,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=60924,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=603210,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=61815,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=733,
+ ["unit"]=0
+ }
+ },
+ [7334]={
+ ["next_chapter"]=7335,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1098,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=307462,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=609242,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=61533,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=609242,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=61815,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=733,
+ ["unit"]=0
+ }
+ },
+ [7335]={
+ ["next_chapter"]=7336,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1101,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=308214,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=615334,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=62149,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=615334,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=61815,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=733,
+ ["unit"]=0
+ }
+ },
+ [7336]={
+ ["next_chapter"]=7337,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1103,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=308970,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=621488,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=62770,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=621488,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=61815,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=733,
+ ["unit"]=0
+ }
+ },
+ [7337]={
+ ["next_chapter"]=7338,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1106,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=309731,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=627702,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=63398,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=627702,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=61815,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=733,
+ ["unit"]=0
+ }
+ },
+ [7338]={
+ ["next_chapter"]=7339,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1109,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=310496,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=633979,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=64032,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=633979,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=61815,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=733,
+ ["unit"]=0
+ }
+ },
+ [7339]={
+ ["next_chapter"]=7340,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1112,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=311266,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=640319,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=64672,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=640319,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=61815,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=733,
+ ["unit"]=0
+ }
+ },
+ [7340]={
+ ["next_chapter"]=7341,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=1114,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=312041,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=646722,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=65319,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=646722,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=68282,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=734,
+ ["unit"]=0
+ }
+ },
+ [7341]={
+ ["next_chapter"]=7342,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1117,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=312820,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=653190,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=65972,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=653190,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=68282,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=734,
+ ["unit"]=0
+ }
+ },
+ [7342]={
+ ["next_chapter"]=7343,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1120,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=313604,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=659722,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=66632,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=659722,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=68282,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=734,
+ ["unit"]=0
+ }
+ },
+ [7343]={
+ ["next_chapter"]=7344,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1123,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=314392,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=666319,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=67298,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=666319,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=68282,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=734,
+ ["unit"]=0
+ }
+ },
+ [7344]={
+ ["next_chapter"]=7345,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1126,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=315185,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=672982,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=67971,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=672982,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=68282,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=734,
+ ["unit"]=0
+ }
+ },
+ [7345]={
+ ["next_chapter"]=7346,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1129,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=315983,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=679712,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=68651,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=679712,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=68282,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=734,
+ ["unit"]=0
+ }
+ },
+ [7346]={
+ ["next_chapter"]=7347,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1131,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=316785,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=686509,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=69337,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=686509,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=68282,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=734,
+ ["unit"]=0
+ }
+ },
+ [7347]={
+ ["next_chapter"]=7348,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1134,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=317592,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=693374,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=70031,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=693374,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=68282,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=734,
+ ["unit"]=0
+ }
+ },
+ [7348]={
+ ["next_chapter"]=7349,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1137,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=318403,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=700308,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=70731,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=700308,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=68282,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=734,
+ ["unit"]=0
+ }
+ },
+ [7349]={
+ ["next_chapter"]=7350,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1140,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=319219,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=707311,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=71438,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=707311,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=68282,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=734,
+ ["unit"]=0
+ }
+ },
+ [7350]={
+ ["next_chapter"]=7351,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=1143,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=320040,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=714384,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=72153,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=714384,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=75426,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=735,
+ ["unit"]=0
+ }
+ },
+ [7351]={
+ ["next_chapter"]=7352,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1146,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=320866,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=721528,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=72874,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=721528,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=75426,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=735,
+ ["unit"]=0
+ }
+ },
+ [7352]={
+ ["next_chapter"]=7353,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1149,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=321696,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=728743,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=73603,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=728743,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=75426,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=735,
+ ["unit"]=0
+ }
+ },
+ [7353]={
+ ["next_chapter"]=7354,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1152,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=322531,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=736030,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=74339,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=736030,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=75426,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=735,
+ ["unit"]=0
+ }
+ },
+ [7354]={
+ ["next_chapter"]=7355,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1155,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=323371,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=743391,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=75082,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=743391,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=75426,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=735,
+ ["unit"]=0
+ }
+ },
+ [7355]={
+ ["next_chapter"]=7356,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1158,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=324215,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=750825,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=75833,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=750825,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=75426,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=735,
+ ["unit"]=0
+ }
+ },
+ [7356]={
+ ["next_chapter"]=7357,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1161,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=325064,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=758333,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=76592,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=758333,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=75426,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=735,
+ ["unit"]=0
+ }
+ },
+ [7357]={
+ ["next_chapter"]=7358,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1164,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=325918,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=765916,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=77358,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=765916,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=75426,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=735,
+ ["unit"]=0
+ }
+ },
+ [7358]={
+ ["next_chapter"]=7359,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1167,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=326777,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=773575,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=78131,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=773575,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=75426,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=735,
+ ["unit"]=0
+ }
+ },
+ [7359]={
+ ["next_chapter"]=7360,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1170,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=327641,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=781311,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=78912,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=781311,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=75426,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=735,
+ ["unit"]=0
+ }
+ },
+ [7360]={
+ ["next_chapter"]=7361,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=1173,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=328509,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=789124,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=79702,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=789124,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=83317,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=736,
+ ["unit"]=0
+ }
+ },
+ [7361]={
+ ["next_chapter"]=7362,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1176,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=329383,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=797016,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=80499,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=797016,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=83317,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=736,
+ ["unit"]=0
+ }
+ },
+ [7362]={
+ ["next_chapter"]=7363,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1180,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=330261,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=804986,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=81304,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=804986,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=83317,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=736,
+ ["unit"]=0
+ }
+ },
+ [7363]={
+ ["next_chapter"]=7364,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1183,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=331144,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=813036,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=82117,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=813036,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=83317,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=736,
+ ["unit"]=0
+ }
+ },
+ [7364]={
+ ["next_chapter"]=7365,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1186,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=332032,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=821166,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=82938,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=821166,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=83317,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=736,
+ ["unit"]=0
+ }
+ },
+ [7365]={
+ ["next_chapter"]=7366,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1189,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=332925,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=829378,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=83767,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=829378,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=83317,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=736,
+ ["unit"]=0
+ }
+ },
+ [7366]={
+ ["next_chapter"]=7367,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1192,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=333822,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=837671,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=84605,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=837671,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=83317,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=736,
+ ["unit"]=0
+ }
+ },
+ [7367]={
+ ["next_chapter"]=7368,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1195,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=334725,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=846048,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=85451,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=846048,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=83317,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=736,
+ ["unit"]=0
+ }
+ },
+ [7368]={
+ ["next_chapter"]=7369,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1199,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=335633,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=854509,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=86305,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=854509,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=83317,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=736,
+ ["unit"]=0
+ }
+ },
+ [7369]={
+ ["next_chapter"]=7370,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1202,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=336545,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=863054,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=87168,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=863054,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=83317,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=736,
+ ["unit"]=0
+ }
+ },
+ [7370]={
+ ["next_chapter"]=7371,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=1205,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=337463,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=871684,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=88040,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=871684,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=92034,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=737,
+ ["unit"]=0
+ }
+ },
+ [7371]={
+ ["next_chapter"]=7372,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1209,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=338385,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=880401,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=88921,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=880401,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=92034,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=737,
+ ["unit"]=0
+ }
+ },
+ [7372]={
+ ["next_chapter"]=7373,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1212,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=339313,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=889205,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=89810,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=889205,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=92034,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=737,
+ ["unit"]=0
+ }
+ },
+ [7373]={
+ ["next_chapter"]=7374,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1215,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=340245,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=898097,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=90708,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=898097,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=92034,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=737,
+ ["unit"]=0
+ }
+ },
+ [7374]={
+ ["next_chapter"]=7375,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1219,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=341183,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=907078,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=91615,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=907078,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=92034,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=737,
+ ["unit"]=0
+ }
+ },
+ [7375]={
+ ["next_chapter"]=7376,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1222,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=342125,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=916149,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=92531,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=916149,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=92034,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=737,
+ ["unit"]=0
+ }
+ },
+ [7376]={
+ ["next_chapter"]=7377,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1225,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=343073,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=925310,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=93456,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=925310,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=92034,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=737,
+ ["unit"]=0
+ }
+ },
+ [7377]={
+ ["next_chapter"]=7378,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1229,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=344025,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=934563,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=94391,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=934563,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=92034,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=737,
+ ["unit"]=0
+ }
+ },
+ [7378]={
+ ["next_chapter"]=7379,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1232,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=344983,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=943909,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=95335,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=943909,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=92034,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=737,
+ ["unit"]=0
+ }
+ },
+ [7379]={
+ ["next_chapter"]=7380,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1236,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=345945,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=953348,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=96288,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=953348,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=92034,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=737,
+ ["unit"]=0
+ }
+ },
+ [7380]={
+ ["next_chapter"]=7381,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=1239,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=346913,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=962882,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=97251,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=962882,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=101663,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=738,
+ ["unit"]=0
+ }
+ },
+ [7381]={
+ ["next_chapter"]=7382,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1242,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=347886,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=972510,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=98224,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=972510,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=101663,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=738,
+ ["unit"]=0
+ }
+ },
+ [7382]={
+ ["next_chapter"]=7383,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1246,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=348864,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=982236,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=99206,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=982236,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=101663,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=738,
+ ["unit"]=0
+ }
+ },
+ [7383]={
+ ["next_chapter"]=7384,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1249,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=349847,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=992058,
+ ["unit"]=9
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=100198,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=992058,
+ ["unit"]=9
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=101663,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=738,
+ ["unit"]=0
+ }
+ },
+ [7384]={
+ ["next_chapter"]=7385,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1253,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=350836,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1002,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=101200,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1002,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=101663,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=738,
+ ["unit"]=0
+ }
+ },
+ [7385]={
+ ["next_chapter"]=7386,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1257,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=351829,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1012,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=102212,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1012,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=101663,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=738,
+ ["unit"]=0
+ }
+ },
+ [7386]={
+ ["next_chapter"]=7387,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1260,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=352828,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1022,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=103234,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1022,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=101663,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=738,
+ ["unit"]=0
+ }
+ },
+ [7387]={
+ ["next_chapter"]=7388,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1264,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=353832,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1032,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=104266,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1032,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=101663,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=738,
+ ["unit"]=0
+ }
+ },
+ [7388]={
+ ["next_chapter"]=7389,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1267,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=354841,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1043,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=105309,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1043,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=101663,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=738,
+ ["unit"]=0
+ }
+ },
+ [7389]={
+ ["next_chapter"]=7390,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1271,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=355855,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1053,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=106362,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1053,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=101663,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=738,
+ ["unit"]=0
+ }
+ },
+ [7390]={
+ ["next_chapter"]=7391,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=1275,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=356875,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1064,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=107426,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1064,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=112299,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=739,
+ ["unit"]=0
+ }
+ },
+ [7391]={
+ ["next_chapter"]=7392,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1278,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=357899,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1074,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=108500,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1074,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=112299,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=739,
+ ["unit"]=0
+ }
+ },
+ [7392]={
+ ["next_chapter"]=7393,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1282,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=358929,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1085,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=109585,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1085,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=112299,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=739,
+ ["unit"]=0
+ }
+ },
+ [7393]={
+ ["next_chapter"]=7394,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1286,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=359965,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1096,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=110681,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1096,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=112299,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=739,
+ ["unit"]=0
+ }
+ },
+ [7394]={
+ ["next_chapter"]=7395,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1289,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=361005,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1107,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=111788,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1107,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=112299,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=739,
+ ["unit"]=0
+ }
+ },
+ [7395]={
+ ["next_chapter"]=7396,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1293,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=362051,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1118,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=112905,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1118,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=112299,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=739,
+ ["unit"]=0
+ }
+ },
+ [7396]={
+ ["next_chapter"]=7397,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1297,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=363102,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1129,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=114034,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1129,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=112299,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=739,
+ ["unit"]=0
+ }
+ },
+ [7397]={
+ ["next_chapter"]=7398,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1301,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=364159,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1140,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=115175,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1140,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=112299,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=739,
+ ["unit"]=0
+ }
+ },
+ [7398]={
+ ["next_chapter"]=7399,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1304,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=365220,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1152,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=116327,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1152,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=112299,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=739,
+ ["unit"]=0
+ }
+ },
+ [7399]={
+ ["next_chapter"]=7400,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1308,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=366287,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1163,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=117490,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1163,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=112299,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=739,
+ ["unit"]=0
+ }
+ },
+ [7400]={
+ ["next_chapter"]=7401,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=1312,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=367360,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1175,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=118665,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1175,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=124048,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=740,
+ ["unit"]=0
+ }
+ },
+ [7401]={
+ ["next_chapter"]=7402,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1316,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=368438,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1187,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=119851,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1187,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=124048,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=740,
+ ["unit"]=0
+ }
+ },
+ [7402]={
+ ["next_chapter"]=7403,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1320,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=369521,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1199,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=121050,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1199,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=124048,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=740,
+ ["unit"]=0
+ }
+ },
+ [7403]={
+ ["next_chapter"]=7404,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1324,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=370610,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1210,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=122260,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1210,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=124048,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=740,
+ ["unit"]=0
+ }
+ },
+ [7404]={
+ ["next_chapter"]=7405,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1328,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=371704,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1223,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=123483,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1223,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=124048,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=740,
+ ["unit"]=0
+ }
+ },
+ [7405]={
+ ["next_chapter"]=7406,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1331,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=372803,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1235,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=124718,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1235,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=124048,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=740,
+ ["unit"]=0
+ }
+ },
+ [7406]={
+ ["next_chapter"]=7407,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1335,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=373908,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1247,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=125965,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1247,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=124048,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=740,
+ ["unit"]=0
+ }
+ },
+ [7407]={
+ ["next_chapter"]=7408,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1339,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=375019,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1260,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=127225,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1260,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=124048,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=740,
+ ["unit"]=0
+ }
+ },
+ [7408]={
+ ["next_chapter"]=7409,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1343,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=376135,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1272,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=128497,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1272,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=124048,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=740,
+ ["unit"]=0
+ }
+ },
+ [7409]={
+ ["next_chapter"]=7410,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1347,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=377256,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1285,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=129782,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1285,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=124048,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=740,
+ ["unit"]=0
+ }
+ },
+ [7410]={
+ ["next_chapter"]=7411,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=1351,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=378383,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1298,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=131080,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1298,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=137026,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=741,
+ ["unit"]=0
+ }
+ },
+ [7411]={
+ ["next_chapter"]=7412,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1355,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=379515,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1311,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=132391,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1311,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=137026,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=741,
+ ["unit"]=0
+ }
+ },
+ [7412]={
+ ["next_chapter"]=7413,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1359,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=380653,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1324,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=133714,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1324,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=137026,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=741,
+ ["unit"]=0
+ }
+ },
+ [7413]={
+ ["next_chapter"]=7414,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1364,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=381797,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1337,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=135052,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1337,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=137026,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=741,
+ ["unit"]=0
+ }
+ },
+ [7414]={
+ ["next_chapter"]=7415,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1368,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=382946,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1351,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=136402,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1351,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=137026,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=741,
+ ["unit"]=0
+ }
+ },
+ [7415]={
+ ["next_chapter"]=7416,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1372,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=384100,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1364,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=137766,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1364,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=137026,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=741,
+ ["unit"]=0
+ }
+ },
+ [7416]={
+ ["next_chapter"]=7417,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1376,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=385261,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1378,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=139144,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1378,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=137026,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=741,
+ ["unit"]=0
+ }
+ },
+ [7417]={
+ ["next_chapter"]=7418,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1380,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=386426,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1391,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=140535,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1391,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=137026,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=741,
+ ["unit"]=0
+ }
+ },
+ [7418]={
+ ["next_chapter"]=7419,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1384,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=387598,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1405,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=141941,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1405,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=137026,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=741,
+ ["unit"]=0
+ }
+ },
+ [7419]={
+ ["next_chapter"]=7420,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1388,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=388775,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1419,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=143360,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1419,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=137026,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=741,
+ ["unit"]=0
+ }
+ },
+ [7420]={
+ ["next_chapter"]=7421,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=1393,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=389957,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1434,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=144794,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1434,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=151362,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=742,
+ ["unit"]=0
+ }
+ },
+ [7421]={
+ ["next_chapter"]=7422,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1397,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=391145,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1448,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=146241,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1448,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=151362,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=742,
+ ["unit"]=0
+ }
+ },
+ [7422]={
+ ["next_chapter"]=7423,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1401,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=392339,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1462,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=147704,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1462,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=151362,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=742,
+ ["unit"]=0
+ }
+ },
+ [7423]={
+ ["next_chapter"]=7424,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1405,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=393539,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1477,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=149181,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1477,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=151362,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=742,
+ ["unit"]=0
+ }
+ },
+ [7424]={
+ ["next_chapter"]=7425,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1410,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=394744,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1492,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=150673,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1492,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=151362,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=742,
+ ["unit"]=0
+ }
+ },
+ [7425]={
+ ["next_chapter"]=7426,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1414,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=395955,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1507,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=152179,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1507,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=151362,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=742,
+ ["unit"]=0
+ }
+ },
+ [7426]={
+ ["next_chapter"]=7427,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1418,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=397172,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1522,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=153701,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1522,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=151362,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=742,
+ ["unit"]=0
+ }
+ },
+ [7427]={
+ ["next_chapter"]=7428,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1423,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=398394,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1537,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=155238,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1537,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=151362,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=742,
+ ["unit"]=0
+ }
+ },
+ [7428]={
+ ["next_chapter"]=7429,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1427,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=399622,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1552,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=156791,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1552,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=151362,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=742,
+ ["unit"]=0
+ }
+ },
+ [7429]={
+ ["next_chapter"]=7430,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1432,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=400856,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1568,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=158359,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1568,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=151362,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=742,
+ ["unit"]=0
+ }
+ },
+ [7430]={
+ ["next_chapter"]=7431,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=1436,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=402096,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1584,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=159942,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1584,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=167198,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=743,
+ ["unit"]=0
+ }
+ },
+ [7431]={
+ ["next_chapter"]=7432,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1441,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=403341,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1599,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=161542,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1599,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=167198,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=743,
+ ["unit"]=0
+ }
+ },
+ [7432]={
+ ["next_chapter"]=7433,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1445,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=404592,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1615,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=163157,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1615,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=167198,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=743,
+ ["unit"]=0
+ }
+ },
+ [7433]={
+ ["next_chapter"]=7434,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1449,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=405849,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1632,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=164789,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1632,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=167198,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=743,
+ ["unit"]=0
+ }
+ },
+ [7434]={
+ ["next_chapter"]=7435,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1454,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=407112,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1648,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=166436,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1648,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=167198,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=743,
+ ["unit"]=0
+ }
+ },
+ [7435]={
+ ["next_chapter"]=7436,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1459,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=408381,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1664,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=168101,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1664,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=167198,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=743,
+ ["unit"]=0
+ }
+ },
+ [7436]={
+ ["next_chapter"]=7437,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1463,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=409655,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1681,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=169782,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1681,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=167198,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=743,
+ ["unit"]=0
+ }
+ },
+ [7437]={
+ ["next_chapter"]=7438,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1468,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=410936,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1698,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=171480,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1698,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=167198,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=743,
+ ["unit"]=0
+ }
+ },
+ [7438]={
+ ["next_chapter"]=7439,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1472,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=412222,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1715,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=173194,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1715,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=167198,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=743,
+ ["unit"]=0
+ }
+ },
+ [7439]={
+ ["next_chapter"]=7440,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1477,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=413514,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1732,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=174926,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1732,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=167198,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=743,
+ ["unit"]=0
+ }
+ },
+ [7440]={
+ ["next_chapter"]=7441,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=1481,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=414812,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1749,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=176676,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1749,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=184691,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=744,
+ ["unit"]=0
+ }
+ },
+ [7441]={
+ ["next_chapter"]=7442,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1486,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=416116,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1767,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=178442,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1767,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=184691,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=744,
+ ["unit"]=0
+ }
+ },
+ [7442]={
+ ["next_chapter"]=7443,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1491,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=417426,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1784,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=180227,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1784,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=184691,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=744,
+ ["unit"]=0
+ }
+ },
+ [7443]={
+ ["next_chapter"]=7444,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1496,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=418742,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1802,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=182029,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1802,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=184691,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=744,
+ ["unit"]=0
+ }
+ },
+ [7444]={
+ ["next_chapter"]=7445,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1500,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=420064,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1820,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=183849,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1820,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=184691,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=744,
+ ["unit"]=0
+ }
+ },
+ [7445]={
+ ["next_chapter"]=7446,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1505,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=421391,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1838,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=185688,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1838,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=184691,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=744,
+ ["unit"]=0
+ }
+ },
+ [7446]={
+ ["next_chapter"]=7447,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1510,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=422725,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1857,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=187545,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1857,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=184691,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=744,
+ ["unit"]=0
+ }
+ },
+ [7447]={
+ ["next_chapter"]=7448,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1515,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=424065,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1875,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=189420,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1875,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=184691,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=744,
+ ["unit"]=0
+ }
+ },
+ [7448]={
+ ["next_chapter"]=7449,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1519,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=425410,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1894,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=191314,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1894,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=184691,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=744,
+ ["unit"]=0
+ }
+ },
+ [7449]={
+ ["next_chapter"]=7450,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1524,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=426762,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1913,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=193228,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1913,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=184691,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=744,
+ ["unit"]=0
+ }
+ },
+ [7450]={
+ ["next_chapter"]=7451,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=1529,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=428120,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1932,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=195160,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1932,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=204014,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=745,
+ ["unit"]=0
+ }
+ },
+ [7451]={
+ ["next_chapter"]=7452,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1534,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=429484,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1952,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=197111,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1952,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=204014,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=745,
+ ["unit"]=0
+ }
+ },
+ [7452]={
+ ["next_chapter"]=7453,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1539,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=430854,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1971,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=199083,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1971,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=204014,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=745,
+ ["unit"]=0
+ }
+ },
+ [7453]={
+ ["next_chapter"]=7454,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1544,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=432230,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=1991,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=201073,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=1991,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=204014,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=745,
+ ["unit"]=0
+ }
+ },
+ [7454]={
+ ["next_chapter"]=7455,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1549,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=433612,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2011,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=203084,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=2011,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=204014,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=745,
+ ["unit"]=0
+ }
+ },
+ [7455]={
+ ["next_chapter"]=7456,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1554,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=435000,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2031,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=205115,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=2031,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=204014,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=745,
+ ["unit"]=0
+ }
+ },
+ [7456]={
+ ["next_chapter"]=7457,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1559,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=436394,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2051,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=207166,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=2051,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=204014,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=745,
+ ["unit"]=0
+ }
+ },
+ [7457]={
+ ["next_chapter"]=7458,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1564,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=437795,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2072,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=209238,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=2072,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=204014,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=745,
+ ["unit"]=0
+ }
+ },
+ [7458]={
+ ["next_chapter"]=7459,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1569,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=439201,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2092,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=211330,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=2092,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=204014,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=745,
+ ["unit"]=0
+ }
+ },
+ [7459]={
+ ["next_chapter"]=7460,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1574,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=440614,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2113,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=213443,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=2113,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=204014,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=745,
+ ["unit"]=0
+ }
+ },
+ [7460]={
+ ["next_chapter"]=7461,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=1579,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=442033,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2134,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=215578,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=2134,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=225358,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=746,
+ ["unit"]=0
+ }
+ },
+ [7461]={
+ ["next_chapter"]=7462,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1584,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=443458,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2156,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=217734,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=2156,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=225358,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=746,
+ ["unit"]=0
+ }
+ },
+ [7462]={
+ ["next_chapter"]=7463,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1589,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=444889,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2177,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=219911,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=2177,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=225358,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=746,
+ ["unit"]=0
+ }
+ },
+ [7463]={
+ ["next_chapter"]=7464,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1594,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=446326,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2199,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=222110,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=2199,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=225358,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=746,
+ ["unit"]=0
+ }
+ },
+ [7464]={
+ ["next_chapter"]=7465,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1599,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=447770,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2221,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=224331,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=2221,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=225358,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=746,
+ ["unit"]=0
+ }
+ },
+ [7465]={
+ ["next_chapter"]=7466,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1604,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=449220,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2243,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=226575,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=2243,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=225358,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=746,
+ ["unit"]=0
+ }
+ },
+ [7466]={
+ ["next_chapter"]=7467,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1610,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=450676,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2266,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=228840,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=2266,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=225358,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=746,
+ ["unit"]=0
+ }
+ },
+ [7467]={
+ ["next_chapter"]=7468,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1615,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=452139,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2288,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=231129,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=2288,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=225358,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=746,
+ ["unit"]=0
+ }
+ },
+ [7468]={
+ ["next_chapter"]=7469,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1620,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=453607,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2311,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=233440,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=2311,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=225358,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=746,
+ ["unit"]=0
+ }
+ },
+ [7469]={
+ ["next_chapter"]=7470,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1625,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=455082,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2334,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=235774,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=2334,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=225358,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=746,
+ ["unit"]=0
+ }
+ },
+ [7470]={
+ ["next_chapter"]=7471,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=1631,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=456564,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2358,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=238132,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=2358,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=248935,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=747,
+ ["unit"]=0
+ }
+ },
+ [7471]={
+ ["next_chapter"]=7472,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1636,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=458051,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2381,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=240513,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=2381,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=248935,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=747,
+ ["unit"]=0
+ }
+ },
+ [7472]={
+ ["next_chapter"]=7473,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1641,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=459545,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2405,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=242919,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=2405,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=248935,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=747,
+ ["unit"]=0
+ }
+ },
+ [7473]={
+ ["next_chapter"]=7474,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1647,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=461045,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2429,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=245348,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=2429,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=248935,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=747,
+ ["unit"]=0
+ }
+ },
+ [7474]={
+ ["next_chapter"]=7475,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1652,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=462552,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2453,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=247801,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=2453,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=248935,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=747,
+ ["unit"]=0
+ }
+ },
+ [7475]={
+ ["next_chapter"]=7476,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1657,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=464065,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2478,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=250279,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=2478,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=248935,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=747,
+ ["unit"]=0
+ }
+ },
+ [7476]={
+ ["next_chapter"]=7477,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1663,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=465584,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2503,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=252782,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=2503,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=248935,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=747,
+ ["unit"]=0
+ }
+ },
+ [7477]={
+ ["next_chapter"]=7478,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1668,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=467110,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2528,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=255310,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=2528,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=248935,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=747,
+ ["unit"]=0
+ }
+ },
+ [7478]={
+ ["next_chapter"]=7479,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1674,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=468642,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2553,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=257863,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=2553,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=248935,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=747,
+ ["unit"]=0
+ }
+ },
+ [7479]={
+ ["next_chapter"]=7480,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1679,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=470181,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2579,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=260442,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=2579,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=248935,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=747,
+ ["unit"]=0
+ }
+ },
+ [7480]={
+ ["next_chapter"]=7481,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=1685,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=471726,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2604,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=263046,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=2604,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=274980,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=748,
+ ["unit"]=0
+ }
+ },
+ [7481]={
+ ["next_chapter"]=7482,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1690,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=473278,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2630,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=265676,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=2630,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=274980,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=748,
+ ["unit"]=0
+ }
+ },
+ [7482]={
+ ["next_chapter"]=7483,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1696,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=474836,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2657,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=268333,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=2657,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=274980,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=748,
+ ["unit"]=0
+ }
+ },
+ [7483]={
+ ["next_chapter"]=7484,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1701,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=476400,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2683,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=271017,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=2683,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=274980,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=748,
+ ["unit"]=0
+ }
+ },
+ [7484]={
+ ["next_chapter"]=7485,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1707,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=477971,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2710,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=273727,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=2710,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=274980,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=748,
+ ["unit"]=0
+ }
+ },
+ [7485]={
+ ["next_chapter"]=7486,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1713,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=479548,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2737,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=276464,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=2737,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=274980,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=748,
+ ["unit"]=0
+ }
+ },
+ [7486]={
+ ["next_chapter"]=7487,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1718,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=481132,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2765,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=279229,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=2765,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=274980,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=748,
+ ["unit"]=0
+ }
+ },
+ [7487]={
+ ["next_chapter"]=7488,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1724,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=482723,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2792,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=282021,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=2792,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=274980,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=748,
+ ["unit"]=0
+ }
+ },
+ [7488]={
+ ["next_chapter"]=7489,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1730,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=484320,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2820,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=284841,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=2820,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=274980,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=748,
+ ["unit"]=0
+ }
+ },
+ [7489]={
+ ["next_chapter"]=7490,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1735,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=485924,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2848,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=287690,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=2848,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=274980,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=748,
+ ["unit"]=0
+ }
+ },
+ [7490]={
+ ["next_chapter"]=7491,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=1741,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=487534,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2877,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=290566,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=2877,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=303749,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=749,
+ ["unit"]=0
+ }
+ },
+ [7491]={
+ ["next_chapter"]=7492,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1747,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=489151,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2906,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=293472,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=2906,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=303749,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=749,
+ ["unit"]=0
+ }
+ },
+ [7492]={
+ ["next_chapter"]=7493,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1753,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=490774,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2935,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=296407,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=2935,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=303749,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=749,
+ ["unit"]=0
+ }
+ },
+ [7493]={
+ ["next_chapter"]=7494,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1759,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=492404,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2964,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=299371,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=2964,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=303749,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=749,
+ ["unit"]=0
+ }
+ },
+ [7494]={
+ ["next_chapter"]=7495,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1764,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=494040,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=2994,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=302365,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=2994,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=303749,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=749,
+ ["unit"]=0
+ }
+ },
+ [7495]={
+ ["next_chapter"]=7496,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1770,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=495684,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3024,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=305388,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=3024,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=303749,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=749,
+ ["unit"]=0
+ }
+ },
+ [7496]={
+ ["next_chapter"]=7497,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1776,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=497334,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3054,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=308442,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=3054,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=303749,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=749,
+ ["unit"]=0
+ }
+ },
+ [7497]={
+ ["next_chapter"]=7498,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1782,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=498990,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3084,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=311527,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=3084,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=303749,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=749,
+ ["unit"]=0
+ }
+ },
+ [7498]={
+ ["next_chapter"]=7499,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1788,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=500653,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3115,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=314642,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=3115,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=303749,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=749,
+ ["unit"]=0
+ }
+ },
+ [7499]={
+ ["next_chapter"]=7500,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1794,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=502323,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3146,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=317788,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=3146,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=303749,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=749,
+ ["unit"]=0
+ }
+ },
+ [7500]={
+ ["next_chapter"]=7501,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=1800,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522000,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3178,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=320966,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=3178,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=335527,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=750,
+ ["unit"]=0
+ }
+ },
+ [7501]={
+ ["next_chapter"]=7502,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1800,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522000,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3210,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=324176,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=3210,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=335527,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=750,
+ ["unit"]=0
+ }
+ },
+ [7502]={
+ ["next_chapter"]=7503,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1800,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522000,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3242,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=327417,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=3242,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=335527,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=750,
+ ["unit"]=0
+ }
+ },
+ [7503]={
+ ["next_chapter"]=7504,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1800,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522000,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3274,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=330692,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=3274,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=335527,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=750,
+ ["unit"]=0
+ }
+ },
+ [7504]={
+ ["next_chapter"]=7505,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1800,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522000,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3307,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=333999,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=3307,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=335527,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=750,
+ ["unit"]=0
+ }
+ },
+ [7505]={
+ ["next_chapter"]=7506,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1800,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522000,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3340,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=337339,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=3340,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=335527,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=750,
+ ["unit"]=0
+ }
+ },
+ [7506]={
+ ["next_chapter"]=7507,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1800,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522001,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3373,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=340712,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=3373,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=335527,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=750,
+ ["unit"]=0
+ }
+ },
+ [7507]={
+ ["next_chapter"]=7508,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1800,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522001,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3407,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=344119,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=3407,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=335527,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=750,
+ ["unit"]=0
+ }
+ },
+ [7508]={
+ ["next_chapter"]=7509,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1800,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522002,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3441,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=347560,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=3441,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=335527,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=750,
+ ["unit"]=0
+ }
+ },
+ [7509]={
+ ["next_chapter"]=7510,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1800,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522003,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3476,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=351036,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=3476,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=335527,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=750,
+ ["unit"]=0
+ }
+ },
+ [7510]={
+ ["next_chapter"]=7511,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=1800,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522004,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3510,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=354546,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=3510,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=370631,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=751,
+ ["unit"]=0
+ }
+ },
+ [7511]={
+ ["next_chapter"]=7512,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1800,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522005,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3545,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=358092,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=3545,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=370631,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=751,
+ ["unit"]=0
+ }
+ },
+ [7512]={
+ ["next_chapter"]=7513,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1800,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522007,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3581,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=361673,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=3581,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=370631,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=751,
+ ["unit"]=0
+ }
+ },
+ [7513]={
+ ["next_chapter"]=7514,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1800,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522009,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3617,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=365289,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=3617,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=370631,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=751,
+ ["unit"]=0
+ }
+ },
+ [7514]={
+ ["next_chapter"]=7515,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1800,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522011,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3653,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=368942,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=3653,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=370631,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=751,
+ ["unit"]=0
+ }
+ },
+ [7515]={
+ ["next_chapter"]=7516,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1800,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522013,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3689,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=372632,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=3689,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=370631,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=751,
+ ["unit"]=0
+ }
+ },
+ [7516]={
+ ["next_chapter"]=7517,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1800,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522016,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3726,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=376358,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=3726,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=370631,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=751,
+ ["unit"]=0
+ }
+ },
+ [7517]={
+ ["next_chapter"]=7518,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1800,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522019,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3764,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=380122,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=3764,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=370631,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=751,
+ ["unit"]=0
+ }
+ },
+ [7518]={
+ ["next_chapter"]=7519,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1800,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522023,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3801,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=383923,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=3801,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=370631,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=751,
+ ["unit"]=0
+ }
+ },
+ [7519]={
+ ["next_chapter"]=7520,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1800,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522027,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3839,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=387762,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=3839,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=370631,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=751,
+ ["unit"]=0
+ }
+ },
+ [7520]={
+ ["next_chapter"]=7521,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=1800,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522032,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3878,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=391640,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=3878,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=409407,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=752,
+ ["unit"]=0
+ }
+ },
+ [7521]={
+ ["next_chapter"]=7522,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1800,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522037,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3916,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=395556,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=3916,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=409407,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=752,
+ ["unit"]=0
+ }
+ },
+ [7522]={
+ ["next_chapter"]=7523,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1800,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522042,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3956,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=399512,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=3956,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=409407,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=752,
+ ["unit"]=0
+ }
+ },
+ [7523]={
+ ["next_chapter"]=7524,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1800,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522048,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=3995,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=403507,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=3995,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=409407,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=752,
+ ["unit"]=0
+ }
+ },
+ [7524]={
+ ["next_chapter"]=7525,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1800,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522055,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4035,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=407542,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=4035,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=409407,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=752,
+ ["unit"]=0
+ }
+ },
+ [7525]={
+ ["next_chapter"]=7526,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1800,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522062,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4075,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=411617,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=4075,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=409407,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=752,
+ ["unit"]=0
+ }
+ },
+ [7526]={
+ ["next_chapter"]=7527,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1800,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522069,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4116,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=415733,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=4116,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=409407,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=752,
+ ["unit"]=0
+ }
+ },
+ [7527]={
+ ["next_chapter"]=7528,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1800,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522078,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4157,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=419891,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=4157,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=409407,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=752,
+ ["unit"]=0
+ }
+ },
+ [7528]={
+ ["next_chapter"]=7529,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1800,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522087,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4199,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=424090,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=4199,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=409407,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=752,
+ ["unit"]=0
+ }
+ },
+ [7529]={
+ ["next_chapter"]=7530,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1800,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522096,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4241,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=428330,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=4241,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=409407,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=752,
+ ["unit"]=0
+ }
+ },
+ [7530]={
+ ["next_chapter"]=7531,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=1800,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522106,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4283,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=432614,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=4283,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=452240,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=753,
+ ["unit"]=0
+ }
+ },
+ [7531]={
+ ["next_chapter"]=7532,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1800,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522117,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4326,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=436940,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=4326,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=452240,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=753,
+ ["unit"]=0
+ }
+ },
+ [7532]={
+ ["next_chapter"]=7533,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1800,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522129,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4369,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=441309,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=4369,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=452240,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=753,
+ ["unit"]=0
+ }
+ },
+ [7533]={
+ ["next_chapter"]=7534,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1800,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522142,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4413,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=445722,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=4413,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=452240,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=753,
+ ["unit"]=0
+ }
+ },
+ [7534]={
+ ["next_chapter"]=7535,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1801,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522155,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4457,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=450180,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=4457,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=452240,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=753,
+ ["unit"]=0
+ }
+ },
+ [7535]={
+ ["next_chapter"]=7536,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1801,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522169,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4502,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=454681,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=4502,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=452240,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=753,
+ ["unit"]=0
+ }
+ },
+ [7536]={
+ ["next_chapter"]=7537,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1801,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522184,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4547,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=459228,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=4547,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=452240,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=753,
+ ["unit"]=0
+ }
+ },
+ [7537]={
+ ["next_chapter"]=7538,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1801,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522200,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4592,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=463821,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=4592,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=452240,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=753,
+ ["unit"]=0
+ }
+ },
+ [7538]={
+ ["next_chapter"]=7539,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1801,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522216,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4638,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=468459,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=4638,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=452240,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=753,
+ ["unit"]=0
+ }
+ },
+ [7539]={
+ ["next_chapter"]=7540,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1801,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522234,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4685,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=473143,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=4685,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=452240,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=753,
+ ["unit"]=0
+ }
+ },
+ [7540]={
+ ["next_chapter"]=7541,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=1801,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522252,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4731,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=477875,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=4731,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=499555,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=754,
+ ["unit"]=0
+ }
+ },
+ [7541]={
+ ["next_chapter"]=7542,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1801,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522272,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4779,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=482653,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=4779,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=499555,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=754,
+ ["unit"]=0
+ }
+ },
+ [7542]={
+ ["next_chapter"]=7543,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1801,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522292,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4827,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=487480,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=4827,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=499555,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=754,
+ ["unit"]=0
+ }
+ },
+ [7543]={
+ ["next_chapter"]=7544,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1801,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522314,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4875,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=492355,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=4875,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=499555,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=754,
+ ["unit"]=0
+ }
+ },
+ [7544]={
+ ["next_chapter"]=7545,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1801,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522336,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4924,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=497278,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=4924,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=499555,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=754,
+ ["unit"]=0
+ }
+ },
+ [7545]={
+ ["next_chapter"]=7546,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1801,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522359,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=4973,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=502251,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=4973,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=499555,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=754,
+ ["unit"]=0
+ }
+ },
+ [7546]={
+ ["next_chapter"]=7547,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1801,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522384,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5023,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=507274,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=5023,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=499555,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=754,
+ ["unit"]=0
+ }
+ },
+ [7547]={
+ ["next_chapter"]=7548,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1801,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522409,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5073,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=512346,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=5073,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=499555,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=754,
+ ["unit"]=0
+ }
+ },
+ [7548]={
+ ["next_chapter"]=7549,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1802,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522436,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5123,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=517470,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=5123,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=499555,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=754,
+ ["unit"]=0
+ }
+ },
+ [7549]={
+ ["next_chapter"]=7550,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1802,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522464,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5175,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=522645,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=5175,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=499555,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=754,
+ ["unit"]=0
+ }
+ },
+ [7550]={
+ ["next_chapter"]=7551,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=1802,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522493,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5226,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=527871,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=5226,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=551819,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=755,
+ ["unit"]=0
+ }
+ },
+ [7551]={
+ ["next_chapter"]=7552,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1802,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522523,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5279,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=533150,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=5279,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=551819,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=755,
+ ["unit"]=0
+ }
+ },
+ [7552]={
+ ["next_chapter"]=7553,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1802,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522555,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5331,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=538481,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=5331,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=551819,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=755,
+ ["unit"]=0
+ }
+ },
+ [7553]={
+ ["next_chapter"]=7554,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1802,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522587,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5385,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=543866,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=5385,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=551819,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=755,
+ ["unit"]=0
+ }
+ },
+ [7554]={
+ ["next_chapter"]=7555,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1802,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522621,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5439,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=549305,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=5439,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=551819,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=755,
+ ["unit"]=0
+ }
+ },
+ [7555]={
+ ["next_chapter"]=7556,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1802,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522656,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5493,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=554798,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=5493,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=551819,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=755,
+ ["unit"]=0
+ }
+ },
+ [7556]={
+ ["next_chapter"]=7557,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1802,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522693,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5548,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=560346,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=5548,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=551819,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=755,
+ ["unit"]=0
+ }
+ },
+ [7557]={
+ ["next_chapter"]=7558,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1803,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522730,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5603,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=565949,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=5603,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=551819,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=755,
+ ["unit"]=0
+ }
+ },
+ [7558]={
+ ["next_chapter"]=7559,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1803,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522770,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5659,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=571609,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=5659,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=551819,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=755,
+ ["unit"]=0
+ }
+ },
+ [7559]={
+ ["next_chapter"]=7560,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1803,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522810,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5716,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=577325,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=5716,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=551819,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=755,
+ ["unit"]=0
+ }
+ },
+ [7560]={
+ ["next_chapter"]=7561,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=1803,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522852,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5773,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=583098,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=5773,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=609551,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=756,
+ ["unit"]=0
+ }
+ },
+ [7561]={
+ ["next_chapter"]=7562,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1803,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522895,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5831,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=588929,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=5831,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=609551,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=756,
+ ["unit"]=0
+ }
+ },
+ [7562]={
+ ["next_chapter"]=7563,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1803,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522940,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5889,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=594818,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=5889,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=609551,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=756,
+ ["unit"]=0
+ }
+ },
+ [7563]={
+ ["next_chapter"]=7564,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1803,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=522986,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=5948,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=600766,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=5948,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=609551,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=756,
+ ["unit"]=0
+ }
+ },
+ [7564]={
+ ["next_chapter"]=7565,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1804,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=523034,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6008,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=606774,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=6008,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=609551,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=756,
+ ["unit"]=0
+ }
+ },
+ [7565]={
+ ["next_chapter"]=7566,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1804,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=523083,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6068,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=612842,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=6068,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=609551,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=756,
+ ["unit"]=0
+ }
+ },
+ [7566]={
+ ["next_chapter"]=7567,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1804,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=523134,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6128,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=618970,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=6128,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=609551,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=756,
+ ["unit"]=0
+ }
+ },
+ [7567]={
+ ["next_chapter"]=7568,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1804,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=523186,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6190,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=625160,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=6190,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=609551,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=756,
+ ["unit"]=0
+ }
+ },
+ [7568]={
+ ["next_chapter"]=7569,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1804,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=523240,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6252,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=631412,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=6252,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=609551,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=756,
+ ["unit"]=0
+ }
+ },
+ [7569]={
+ ["next_chapter"]=7570,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1804,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=523296,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6314,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=637726,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=6314,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=609551,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=756,
+ ["unit"]=0
+ }
+ },
+ [7570]={
+ ["next_chapter"]=7571,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=1805,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=523353,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6377,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=644103,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=6377,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=673324,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=757,
+ ["unit"]=0
+ }
+ },
+ [7571]={
+ ["next_chapter"]=7572,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1805,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=523412,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6441,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=650544,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=6441,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=673324,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=757,
+ ["unit"]=0
+ }
+ },
+ [7572]={
+ ["next_chapter"]=7573,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1805,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=523472,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6505,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=657049,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=6505,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=673324,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=757,
+ ["unit"]=0
+ }
+ },
+ [7573]={
+ ["next_chapter"]=7574,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1805,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=523534,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6570,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=663620,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=6570,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=673324,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=757,
+ ["unit"]=0
+ }
+ },
+ [7574]={
+ ["next_chapter"]=7575,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1806,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=523598,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6636,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=670256,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=6636,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=673324,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=757,
+ ["unit"]=0
+ }
+ },
+ [7575]={
+ ["next_chapter"]=7576,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1806,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=523664,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6703,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=676959,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=6703,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=673324,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=757,
+ ["unit"]=0
+ }
+ },
+ [7576]={
+ ["next_chapter"]=7577,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1806,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=523731,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6770,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=683728,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=6770,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=673324,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=757,
+ ["unit"]=0
+ }
+ },
+ [7577]={
+ ["next_chapter"]=7578,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1806,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=523801,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6837,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=690566,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=6837,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=673324,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=757,
+ ["unit"]=0
+ }
+ },
+ [7578]={
+ ["next_chapter"]=7579,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1806,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=523872,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6906,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=697471,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=6906,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=673324,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=757,
+ ["unit"]=0
+ }
+ },
+ [7579]={
+ ["next_chapter"]=7580,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1807,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=523945,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=6975,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=704446,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=6975,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=673324,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=757,
+ ["unit"]=0
+ }
+ },
+ [7580]={
+ ["next_chapter"]=7581,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=1807,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=524019,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7044,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=711490,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=7044,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=743769,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=758,
+ ["unit"]=0
+ }
+ },
+ [7581]={
+ ["next_chapter"]=7582,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1807,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=524096,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7115,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=718605,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=7115,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=743769,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=758,
+ ["unit"]=0
+ }
+ },
+ [7582]={
+ ["next_chapter"]=7583,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1807,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=524175,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7186,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=725791,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=7186,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=743769,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=758,
+ ["unit"]=0
+ }
+ },
+ [7583]={
+ ["next_chapter"]=7584,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1808,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=524255,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7258,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=733049,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=7258,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=743769,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=758,
+ ["unit"]=0
+ }
+ },
+ [7584]={
+ ["next_chapter"]=7585,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1808,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=524338,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7330,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=740380,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=7330,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=743769,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=758,
+ ["unit"]=0
+ }
+ },
+ [7585]={
+ ["next_chapter"]=7586,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1808,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=524422,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7404,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=747784,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=7404,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=743769,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=758,
+ ["unit"]=0
+ }
+ },
+ [7586]={
+ ["next_chapter"]=7587,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1809,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=524509,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7478,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=755261,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=7478,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=743769,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=758,
+ ["unit"]=0
+ }
+ },
+ [7587]={
+ ["next_chapter"]=7588,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1809,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=524597,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7553,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=762814,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=7553,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=743769,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=758,
+ ["unit"]=0
+ }
+ },
+ [7588]={
+ ["next_chapter"]=7589,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1809,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=524688,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7628,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=770442,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=7628,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=743769,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=758,
+ ["unit"]=0
+ }
+ },
+ [7589]={
+ ["next_chapter"]=7590,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1810,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=524780,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7704,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=778147,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=7704,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=743769,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=758,
+ ["unit"]=0
+ }
+ },
+ [7590]={
+ ["next_chapter"]=7591,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=1810,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=524875,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7781,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=785928,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=7781,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=821583,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=759,
+ ["unit"]=0
+ }
+ },
+ [7591]={
+ ["next_chapter"]=7592,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1810,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=524972,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7859,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=793787,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=7859,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=821583,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=759,
+ ["unit"]=0
+ }
+ },
+ [7592]={
+ ["next_chapter"]=7593,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1811,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=525071,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=7938,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=801725,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=7938,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=821583,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=759,
+ ["unit"]=0
+ }
+ },
+ [7593]={
+ ["next_chapter"]=7594,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1811,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=525172,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8017,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=809742,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=8017,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=821583,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=759,
+ ["unit"]=0
+ }
+ },
+ [7594]={
+ ["next_chapter"]=7595,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1811,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=525276,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8097,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=817840,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=8097,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=821583,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=759,
+ ["unit"]=0
+ }
+ },
+ [7595]={
+ ["next_chapter"]=7596,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1812,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=525381,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8178,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=826018,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=8178,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=821583,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=759,
+ ["unit"]=0
+ }
+ },
+ [7596]={
+ ["next_chapter"]=7597,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1812,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=525489,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8260,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=834278,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=8260,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=821583,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=759,
+ ["unit"]=0
+ }
+ },
+ [7597]={
+ ["next_chapter"]=7598,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1812,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=525600,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8343,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=842621,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=8343,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=821583,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=759,
+ ["unit"]=0
+ }
+ },
+ [7598]={
+ ["next_chapter"]=7599,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1813,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=525712,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8426,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=851047,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=8426,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=821583,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=759,
+ ["unit"]=0
+ }
+ },
+ [7599]={
+ ["next_chapter"]=7600,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1813,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=525827,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8510,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=859558,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=8510,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=821583,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=759,
+ ["unit"]=0
+ }
+ },
+ [7600]={
+ ["next_chapter"]=7601,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=1814,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=525944,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8596,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=868153,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=8596,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=907539,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=760,
+ ["unit"]=0
+ }
+ },
+ [7601]={
+ ["next_chapter"]=7602,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1814,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=526064,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8682,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=876835,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=8682,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=907539,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=760,
+ ["unit"]=0
+ }
+ },
+ [7602]={
+ ["next_chapter"]=7603,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1814,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=526185,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8768,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=885603,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=8768,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=907539,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=760,
+ ["unit"]=0
+ }
+ },
+ [7603]={
+ ["next_chapter"]=7604,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1815,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=526310,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8856,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=894459,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=8856,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=907539,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=760,
+ ["unit"]=0
+ }
+ },
+ [7604]={
+ ["next_chapter"]=7605,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1815,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=526436,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=8945,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=903404,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=8945,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=907539,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=760,
+ ["unit"]=0
+ }
+ },
+ [7605]={
+ ["next_chapter"]=7606,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1816,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=526566,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=9034,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=912438,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=9034,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=907539,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=760,
+ ["unit"]=0
+ }
+ },
+ [7606]={
+ ["next_chapter"]=7607,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1816,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=526697,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=9124,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=921562,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=9124,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=907539,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=760,
+ ["unit"]=0
+ }
+ },
+ [7607]={
+ ["next_chapter"]=7608,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1817,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=526832,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=9216,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=930778,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=9216,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=907539,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=760,
+ ["unit"]=0
+ }
+ },
+ [7608]={
+ ["next_chapter"]=7609,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1817,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=526968,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=9308,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=940086,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=9308,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=907539,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=760,
+ ["unit"]=0
+ }
+ },
+ [7609]={
+ ["next_chapter"]=7610,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1818,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=527108,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=9401,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=949487,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=9401,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=907539,
+ ["unit"]=10
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=760,
+ ["unit"]=0
+ }
+ },
+ [7610]={
+ ["next_chapter"]=7611,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=1818,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=527249,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=9495,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=958982,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=9495,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1002,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=761,
+ ["unit"]=0
+ }
+ },
+ [7611]={
+ ["next_chapter"]=7612,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1819,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=527394,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=9590,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=968571,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=9590,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1002,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=761,
+ ["unit"]=0
+ }
+ },
+ [7612]={
+ ["next_chapter"]=7613,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1819,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=527541,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=9686,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=978257,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=9686,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1002,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=761,
+ ["unit"]=0
+ }
+ },
+ [7613]={
+ ["next_chapter"]=7614,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1820,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=527691,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=9783,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=988040,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=9783,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1002,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=761,
+ ["unit"]=0
+ }
+ },
+ [7614]={
+ ["next_chapter"]=7615,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1820,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=527843,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=9880,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=997920,
+ ["unit"]=10
+ },
+ ["idle_gold"]={
+ ["value"]=9880,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1002,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=761,
+ ["unit"]=0
+ }
+ },
+ [7615]={
+ ["next_chapter"]=7616,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1821,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=527998,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=9979,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1008,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=9979,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1002,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=761,
+ ["unit"]=0
+ }
+ },
+ [7616]={
+ ["next_chapter"]=7617,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1821,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=528156,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=10079,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1018,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=10079,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1002,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=761,
+ ["unit"]=0
+ }
+ },
+ [7617]={
+ ["next_chapter"]=7618,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1822,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=528317,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=10180,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1028,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=10180,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1002,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=761,
+ ["unit"]=0
+ }
+ },
+ [7618]={
+ ["next_chapter"]=7619,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1822,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=528480,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=10282,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1038,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=10282,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1002,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=761,
+ ["unit"]=0
+ }
+ },
+ [7619]={
+ ["next_chapter"]=7620,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1823,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=528646,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=10384,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1049,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=10384,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1002,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=761,
+ ["unit"]=0
+ }
+ },
+ [7620]={
+ ["next_chapter"]=7621,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=1824,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=528815,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=10488,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1059,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=10488,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1107,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=762,
+ ["unit"]=0
+ }
+ },
+ [7621]={
+ ["next_chapter"]=7622,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1824,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=528987,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=10593,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1070,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=10593,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1107,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=762,
+ ["unit"]=0
+ }
+ },
+ [7622]={
+ ["next_chapter"]=7623,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1825,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=529162,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=10699,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1081,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=10699,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1107,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=762,
+ ["unit"]=0
+ }
+ },
+ [7623]={
+ ["next_chapter"]=7624,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1825,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=529339,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=10806,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1091,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=10806,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1107,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=762,
+ ["unit"]=0
+ }
+ },
+ [7624]={
+ ["next_chapter"]=7625,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1826,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=529520,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=10914,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1102,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=10914,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1107,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=762,
+ ["unit"]=0
+ }
+ },
+ [7625]={
+ ["next_chapter"]=7626,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1827,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=529703,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=11023,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1113,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=11023,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1107,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=762,
+ ["unit"]=0
+ }
+ },
+ [7626]={
+ ["next_chapter"]=7627,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1827,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=529889,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=11133,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1124,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=11133,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1107,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=762,
+ ["unit"]=0
+ }
+ },
+ [7627]={
+ ["next_chapter"]=7628,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1828,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=530079,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=11245,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1136,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=11245,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1107,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=762,
+ ["unit"]=0
+ }
+ },
+ [7628]={
+ ["next_chapter"]=7629,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1829,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=530271,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=11357,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1147,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=11357,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1107,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=762,
+ ["unit"]=0
+ }
+ },
+ [7629]={
+ ["next_chapter"]=7630,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1829,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=530467,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=11471,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1159,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=11471,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1107,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=762,
+ ["unit"]=0
+ }
+ },
+ [7630]={
+ ["next_chapter"]=7631,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=1830,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=530665,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=11586,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1170,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=11586,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1223,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=763,
+ ["unit"]=0
+ }
+ },
+ [7631]={
+ ["next_chapter"]=7632,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1831,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=530866,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=11701,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1182,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=11701,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1223,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=763,
+ ["unit"]=0
+ }
+ },
+ [7632]={
+ ["next_chapter"]=7633,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1831,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=531071,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=11818,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1194,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=11818,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1223,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=763,
+ ["unit"]=0
+ }
+ },
+ [7633]={
+ ["next_chapter"]=7634,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1832,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=531279,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=11937,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1206,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=11937,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1223,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=763,
+ ["unit"]=0
+ }
+ },
+ [7634]={
+ ["next_chapter"]=7635,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1833,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=531490,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=12056,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1218,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=12056,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1223,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=763,
+ ["unit"]=0
+ }
+ },
+ [7635]={
+ ["next_chapter"]=7636,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1833,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=531704,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=12177,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1230,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=12177,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1223,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=763,
+ ["unit"]=0
+ }
+ },
+ [7636]={
+ ["next_chapter"]=7637,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1834,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=531921,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=12298,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1242,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=12298,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1223,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=763,
+ ["unit"]=0
+ }
+ },
+ [7637]={
+ ["next_chapter"]=7638,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1835,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=532141,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=12421,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1255,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=12421,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1223,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=763,
+ ["unit"]=0
+ }
+ },
+ [7638]={
+ ["next_chapter"]=7639,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1836,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=532365,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=12545,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1267,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=12545,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1223,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=763,
+ ["unit"]=0
+ }
+ },
+ [7639]={
+ ["next_chapter"]=7640,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1837,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=532592,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=12671,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1280,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=12671,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1223,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=763,
+ ["unit"]=0
+ }
+ },
+ [7640]={
+ ["next_chapter"]=7641,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=1837,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=532822,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=12798,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1293,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=12798,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1351,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=764,
+ ["unit"]=0
+ }
+ },
+ [7641]={
+ ["next_chapter"]=7642,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1838,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=533056,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=12926,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1305,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=12926,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1351,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=764,
+ ["unit"]=0
+ }
+ },
+ [7642]={
+ ["next_chapter"]=7643,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1839,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=533293,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=13055,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1319,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=13055,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1351,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=764,
+ ["unit"]=0
+ }
+ },
+ [7643]={
+ ["next_chapter"]=7644,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1840,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=533533,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=13185,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1332,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=13185,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1351,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=764,
+ ["unit"]=0
+ }
+ },
+ [7644]={
+ ["next_chapter"]=7645,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1841,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=533777,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=13317,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1345,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=13317,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1351,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=764,
+ ["unit"]=0
+ }
+ },
+ [7645]={
+ ["next_chapter"]=7646,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1841,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=534024,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=13450,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1358,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=13450,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1351,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=764,
+ ["unit"]=0
+ }
+ },
+ [7646]={
+ ["next_chapter"]=7647,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1842,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=534274,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=13585,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1372,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=13585,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1351,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=764,
+ ["unit"]=0
+ }
+ },
+ [7647]={
+ ["next_chapter"]=7648,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1843,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=534528,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=13721,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1386,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=13721,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1351,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=764,
+ ["unit"]=0
+ }
+ },
+ [7648]={
+ ["next_chapter"]=7649,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1844,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=534786,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=13858,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1400,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=13858,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1351,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=764,
+ ["unit"]=0
+ }
+ },
+ [7649]={
+ ["next_chapter"]=7650,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1845,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=535047,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=13997,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1414,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=13997,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1351,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=764,
+ ["unit"]=0
+ }
+ },
+ [7650]={
+ ["next_chapter"]=7651,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=1846,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=535311,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=14137,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1428,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=14137,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1493,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=765,
+ ["unit"]=0
+ }
+ },
+ [7651]={
+ ["next_chapter"]=7652,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1847,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=535579,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=14278,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1442,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=14278,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1493,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=765,
+ ["unit"]=0
+ }
+ },
+ [7652]={
+ ["next_chapter"]=7653,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1848,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=535851,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=14421,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1456,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=14421,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1493,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=765,
+ ["unit"]=0
+ }
+ },
+ [7653]={
+ ["next_chapter"]=7654,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1849,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=536126,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=14565,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1471,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=14565,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1493,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=765,
+ ["unit"]=0
+ }
+ },
+ [7654]={
+ ["next_chapter"]=7655,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1850,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=536405,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=14711,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1486,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=14711,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1493,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=765,
+ ["unit"]=0
+ }
+ },
+ [7655]={
+ ["next_chapter"]=7656,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1851,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=536687,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=14858,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1501,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=14858,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1493,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=765,
+ ["unit"]=0
+ }
+ },
+ [7656]={
+ ["next_chapter"]=7657,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1852,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=536973,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=15006,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1516,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=15006,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1493,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=765,
+ ["unit"]=0
+ }
+ },
+ [7657]={
+ ["next_chapter"]=7658,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1853,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=537263,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=15156,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1531,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=15156,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1493,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=765,
+ ["unit"]=0
+ }
+ },
+ [7658]={
+ ["next_chapter"]=7659,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1854,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=537556,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=15308,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1546,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=15308,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1493,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=765,
+ ["unit"]=0
+ }
+ },
+ [7659]={
+ ["next_chapter"]=7660,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1855,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=537854,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=15461,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1562,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=15461,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1493,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=765,
+ ["unit"]=0
+ }
+ },
+ [7660]={
+ ["next_chapter"]=7661,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=1856,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=538155,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=15616,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1577,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=15616,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1649,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=766,
+ ["unit"]=0
+ }
+ },
+ [7661]={
+ ["next_chapter"]=7662,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1857,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=538459,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=15772,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1593,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=15772,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1649,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=766,
+ ["unit"]=0
+ }
+ },
+ [7662]={
+ ["next_chapter"]=7663,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1858,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=538768,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=15929,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1609,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=15929,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1649,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=766,
+ ["unit"]=0
+ }
+ },
+ [7663]={
+ ["next_chapter"]=7664,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1859,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=539080,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=16089,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1625,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=16089,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1649,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=766,
+ ["unit"]=0
+ }
+ },
+ [7664]={
+ ["next_chapter"]=7665,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1860,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=539397,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=16250,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1641,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=16250,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1649,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=766,
+ ["unit"]=0
+ }
+ },
+ [7665]={
+ ["next_chapter"]=7666,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1861,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=539717,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=16412,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1658,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=16412,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1649,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=766,
+ ["unit"]=0
+ }
+ },
+ [7666]={
+ ["next_chapter"]=7667,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1862,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=540041,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=16576,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1674,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=16576,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1649,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=766,
+ ["unit"]=0
+ }
+ },
+ [7667]={
+ ["next_chapter"]=7668,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1863,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=540369,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=16742,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1691,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=16742,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1649,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=766,
+ ["unit"]=0
+ }
+ },
+ [7668]={
+ ["next_chapter"]=7669,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1864,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=540701,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=16909,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1708,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=16909,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1649,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=766,
+ ["unit"]=0
+ }
+ },
+ [7669]={
+ ["next_chapter"]=7670,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1866,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=541037,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=17079,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1725,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=17079,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1649,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=766,
+ ["unit"]=0
+ }
+ },
+ [7670]={
+ ["next_chapter"]=7671,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=1867,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=541377,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=17249,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1742,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=17249,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1821,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=767,
+ ["unit"]=0
+ }
+ },
+ [7671]={
+ ["next_chapter"]=7672,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1868,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=541721,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=17422,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1760,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=17422,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1821,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=767,
+ ["unit"]=0
+ }
+ },
+ [7672]={
+ ["next_chapter"]=7673,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1869,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=542069,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=17596,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1777,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=17596,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1821,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=767,
+ ["unit"]=0
+ }
+ },
+ [7673]={
+ ["next_chapter"]=7674,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1870,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=542421,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=17772,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1795,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=17772,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1821,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=767,
+ ["unit"]=0
+ }
+ },
+ [7674]={
+ ["next_chapter"]=7675,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1872,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=542777,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=17950,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1813,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=17950,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1821,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=767,
+ ["unit"]=0
+ }
+ },
+ [7675]={
+ ["next_chapter"]=7676,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1873,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=543137,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=18129,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1831,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=18129,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1821,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=767,
+ ["unit"]=0
+ }
+ },
+ [7676]={
+ ["next_chapter"]=7677,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1874,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=543502,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=18310,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1849,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=18310,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1821,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=767,
+ ["unit"]=0
+ }
+ },
+ [7677]={
+ ["next_chapter"]=7678,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1875,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=543870,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=18494,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1868,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=18494,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1821,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=767,
+ ["unit"]=0
+ }
+ },
+ [7678]={
+ ["next_chapter"]=7679,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1877,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=544243,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=18679,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1887,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=18679,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1821,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=767,
+ ["unit"]=0
+ }
+ },
+ [7679]={
+ ["next_chapter"]=7680,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1878,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=544620,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=18865,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1905,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=18865,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=1821,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=767,
+ ["unit"]=0
+ }
+ },
+ [7680]={
+ ["next_chapter"]=7681,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=1879,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=545001,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=19054,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1924,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=19054,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=2012,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=768,
+ ["unit"]=0
+ }
+ },
+ [7681]={
+ ["next_chapter"]=7682,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1881,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=545387,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=19244,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1944,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=19244,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=2012,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=768,
+ ["unit"]=0
+ }
+ },
+ [7682]={
+ ["next_chapter"]=7683,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1882,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=545777,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=19437,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1963,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=19437,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=2012,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=768,
+ ["unit"]=0
+ }
+ },
+ [7683]={
+ ["next_chapter"]=7684,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1883,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=546171,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=19631,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1983,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=19631,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=2012,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=768,
+ ["unit"]=0
+ }
+ },
+ [7684]={
+ ["next_chapter"]=7685,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1885,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=546569,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=19828,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2003,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=19828,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=2012,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=768,
+ ["unit"]=0
+ }
+ },
+ [7685]={
+ ["next_chapter"]=7686,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1886,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=546972,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=20026,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2023,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=20026,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=2012,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=768,
+ ["unit"]=0
+ }
+ },
+ [7686]={
+ ["next_chapter"]=7687,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1888,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=547379,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=20226,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2043,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=20226,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=2012,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=768,
+ ["unit"]=0
+ }
+ },
+ [7687]={
+ ["next_chapter"]=7688,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1889,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=547791,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=20428,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2063,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=20428,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=2012,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=768,
+ ["unit"]=0
+ }
+ },
+ [7688]={
+ ["next_chapter"]=7689,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1890,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=548207,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=20633,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2084,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=20633,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=2012,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=768,
+ ["unit"]=0
+ }
+ },
+ [7689]={
+ ["next_chapter"]=7690,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1892,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=548627,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=20839,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2105,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=20839,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=2012,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=768,
+ ["unit"]=0
+ }
+ },
+ [7690]={
+ ["next_chapter"]=7691,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=1893,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=549052,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=21047,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2126,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=21047,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=2222,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=769,
+ ["unit"]=0
+ }
+ },
+ [7691]={
+ ["next_chapter"]=7692,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1895,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=549481,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=21258,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2147,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=21258,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=2222,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=769,
+ ["unit"]=0
+ }
+ },
+ [7692]={
+ ["next_chapter"]=7693,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1896,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=549915,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=21470,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2169,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=21470,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=2222,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=769,
+ ["unit"]=0
+ }
+ },
+ [7693]={
+ ["next_chapter"]=7694,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1898,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=550354,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=21685,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2190,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=21685,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=2222,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=769,
+ ["unit"]=0
+ }
+ },
+ [7694]={
+ ["next_chapter"]=7695,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1899,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=550797,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=21902,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2212,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=21902,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=2222,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=769,
+ ["unit"]=0
+ }
+ },
+ [7695]={
+ ["next_chapter"]=7696,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1901,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=551244,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=22121,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2234,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=22121,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=2222,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=769,
+ ["unit"]=0
+ }
+ },
+ [7696]={
+ ["next_chapter"]=7697,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1902,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=551696,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=22342,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2257,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=22342,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=2222,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=769,
+ ["unit"]=0
+ }
+ },
+ [7697]={
+ ["next_chapter"]=7698,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1904,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=552153,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=22566,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2279,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=22566,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=2222,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=769,
+ ["unit"]=0
+ }
+ },
+ [7698]={
+ ["next_chapter"]=7699,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1906,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=552615,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=22791,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2302,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=22791,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=2222,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=769,
+ ["unit"]=0
+ }
+ },
+ [7699]={
+ ["next_chapter"]=7700,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1907,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=553081,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=23019,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2325,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=23019,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=2222,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=769,
+ ["unit"]=0
+ }
+ },
+ [7700]={
+ ["next_chapter"]=7701,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=1909,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=553552,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=23249,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2348,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=23249,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=2455,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=770,
+ ["unit"]=0
+ }
+ },
+ [7701]={
+ ["next_chapter"]=7702,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1910,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=554028,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=23482,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2372,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=23482,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=2455,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=770,
+ ["unit"]=0
+ }
+ },
+ [7702]={
+ ["next_chapter"]=7703,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1912,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=554508,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=23717,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2395,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=23717,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=2455,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=770,
+ ["unit"]=0
+ }
+ },
+ [7703]={
+ ["next_chapter"]=7704,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1914,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=554993,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=23954,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2419,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=23954,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=2455,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=770,
+ ["unit"]=0
+ }
+ },
+ [7704]={
+ ["next_chapter"]=7705,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1915,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=555483,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=24193,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2444,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=24193,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=2455,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=770,
+ ["unit"]=0
+ }
+ },
+ [7705]={
+ ["next_chapter"]=7706,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1917,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=555978,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=24435,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2468,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=24435,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=2455,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=770,
+ ["unit"]=0
+ }
+ },
+ [7706]={
+ ["next_chapter"]=7707,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1919,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=556478,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=24680,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2493,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=24680,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=2455,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=770,
+ ["unit"]=0
+ }
+ },
+ [7707]={
+ ["next_chapter"]=7708,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1921,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=556982,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=24927,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2518,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=24927,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=2455,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=770,
+ ["unit"]=0
+ }
+ },
+ [7708]={
+ ["next_chapter"]=7709,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1922,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=557492,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=25176,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2543,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=25176,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=2455,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=770,
+ ["unit"]=0
+ }
+ },
+ [7709]={
+ ["next_chapter"]=7710,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1924,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=558006,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=25428,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2568,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=25428,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=2455,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=770,
+ ["unit"]=0
+ }
+ },
+ [7710]={
+ ["next_chapter"]=7711,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=1926,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=558525,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=25682,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2594,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=25682,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=2712,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=771,
+ ["unit"]=0
+ }
+ },
+ [7711]={
+ ["next_chapter"]=7712,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1928,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=559050,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=25939,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2620,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=25939,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=2712,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=771,
+ ["unit"]=0
+ }
+ },
+ [7712]={
+ ["next_chapter"]=7713,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1930,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=559579,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=26198,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2646,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=26198,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=2712,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=771,
+ ["unit"]=0
+ }
+ },
+ [7713]={
+ ["next_chapter"]=7714,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1931,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=560113,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=26460,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2672,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=26460,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=2712,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=771,
+ ["unit"]=0
+ }
+ },
+ [7714]={
+ ["next_chapter"]=7715,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1933,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=560653,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=26725,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2699,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=26725,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=2712,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=771,
+ ["unit"]=0
+ }
+ },
+ [7715]={
+ ["next_chapter"]=7716,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1935,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=561197,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=26992,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2726,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=26992,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=2712,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=771,
+ ["unit"]=0
+ }
+ },
+ [7716]={
+ ["next_chapter"]=7717,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1937,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=561746,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=27262,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2753,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=27262,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=2712,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=771,
+ ["unit"]=0
+ }
+ },
+ [7717]={
+ ["next_chapter"]=7718,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1939,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=562301,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=27534,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2781,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=27534,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=2712,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=771,
+ ["unit"]=0
+ }
+ },
+ [7718]={
+ ["next_chapter"]=7719,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1941,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=562861,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=27810,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2809,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=27810,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=2712,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=771,
+ ["unit"]=0
+ }
+ },
+ [7719]={
+ ["next_chapter"]=7720,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1943,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=563426,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=28088,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2837,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=28088,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=2712,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=771,
+ ["unit"]=0
+ }
+ },
+ [7720]={
+ ["next_chapter"]=7721,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=1945,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=563996,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=28369,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2865,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=28369,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=2995,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=772,
+ ["unit"]=0
+ }
+ },
+ [7721]={
+ ["next_chapter"]=7722,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1947,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=564571,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=28652,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2894,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=28652,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=2995,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=772,
+ ["unit"]=0
+ }
+ },
+ [7722]={
+ ["next_chapter"]=7723,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1949,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=565151,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=28939,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2923,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=28939,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=2995,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=772,
+ ["unit"]=0
+ }
+ },
+ [7723]={
+ ["next_chapter"]=7724,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1951,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=565737,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=29228,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2952,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=29228,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=2995,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=772,
+ ["unit"]=0
+ }
+ },
+ [7724]={
+ ["next_chapter"]=7725,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1953,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=566328,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=29521,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2982,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=29521,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=2995,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=772,
+ ["unit"]=0
+ }
+ },
+ [7725]={
+ ["next_chapter"]=7726,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1955,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=566925,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=29816,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3011,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=29816,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=2995,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=772,
+ ["unit"]=0
+ }
+ },
+ [7726]={
+ ["next_chapter"]=7727,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1957,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=567526,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=30114,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3042,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=30114,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=2995,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=772,
+ ["unit"]=0
+ }
+ },
+ [7727]={
+ ["next_chapter"]=7728,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1959,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=568133,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=30415,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3072,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=30415,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=2995,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=772,
+ ["unit"]=0
+ }
+ },
+ [7728]={
+ ["next_chapter"]=7729,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1961,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=568746,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=30719,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3103,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=30719,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=2995,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=772,
+ ["unit"]=0
+ }
+ },
+ [7729]={
+ ["next_chapter"]=7730,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1963,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=569363,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=31026,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3134,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=31026,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=2995,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=772,
+ ["unit"]=0
+ }
+ },
+ [7730]={
+ ["next_chapter"]=7731,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=1965,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=569987,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=31337,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3165,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=31337,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=3309,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=773,
+ ["unit"]=0
+ }
+ },
+ [7731]={
+ ["next_chapter"]=7732,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1968,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=570615,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=31650,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3197,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=31650,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=3309,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=773,
+ ["unit"]=0
+ }
+ },
+ [7732]={
+ ["next_chapter"]=7733,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1970,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=571249,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=31967,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3229,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=31967,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=3309,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=773,
+ ["unit"]=0
+ }
+ },
+ [7733]={
+ ["next_chapter"]=7734,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1972,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=571889,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=32286,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3261,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=32286,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=3309,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=773,
+ ["unit"]=0
+ }
+ },
+ [7734]={
+ ["next_chapter"]=7735,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1974,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=572534,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=32609,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3294,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=32609,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=3309,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=773,
+ ["unit"]=0
+ }
+ },
+ [7735]={
+ ["next_chapter"]=7736,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1976,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=573185,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=32935,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3326,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=32935,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=3309,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=773,
+ ["unit"]=0
+ }
+ },
+ [7736]={
+ ["next_chapter"]=7737,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1979,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=573841,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=33265,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3360,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=33265,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=3309,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=773,
+ ["unit"]=0
+ }
+ },
+ [7737]={
+ ["next_chapter"]=7738,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1981,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=574503,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=33597,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3393,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=33597,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=3309,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=773,
+ ["unit"]=0
+ }
+ },
+ [7738]={
+ ["next_chapter"]=7739,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1983,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=575170,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=33933,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3427,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=33933,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=3309,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=773,
+ ["unit"]=0
+ }
+ },
+ [7739]={
+ ["next_chapter"]=7740,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1986,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=575843,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=34273,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3462,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=34273,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=3309,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=773,
+ ["unit"]=0
+ }
+ },
+ [7740]={
+ ["next_chapter"]=7741,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=1988,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=576522,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=34615,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3496,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=34615,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=3655,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=774,
+ ["unit"]=0
+ }
+ },
+ [7741]={
+ ["next_chapter"]=7742,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1990,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=577206,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=34961,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3531,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=34961,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=3655,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=774,
+ ["unit"]=0
+ }
+ },
+ [7742]={
+ ["next_chapter"]=7743,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1993,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=577896,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=35311,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3566,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=35311,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=3655,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=774,
+ ["unit"]=0
+ }
+ },
+ [7743]={
+ ["next_chapter"]=7744,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1995,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=578592,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=35664,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3602,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=35664,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=3655,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=774,
+ ["unit"]=0
+ }
+ },
+ [7744]={
+ ["next_chapter"]=7745,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1998,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=579294,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=36021,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3638,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=36021,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=3655,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=774,
+ ["unit"]=0
+ }
+ },
+ [7745]={
+ ["next_chapter"]=7746,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2000,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=580001,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=36381,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3674,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=36381,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=3655,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=774,
+ ["unit"]=0
+ }
+ },
+ [7746]={
+ ["next_chapter"]=7747,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2002,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=580714,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=36745,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3711,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=36745,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=3655,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=774,
+ ["unit"]=0
+ }
+ },
+ [7747]={
+ ["next_chapter"]=7748,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2005,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=581433,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=37112,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3748,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=37112,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=3655,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=774,
+ ["unit"]=0
+ }
+ },
+ [7748]={
+ ["next_chapter"]=7749,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2007,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=582158,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=37483,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3786,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=37483,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=3655,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=774,
+ ["unit"]=0
+ }
+ },
+ [7749]={
+ ["next_chapter"]=7750,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2010,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=582888,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=37858,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3824,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=37858,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=3655,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=774,
+ ["unit"]=0
+ }
+ },
+ [7750]={
+ ["next_chapter"]=7751,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=2013,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=583625,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=38237,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3862,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=38237,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=4037,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=775,
+ ["unit"]=0
+ }
+ },
+ [7751]={
+ ["next_chapter"]=7752,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2015,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=584367,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=38619,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3901,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=38619,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=4037,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=775,
+ ["unit"]=0
+ }
+ },
+ [7752]={
+ ["next_chapter"]=7753,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2018,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=585116,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=39005,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3940,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=39005,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=4037,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=775,
+ ["unit"]=0
+ }
+ },
+ [7753]={
+ ["next_chapter"]=7754,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2020,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=585870,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=39395,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3979,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=39395,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=4037,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=775,
+ ["unit"]=0
+ }
+ },
+ [7754]={
+ ["next_chapter"]=7755,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2023,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=586631,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=39789,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4019,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=39789,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=4037,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=775,
+ ["unit"]=0
+ }
+ },
+ [7755]={
+ ["next_chapter"]=7756,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2026,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=587397,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=40187,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4059,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=40187,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=4037,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=775,
+ ["unit"]=0
+ }
+ },
+ [7756]={
+ ["next_chapter"]=7757,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2028,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=588169,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=40589,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4099,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=40589,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=4037,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=775,
+ ["unit"]=0
+ }
+ },
+ [7757]={
+ ["next_chapter"]=7758,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2031,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=588948,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=40995,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4140,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=40995,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=4037,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=775,
+ ["unit"]=0
+ }
+ },
+ [7758]={
+ ["next_chapter"]=7759,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2034,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=589732,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=41405,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4182,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=41405,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=4037,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=775,
+ ["unit"]=0
+ }
+ },
+ [7759]={
+ ["next_chapter"]=7760,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2036,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=590523,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=41819,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4224,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=41819,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=4037,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=775,
+ ["unit"]=0
+ }
+ },
+ [7760]={
+ ["next_chapter"]=7761,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=2039,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=591320,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=42237,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4266,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=42237,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=4459,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=776,
+ ["unit"]=0
+ }
+ },
+ [7761]={
+ ["next_chapter"]=7762,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2042,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=592123,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=42660,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4309,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=42660,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=4459,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=776,
+ ["unit"]=0
+ }
+ },
+ [7762]={
+ ["next_chapter"]=7763,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2045,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=592932,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=43086,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4352,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=43086,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=4459,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=776,
+ ["unit"]=0
+ }
+ },
+ [7763]={
+ ["next_chapter"]=7764,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2047,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=593747,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=43517,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4395,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=43517,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=4459,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=776,
+ ["unit"]=0
+ }
+ },
+ [7764]={
+ ["next_chapter"]=7765,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2050,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=594569,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=43952,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4439,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=43952,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=4459,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=776,
+ ["unit"]=0
+ }
+ },
+ [7765]={
+ ["next_chapter"]=7766,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2053,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=595396,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=44392,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4484,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=44392,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=4459,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=776,
+ ["unit"]=0
+ }
+ },
+ [7766]={
+ ["next_chapter"]=7767,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2056,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=596230,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=44836,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4528,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=44836,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=4459,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=776,
+ ["unit"]=0
+ }
+ },
+ [7767]={
+ ["next_chapter"]=7768,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2059,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=597071,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=45284,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4574,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=45284,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=4459,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=776,
+ ["unit"]=0
+ }
+ },
+ [7768]={
+ ["next_chapter"]=7769,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2062,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=597917,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=45737,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4619,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=45737,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=4459,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=776,
+ ["unit"]=0
+ }
+ },
+ [7769]={
+ ["next_chapter"]=7770,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2065,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=598770,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=46194,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4666,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=46194,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=4459,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=776,
+ ["unit"]=0
+ }
+ },
+ [7770]={
+ ["next_chapter"]=7771,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=2068,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=599630,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=46656,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4712,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=46656,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=4926,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=777,
+ ["unit"]=0
+ }
+ },
+ [7771]={
+ ["next_chapter"]=7772,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2071,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=600496,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=47123,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4759,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=47123,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=4926,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=777,
+ ["unit"]=0
+ }
+ },
+ [7772]={
+ ["next_chapter"]=7773,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2074,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=601368,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=47594,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4807,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=47594,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=4926,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=777,
+ ["unit"]=0
+ }
+ },
+ [7773]={
+ ["next_chapter"]=7774,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2077,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=602246,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=48070,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4855,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=48070,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=4926,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=777,
+ ["unit"]=0
+ }
+ },
+ [7774]={
+ ["next_chapter"]=7775,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2080,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=603131,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=48551,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4904,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=48551,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=4926,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=777,
+ ["unit"]=0
+ }
+ },
+ [7775]={
+ ["next_chapter"]=7776,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2083,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=604023,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=49036,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4953,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=49036,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=4926,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=777,
+ ["unit"]=0
+ }
+ },
+ [7776]={
+ ["next_chapter"]=7777,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2086,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=604921,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=49526,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5002,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=49526,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=4926,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=777,
+ ["unit"]=0
+ }
+ },
+ [7777]={
+ ["next_chapter"]=7778,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2089,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=605826,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=50022,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5052,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=50022,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=4926,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=777,
+ ["unit"]=0
+ }
+ },
+ [7778]={
+ ["next_chapter"]=7779,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2092,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=606737,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=50522,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5103,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=50522,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=4926,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=777,
+ ["unit"]=0
+ }
+ },
+ [7779]={
+ ["next_chapter"]=7780,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2095,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=607654,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=51027,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5154,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=51027,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=4926,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=777,
+ ["unit"]=0
+ }
+ },
+ [7780]={
+ ["next_chapter"]=7781,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=2099,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=608579,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=51537,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5205,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=51537,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=5441,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=778,
+ ["unit"]=0
+ }
+ },
+ [7781]={
+ ["next_chapter"]=7782,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2102,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=609510,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=52053,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5257,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=52053,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=5441,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=778,
+ ["unit"]=0
+ }
+ },
+ [7782]={
+ ["next_chapter"]=7783,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2105,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=610447,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=52573,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5310,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=52573,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=5441,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=778,
+ ["unit"]=0
+ }
+ },
+ [7783]={
+ ["next_chapter"]=7784,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2108,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=611391,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=53099,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5363,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=53099,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=5441,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=778,
+ ["unit"]=0
+ }
+ },
+ [7784]={
+ ["next_chapter"]=7785,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2112,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=612342,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=53630,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5417,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=53630,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=5441,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=778,
+ ["unit"]=0
+ }
+ },
+ [7785]={
+ ["next_chapter"]=7786,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2115,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=613300,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=54166,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5471,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=54166,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=5441,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=778,
+ ["unit"]=0
+ }
+ },
+ [7786]={
+ ["next_chapter"]=7787,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2118,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=614265,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=54708,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5526,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=54708,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=5441,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=778,
+ ["unit"]=0
+ }
+ },
+ [7787]={
+ ["next_chapter"]=7788,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2122,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=615236,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=55255,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5581,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=55255,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=5441,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=778,
+ ["unit"]=0
+ }
+ },
+ [7788]={
+ ["next_chapter"]=7789,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2125,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=616214,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=55808,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5637,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=55808,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=5441,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=778,
+ ["unit"]=0
+ }
+ },
+ [7789]={
+ ["next_chapter"]=7790,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2128,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=617199,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=56366,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5693,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=56366,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=5441,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=778,
+ ["unit"]=0
+ }
+ },
+ [7790]={
+ ["next_chapter"]=7791,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=2132,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=618190,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=56929,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5750,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=56929,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=6011,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=779,
+ ["unit"]=0
+ }
+ },
+ [7791]={
+ ["next_chapter"]=7792,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2135,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=619189,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=57499,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5807,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=57499,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=6011,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=779,
+ ["unit"]=0
+ }
+ },
+ [7792]={
+ ["next_chapter"]=7793,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2139,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=620194,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=58074,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5865,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=58074,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=6011,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=779,
+ ["unit"]=0
+ }
+ },
+ [7793]={
+ ["next_chapter"]=7794,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2142,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=621206,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=58654,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5924,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=58654,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=6011,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=779,
+ ["unit"]=0
+ }
+ },
+ [7794]={
+ ["next_chapter"]=7795,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2146,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=622226,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=59241,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5983,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=59241,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=6011,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=779,
+ ["unit"]=0
+ }
+ },
+ [7795]={
+ ["next_chapter"]=7796,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2149,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=623252,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=59833,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6043,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=59833,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=6011,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=779,
+ ["unit"]=0
+ }
+ },
+ [7796]={
+ ["next_chapter"]=7797,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2153,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=624285,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=60432,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6104,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=60432,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=6011,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=779,
+ ["unit"]=0
+ }
+ },
+ [7797]={
+ ["next_chapter"]=7798,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2156,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=625325,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=61036,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6165,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=61036,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=6011,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=779,
+ ["unit"]=0
+ }
+ },
+ [7798]={
+ ["next_chapter"]=7799,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2160,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=626372,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=61646,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6226,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=61646,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=6011,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=779,
+ ["unit"]=0
+ }
+ },
+ [7799]={
+ ["next_chapter"]=7800,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2164,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=627427,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=62263,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6289,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=62263,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=6011,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=779,
+ ["unit"]=0
+ }
+ },
+ [7800]={
+ ["next_chapter"]=7801,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=2167,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=628488,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=62885,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6351,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=62885,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=6640,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=780,
+ ["unit"]=0
+ }
+ },
+ [7801]={
+ ["next_chapter"]=7802,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2171,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=629556,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=63514,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6415,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=63514,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=6640,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=780,
+ ["unit"]=0
+ }
+ },
+ [7802]={
+ ["next_chapter"]=7803,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2175,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=630632,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=64149,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6479,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=64149,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=6640,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=780,
+ ["unit"]=0
+ }
+ },
+ [7803]={
+ ["next_chapter"]=7804,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2178,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=631715,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=64791,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6544,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=64791,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=6640,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=780,
+ ["unit"]=0
+ }
+ },
+ [7804]={
+ ["next_chapter"]=7805,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2182,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=632805,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=65439,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6609,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=65439,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=6640,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=780,
+ ["unit"]=0
+ }
+ },
+ [7805]={
+ ["next_chapter"]=7806,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2186,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=633902,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=66093,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6675,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=66093,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=6640,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=780,
+ ["unit"]=0
+ }
+ },
+ [7806]={
+ ["next_chapter"]=7807,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2190,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=635006,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=66754,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6742,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=66754,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=6640,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=780,
+ ["unit"]=0
+ }
+ },
+ [7807]={
+ ["next_chapter"]=7808,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2194,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=636117,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=67422,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6810,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=67422,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=6640,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=780,
+ ["unit"]=0
+ }
+ },
+ [7808]={
+ ["next_chapter"]=7809,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2197,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=637236,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=68096,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6878,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=68096,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=6640,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=780,
+ ["unit"]=0
+ }
+ },
+ [7809]={
+ ["next_chapter"]=7810,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2201,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=638362,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=68777,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6946,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=68777,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=6640,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=780,
+ ["unit"]=0
+ }
+ },
+ [7810]={
+ ["next_chapter"]=7811,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=2205,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=639496,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=69465,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7016,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=69465,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=7334,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=781,
+ ["unit"]=0
+ }
+ },
+ [7811]={
+ ["next_chapter"]=7812,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2209,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=640636,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=70159,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7086,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=70159,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=7334,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=781,
+ ["unit"]=0
+ }
+ },
+ [7812]={
+ ["next_chapter"]=7813,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2213,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=641785,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=70861,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7157,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=70861,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=7334,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=781,
+ ["unit"]=0
+ }
+ },
+ [7813]={
+ ["next_chapter"]=7814,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2217,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=642940,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=71569,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7229,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=71569,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=7334,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=781,
+ ["unit"]=0
+ }
+ },
+ [7814]={
+ ["next_chapter"]=7815,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2221,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=644103,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=72285,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7301,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=72285,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=7334,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=781,
+ ["unit"]=0
+ }
+ },
+ [7815]={
+ ["next_chapter"]=7816,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2225,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=645273,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=73008,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7374,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=73008,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=7334,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=781,
+ ["unit"]=0
+ }
+ },
+ [7816]={
+ ["next_chapter"]=7817,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2229,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=646451,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=73738,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7448,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=73738,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=7334,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=781,
+ ["unit"]=0
+ }
+ },
+ [7817]={
+ ["next_chapter"]=7818,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2233,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=647636,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=74475,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7522,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=74475,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=7334,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=781,
+ ["unit"]=0
+ }
+ },
+ [7818]={
+ ["next_chapter"]=7819,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2237,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=648829,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=75220,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7597,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=75220,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=7334,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=781,
+ ["unit"]=0
+ }
+ },
+ [7819]={
+ ["next_chapter"]=7820,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2241,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=650029,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=75972,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7673,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=75972,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=7334,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=781,
+ ["unit"]=0
+ }
+ },
+ [7820]={
+ ["next_chapter"]=7821,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=2246,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=651237,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=76732,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7750,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=76732,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=8102,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=782,
+ ["unit"]=0
+ }
+ },
+ [7821]={
+ ["next_chapter"]=7822,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2250,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=652452,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=77499,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7827,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=77499,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=8102,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=782,
+ ["unit"]=0
+ }
+ },
+ [7822]={
+ ["next_chapter"]=7823,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2254,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=653675,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=78274,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7906,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=78274,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=8102,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=782,
+ ["unit"]=0
+ }
+ },
+ [7823]={
+ ["next_chapter"]=7824,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2258,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=654906,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=79057,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7985,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=79057,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=8102,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=782,
+ ["unit"]=0
+ }
+ },
+ [7824]={
+ ["next_chapter"]=7825,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2263,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=656144,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=79848,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8065,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=79848,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=8102,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=782,
+ ["unit"]=0
+ }
+ },
+ [7825]={
+ ["next_chapter"]=7826,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2267,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=657390,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=80646,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8145,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=80646,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=8102,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=782,
+ ["unit"]=0
+ }
+ },
+ [7826]={
+ ["next_chapter"]=7827,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2271,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=658644,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=81453,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8227,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=81453,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=8102,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=782,
+ ["unit"]=0
+ }
+ },
+ [7827]={
+ ["next_chapter"]=7828,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2276,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=659905,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=82267,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8309,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=82267,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=8102,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=782,
+ ["unit"]=0
+ }
+ },
+ [7828]={
+ ["next_chapter"]=7829,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2280,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=661174,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=83090,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8392,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=83090,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=8102,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=782,
+ ["unit"]=0
+ }
+ },
+ [7829]={
+ ["next_chapter"]=7830,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2284,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=662451,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=83921,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8476,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=83921,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=8102,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=782,
+ ["unit"]=0
+ }
+ },
+ [7830]={
+ ["next_chapter"]=7831,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=2289,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=663736,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=84760,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8561,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=84760,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=8949,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=783,
+ ["unit"]=0
+ }
+ },
+ [7831]={
+ ["next_chapter"]=7832,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2293,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=665028,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=85608,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8646,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=85608,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=8949,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=783,
+ ["unit"]=0
+ }
+ },
+ [7832]={
+ ["next_chapter"]=7833,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2298,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=666328,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=86464,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8733,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=86464,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=8949,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=783,
+ ["unit"]=0
+ }
+ },
+ [7833]={
+ ["next_chapter"]=7834,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2302,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=667636,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=87328,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8820,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=87328,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=8949,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=783,
+ ["unit"]=0
+ }
+ },
+ [7834]={
+ ["next_chapter"]=7835,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2307,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=668952,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=88202,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8908,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=88202,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=8949,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=783,
+ ["unit"]=0
+ }
+ },
+ [7835]={
+ ["next_chapter"]=7836,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2311,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=670276,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=89084,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8997,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=89084,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=8949,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=783,
+ ["unit"]=0
+ }
+ },
+ [7836]={
+ ["next_chapter"]=7837,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2316,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=671608,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=89974,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9087,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=89974,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=8949,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=783,
+ ["unit"]=0
+ }
+ },
+ [7837]={
+ ["next_chapter"]=7838,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2321,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=672948,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=90874,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9178,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=90874,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=8949,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=783,
+ ["unit"]=0
+ }
+ },
+ [7838]={
+ ["next_chapter"]=7839,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2325,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=674295,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=91783,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9270,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=91783,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=8949,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=783,
+ ["unit"]=0
+ }
+ },
+ [7839]={
+ ["next_chapter"]=7840,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2330,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=675651,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=92701,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9363,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=92701,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=8949,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=783,
+ ["unit"]=0
+ }
+ },
+ [7840]={
+ ["next_chapter"]=7841,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=2335,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=677015,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=93628,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9456,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=93628,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=9885,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=784,
+ ["unit"]=0
+ }
+ },
+ [7841]={
+ ["next_chapter"]=7842,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2339,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=678387,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=94564,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9551,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=94564,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=9885,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=784,
+ ["unit"]=0
+ }
+ },
+ [7842]={
+ ["next_chapter"]=7843,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2344,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=679767,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=95510,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9646,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=95510,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=9885,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=784,
+ ["unit"]=0
+ }
+ },
+ [7843]={
+ ["next_chapter"]=7844,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2349,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=681155,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=96465,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9743,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=96465,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=9885,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=784,
+ ["unit"]=0
+ }
+ },
+ [7844]={
+ ["next_chapter"]=7845,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2354,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=682551,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=97429,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9840,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=97429,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=9885,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=784,
+ ["unit"]=0
+ }
+ },
+ [7845]={
+ ["next_chapter"]=7846,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2358,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=683955,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=98404,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9939,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=98404,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=9885,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=784,
+ ["unit"]=0
+ }
+ },
+ [7846]={
+ ["next_chapter"]=7847,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2363,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=685367,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=99388,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10038,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=99388,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=9885,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=784,
+ ["unit"]=0
+ }
+ },
+ [7847]={
+ ["next_chapter"]=7848,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2368,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=686788,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=100382,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10139,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=100382,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=9885,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=784,
+ ["unit"]=0
+ }
+ },
+ [7848]={
+ ["next_chapter"]=7849,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2373,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=688217,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=101385,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10240,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=101385,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=9885,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=784,
+ ["unit"]=0
+ }
+ },
+ [7849]={
+ ["next_chapter"]=7850,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2378,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=689654,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=102399,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10342,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=102399,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=9885,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=784,
+ ["unit"]=0
+ }
+ },
+ [7850]={
+ ["next_chapter"]=7851,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=2383,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=691099,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=103423,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10446,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=103423,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=10920,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=785,
+ ["unit"]=0
+ }
+ },
+ [7851]={
+ ["next_chapter"]=7852,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2388,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=692553,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=104458,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10550,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=104458,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=10920,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=785,
+ ["unit"]=0
+ }
+ },
+ [7852]={
+ ["next_chapter"]=7853,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2393,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=694014,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=105502,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10656,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=105502,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=10920,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=785,
+ ["unit"]=0
+ }
+ },
+ [7853]={
+ ["next_chapter"]=7854,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2398,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=695485,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=106557,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10762,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=106557,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=10920,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=785,
+ ["unit"]=0
+ }
+ },
+ [7854]={
+ ["next_chapter"]=7855,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2403,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=696963,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=107623,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10870,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=107623,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=10920,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=785,
+ ["unit"]=0
+ }
+ },
+ [7855]={
+ ["next_chapter"]=7856,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2408,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=698450,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=108699,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10979,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=108699,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=10920,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=785,
+ ["unit"]=0
+ }
+ },
+ [7856]={
+ ["next_chapter"]=7857,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2414,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=699945,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=109786,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11088,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=109786,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=10920,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=785,
+ ["unit"]=0
+ }
+ },
+ [7857]={
+ ["next_chapter"]=7858,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2419,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=701449,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=110884,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11199,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=110884,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=10920,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=785,
+ ["unit"]=0
+ }
+ },
+ [7858]={
+ ["next_chapter"]=7859,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2424,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=702961,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=111993,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11311,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=111993,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=10920,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=785,
+ ["unit"]=0
+ }
+ },
+ [7859]={
+ ["next_chapter"]=7860,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2429,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=704482,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=113113,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11424,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=113113,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=10920,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=785,
+ ["unit"]=0
+ }
+ },
+ [7860]={
+ ["next_chapter"]=7861,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=2435,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=706011,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=114244,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11539,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=114244,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=12062,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=786,
+ ["unit"]=0
+ }
+ },
+ [7861]={
+ ["next_chapter"]=7862,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2440,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=707549,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=115386,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11654,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=115386,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=12062,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=786,
+ ["unit"]=0
+ }
+ },
+ [7862]={
+ ["next_chapter"]=7863,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2445,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=709095,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=116540,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11771,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=116540,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=12062,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=786,
+ ["unit"]=0
+ }
+ },
+ [7863]={
+ ["next_chapter"]=7864,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2451,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=710650,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=117705,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11888,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=117705,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=12062,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=786,
+ ["unit"]=0
+ }
+ },
+ [7864]={
+ ["next_chapter"]=7865,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2456,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=712213,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=118882,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12007,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=118882,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=12062,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=786,
+ ["unit"]=0
+ }
+ },
+ [7865]={
+ ["next_chapter"]=7866,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2461,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=713785,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=120071,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12127,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=120071,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=12062,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=786,
+ ["unit"]=0
+ }
+ },
+ [7866]={
+ ["next_chapter"]=7867,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2467,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=715366,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=121272,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12248,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=121272,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=12062,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=786,
+ ["unit"]=0
+ }
+ },
+ [7867]={
+ ["next_chapter"]=7868,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2472,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=716955,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=122485,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12371,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=122485,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=12062,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=786,
+ ["unit"]=0
+ }
+ },
+ [7868]={
+ ["next_chapter"]=7869,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2478,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=718553,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=123710,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12495,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=123710,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=12062,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=786,
+ ["unit"]=0
+ }
+ },
+ [7869]={
+ ["next_chapter"]=7870,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2483,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=720160,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=124947,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12620,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=124947,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=12062,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=786,
+ ["unit"]=0
+ }
+ },
+ [7870]={
+ ["next_chapter"]=7871,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=2489,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=721775,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=126196,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12746,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=126196,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=13324,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=787,
+ ["unit"]=0
+ }
+ },
+ [7871]={
+ ["next_chapter"]=7872,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2494,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=723400,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=127458,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12873,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=127458,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=13324,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=787,
+ ["unit"]=0
+ }
+ },
+ [7872]={
+ ["next_chapter"]=7873,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2500,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=725033,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=128733,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13002,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=128733,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=13324,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=787,
+ ["unit"]=0
+ }
+ },
+ [7873]={
+ ["next_chapter"]=7874,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2506,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=726674,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=130020,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13132,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=130020,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=13324,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=787,
+ ["unit"]=0
+ }
+ },
+ [7874]={
+ ["next_chapter"]=7875,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2511,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=728325,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=131320,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13263,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=131320,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=13324,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=787,
+ ["unit"]=0
+ }
+ },
+ [7875]={
+ ["next_chapter"]=7876,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2517,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=729984,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=132633,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13396,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=132633,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=13324,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=787,
+ ["unit"]=0
+ }
+ },
+ [7876]={
+ ["next_chapter"]=7877,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2523,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=731653,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=133960,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13530,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=133960,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=13324,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=787,
+ ["unit"]=0
+ }
+ },
+ [7877]={
+ ["next_chapter"]=7878,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2529,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=733330,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=135299,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13665,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=135299,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=13324,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=787,
+ ["unit"]=0
+ }
+ },
+ [7878]={
+ ["next_chapter"]=7879,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2535,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=735016,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=136652,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13802,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=136652,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=13324,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=787,
+ ["unit"]=0
+ }
+ },
+ [7879]={
+ ["next_chapter"]=7880,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2540,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=736711,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=138019,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13940,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=138019,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=13324,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=787,
+ ["unit"]=0
+ }
+ },
+ [7880]={
+ ["next_chapter"]=7881,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=2546,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=738415,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=139399,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14079,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=139399,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=14718,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=788,
+ ["unit"]=0
+ }
+ },
+ [7881]={
+ ["next_chapter"]=7882,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2552,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=740128,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=140793,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14220,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=140793,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=14718,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=788,
+ ["unit"]=0
+ }
+ },
+ [7882]={
+ ["next_chapter"]=7883,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2558,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=741850,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=142201,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14362,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=142201,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=14718,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=788,
+ ["unit"]=0
+ }
+ },
+ [7883]={
+ ["next_chapter"]=7884,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2564,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=743581,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=143623,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14506,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=143623,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=14718,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=788,
+ ["unit"]=0
+ }
+ },
+ [7884]={
+ ["next_chapter"]=7885,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2570,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=745322,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=145059,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14651,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=145059,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=14718,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=788,
+ ["unit"]=0
+ }
+ },
+ [7885]={
+ ["next_chapter"]=7886,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2576,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=747071,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=146510,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14797,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=146510,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=14718,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=788,
+ ["unit"]=0
+ }
+ },
+ [7886]={
+ ["next_chapter"]=7887,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2582,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=748829,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=147975,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14945,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=147975,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=14718,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=788,
+ ["unit"]=0
+ }
+ },
+ [7887]={
+ ["next_chapter"]=7888,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2588,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=750597,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=149455,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15095,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=149455,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=14718,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=788,
+ ["unit"]=0
+ }
+ },
+ [7888]={
+ ["next_chapter"]=7889,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2594,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=752373,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=150949,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15246,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=150949,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=14718,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=788,
+ ["unit"]=0
+ }
+ },
+ [7889]={
+ ["next_chapter"]=7890,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2601,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=754159,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=152459,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15398,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=152459,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=14718,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=788,
+ ["unit"]=0
+ }
+ },
+ [7890]={
+ ["next_chapter"]=7891,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=2607,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=755954,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=153983,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15552,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=153983,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=16258,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=789,
+ ["unit"]=0
+ }
+ },
+ [7891]={
+ ["next_chapter"]=7892,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2613,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=757758,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=155523,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15708,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=155523,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=16258,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=789,
+ ["unit"]=0
+ }
+ },
+ [7892]={
+ ["next_chapter"]=7893,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2619,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=759572,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=157078,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15865,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=157078,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=16258,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=789,
+ ["unit"]=0
+ }
+ },
+ [7893]={
+ ["next_chapter"]=7894,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2625,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=761395,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=158649,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16024,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=158649,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=16258,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=789,
+ ["unit"]=0
+ }
+ },
+ [7894]={
+ ["next_chapter"]=7895,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2632,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=763227,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=160236,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16184,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=160236,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=16258,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=789,
+ ["unit"]=0
+ }
+ },
+ [7895]={
+ ["next_chapter"]=7896,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2638,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=765068,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=161838,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16346,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=161838,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=16258,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=789,
+ ["unit"]=0
+ }
+ },
+ [7896]={
+ ["next_chapter"]=7897,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2645,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=766919,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=163456,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16509,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=163456,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=16258,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=789,
+ ["unit"]=0
+ }
+ },
+ [7897]={
+ ["next_chapter"]=7898,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2651,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=768779,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=165091,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16674,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=165091,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=16258,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=789,
+ ["unit"]=0
+ }
+ },
+ [7898]={
+ ["next_chapter"]=7899,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2657,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=770649,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=166742,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16841,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=166742,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=16258,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=789,
+ ["unit"]=0
+ }
+ },
+ [7899]={
+ ["next_chapter"]=7900,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2664,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=772528,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=168409,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17009,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=168409,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=16258,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=789,
+ ["unit"]=0
+ }
+ },
+ [7900]={
+ ["next_chapter"]=7901,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=2670,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=774416,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=170093,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17179,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=170093,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=17959,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=790,
+ ["unit"]=0
+ }
+ },
+ [7901]={
+ ["next_chapter"]=7902,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2677,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=776314,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=171794,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17351,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=171794,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=17959,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=790,
+ ["unit"]=0
+ }
+ },
+ [7902]={
+ ["next_chapter"]=7903,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2684,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=778221,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=173512,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17525,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=173512,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=17959,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=790,
+ ["unit"]=0
+ }
+ },
+ [7903]={
+ ["next_chapter"]=7904,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2690,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=780138,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=175247,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17700,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=175247,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=17959,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=790,
+ ["unit"]=0
+ }
+ },
+ [7904]={
+ ["next_chapter"]=7905,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2697,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=782064,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=177000,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17877,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=177000,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=17959,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=790,
+ ["unit"]=0
+ }
+ },
+ [7905]={
+ ["next_chapter"]=7906,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2703,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=784000,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=178770,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18056,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=178770,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=17959,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=790,
+ ["unit"]=0
+ }
+ },
+ [7906]={
+ ["next_chapter"]=7907,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2710,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=785946,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=180557,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18236,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=180557,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=17959,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=790,
+ ["unit"]=0
+ }
+ },
+ [7907]={
+ ["next_chapter"]=7908,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2717,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=787901,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=182363,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18419,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=182363,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=17959,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=790,
+ ["unit"]=0
+ }
+ },
+ [7908]={
+ ["next_chapter"]=7909,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2724,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=789866,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=184187,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18603,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=184187,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=17959,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=790,
+ ["unit"]=0
+ }
+ },
+ [7909]={
+ ["next_chapter"]=7910,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2730,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=791840,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=186029,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18789,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=186029,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=17959,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=790,
+ ["unit"]=0
+ }
+ },
+ [7910]={
+ ["next_chapter"]=7911,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=2737,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=793824,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=187889,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18977,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=187889,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=19838,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=791,
+ ["unit"]=0
+ }
+ },
+ [7911]={
+ ["next_chapter"]=7912,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2744,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=795818,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=189768,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19167,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=189768,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=19838,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=791,
+ ["unit"]=0
+ }
+ },
+ [7912]={
+ ["next_chapter"]=7913,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2751,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=797822,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=191665,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19358,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=191665,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=19838,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=791,
+ ["unit"]=0
+ }
+ },
+ [7913]={
+ ["next_chapter"]=7914,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2758,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=799835,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=193582,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19552,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=193582,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=19838,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=791,
+ ["unit"]=0
+ }
+ },
+ [7914]={
+ ["next_chapter"]=7915,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2765,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=801858,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=195518,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19747,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=195518,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=19838,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=791,
+ ["unit"]=0
+ }
+ },
+ [7915]={
+ ["next_chapter"]=7916,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2772,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=803891,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=197473,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19945,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=197473,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=19838,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=791,
+ ["unit"]=0
+ }
+ },
+ [7916]={
+ ["next_chapter"]=7917,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2779,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=805934,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=199448,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20144,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=199448,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=19838,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=791,
+ ["unit"]=0
+ }
+ },
+ [7917]={
+ ["next_chapter"]=7918,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2786,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=807986,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=201442,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20346,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=201442,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=19838,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=791,
+ ["unit"]=0
+ }
+ },
+ [7918]={
+ ["next_chapter"]=7919,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2793,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=810049,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=203457,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20549,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=203457,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=19838,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=791,
+ ["unit"]=0
+ }
+ },
+ [7919]={
+ ["next_chapter"]=7920,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2800,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=812121,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=205491,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20755,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=205491,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=19838,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=791,
+ ["unit"]=0
+ }
+ },
+ [7920]={
+ ["next_chapter"]=7921,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=2808,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=814203,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=207546,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20962,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=207546,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=21913,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=792,
+ ["unit"]=0
+ }
+ },
+ [7921]={
+ ["next_chapter"]=7922,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2815,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=816295,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=209622,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21172,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=209622,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=21913,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=792,
+ ["unit"]=0
+ }
+ },
+ [7922]={
+ ["next_chapter"]=7923,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2822,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=818397,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=211718,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21384,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=211718,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=21913,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=792,
+ ["unit"]=0
+ }
+ },
+ [7923]={
+ ["next_chapter"]=7924,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2829,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=820509,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=213835,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21597,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=213835,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=21913,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=792,
+ ["unit"]=0
+ }
+ },
+ [7924]={
+ ["next_chapter"]=7925,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2837,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=822631,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=215973,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21813,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=215973,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=21913,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=792,
+ ["unit"]=0
+ }
+ },
+ [7925]={
+ ["next_chapter"]=7926,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2844,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=824764,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=218133,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22031,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=218133,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=21913,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=792,
+ ["unit"]=0
+ }
+ },
+ [7926]={
+ ["next_chapter"]=7927,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2851,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=826906,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=220314,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22252,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=220314,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=21913,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=792,
+ ["unit"]=0
+ }
+ },
+ [7927]={
+ ["next_chapter"]=7928,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2859,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=829058,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=222518,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22474,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=222518,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=21913,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=792,
+ ["unit"]=0
+ }
+ },
+ [7928]={
+ ["next_chapter"]=7929,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2866,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=831220,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=224743,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22699,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=224743,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=21913,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=792,
+ ["unit"]=0
+ }
+ },
+ [7929]={
+ ["next_chapter"]=7930,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2874,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=833393,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=226990,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22926,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=226990,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=21913,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=792,
+ ["unit"]=0
+ }
+ },
+ [7930]={
+ ["next_chapter"]=7931,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=2881,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=835576,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=229260,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23155,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=229260,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=24206,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=793,
+ ["unit"]=0
+ }
+ },
+ [7931]={
+ ["next_chapter"]=7932,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2889,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=837768,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=231553,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23387,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=231553,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=24206,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=793,
+ ["unit"]=0
+ }
+ },
+ [7932]={
+ ["next_chapter"]=7933,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2896,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=839971,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=233868,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23621,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=233868,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=24206,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=793,
+ ["unit"]=0
+ }
+ },
+ [7933]={
+ ["next_chapter"]=7934,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2904,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=842185,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=236207,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23857,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=236207,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=24206,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=793,
+ ["unit"]=0
+ }
+ },
+ [7934]={
+ ["next_chapter"]=7935,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2912,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=844408,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=238569,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24095,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=238569,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=24206,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=793,
+ ["unit"]=0
+ }
+ },
+ [7935]={
+ ["next_chapter"]=7936,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2919,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=846642,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=240955,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24336,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=240955,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=24206,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=793,
+ ["unit"]=0
+ }
+ },
+ [7936]={
+ ["next_chapter"]=7937,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2927,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=848886,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=243364,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24580,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=243364,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=24206,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=793,
+ ["unit"]=0
+ }
+ },
+ [7937]={
+ ["next_chapter"]=7938,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2935,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=851140,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=245798,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24826,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=245798,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=24206,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=793,
+ ["unit"]=0
+ }
+ },
+ [7938]={
+ ["next_chapter"]=7939,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2943,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=853405,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=248256,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25074,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=248256,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=24206,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=793,
+ ["unit"]=0
+ }
+ },
+ [7939]={
+ ["next_chapter"]=7940,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2951,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=855680,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=250738,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25325,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=250738,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=24206,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=793,
+ ["unit"]=0
+ }
+ },
+ [7940]={
+ ["next_chapter"]=7941,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=2959,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=857966,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=253246,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25578,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=253246,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=26738,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=794,
+ ["unit"]=0
+ }
+ },
+ [7941]={
+ ["next_chapter"]=7942,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2966,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=860262,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=255778,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25834,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=255778,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=26738,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=794,
+ ["unit"]=0
+ }
+ },
+ [7942]={
+ ["next_chapter"]=7943,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2974,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=862568,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=258336,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26092,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=258336,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=26738,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=794,
+ ["unit"]=0
+ }
+ },
+ [7943]={
+ ["next_chapter"]=7944,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2982,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=864885,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=260919,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26353,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=260919,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=26738,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=794,
+ ["unit"]=0
+ }
+ },
+ [7944]={
+ ["next_chapter"]=7945,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2990,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=867212,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=263529,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26616,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=263529,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=26738,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=794,
+ ["unit"]=0
+ }
+ },
+ [7945]={
+ ["next_chapter"]=7946,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2998,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=869550,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=266164,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26883,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=266164,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=26738,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=794,
+ ["unit"]=0
+ }
+ },
+ [7946]={
+ ["next_chapter"]=7947,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3007,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=871898,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=268826,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27151,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=268826,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=26738,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=794,
+ ["unit"]=0
+ }
+ },
+ [7947]={
+ ["next_chapter"]=7948,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3015,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=874257,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=271514,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27423,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=271514,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=26738,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=794,
+ ["unit"]=0
+ }
+ },
+ [7948]={
+ ["next_chapter"]=7949,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3023,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=876626,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=274229,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27697,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=274229,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=26738,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=794,
+ ["unit"]=0
+ }
+ },
+ [7949]={
+ ["next_chapter"]=7950,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3031,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=879006,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=276971,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27974,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=276971,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=26738,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=794,
+ ["unit"]=0
+ }
+ },
+ [7950]={
+ ["next_chapter"]=7951,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=3039,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=881397,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=279741,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28254,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=279741,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=29536,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=795,
+ ["unit"]=0
+ }
+ },
+ [7951]={
+ ["next_chapter"]=7952,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3048,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=883798,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=282538,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28536,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=282538,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=29536,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=795,
+ ["unit"]=0
+ }
+ },
+ [7952]={
+ ["next_chapter"]=7953,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3056,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=886210,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=285364,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28822,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=285364,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=29536,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=795,
+ ["unit"]=0
+ }
+ },
+ [7953]={
+ ["next_chapter"]=7954,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3064,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=888633,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=288217,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29110,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=288217,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=29536,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=795,
+ ["unit"]=0
+ }
+ },
+ [7954]={
+ ["next_chapter"]=7955,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3073,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=891066,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=291099,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29401,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=291099,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=29536,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=795,
+ ["unit"]=0
+ }
+ },
+ [7955]={
+ ["next_chapter"]=7956,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3081,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=893511,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=294010,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29695,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=294010,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=29536,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=795,
+ ["unit"]=0
+ }
+ },
+ [7956]={
+ ["next_chapter"]=7957,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3090,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=895965,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=296951,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29992,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=296951,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=29536,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=795,
+ ["unit"]=0
+ }
+ },
+ [7957]={
+ ["next_chapter"]=7958,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3098,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=898431,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=299920,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30292,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=299920,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=29536,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=795,
+ ["unit"]=0
+ }
+ },
+ [7958]={
+ ["next_chapter"]=7959,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3107,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=900908,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=302919,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30595,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=302919,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=29536,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=795,
+ ["unit"]=0
+ }
+ },
+ [7959]={
+ ["next_chapter"]=7960,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3115,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=903395,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=305948,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30901,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=305948,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=29536,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=795,
+ ["unit"]=0
+ }
+ },
+ [7960]={
+ ["next_chapter"]=7961,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=3124,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=905893,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=309008,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31210,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=309008,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=32626,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=796,
+ ["unit"]=0
+ }
+ },
+ [7961]={
+ ["next_chapter"]=7962,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3132,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=908402,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=312098,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31522,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=312098,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=32626,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=796,
+ ["unit"]=0
+ }
+ },
+ [7962]={
+ ["next_chapter"]=7963,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3141,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=910922,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=315219,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31837,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=315219,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=32626,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=796,
+ ["unit"]=0
+ }
+ },
+ [7963]={
+ ["next_chapter"]=7964,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3150,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=913453,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=318371,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32155,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=318371,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=32626,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=796,
+ ["unit"]=0
+ }
+ },
+ [7964]={
+ ["next_chapter"]=7965,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3159,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=915995,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=321555,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32477,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=321555,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=32626,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=796,
+ ["unit"]=0
+ }
+ },
+ [7965]={
+ ["next_chapter"]=7966,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3167,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=918548,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=324770,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32802,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=324770,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=32626,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=796,
+ ["unit"]=0
+ }
+ },
+ [7966]={
+ ["next_chapter"]=7967,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3176,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=921112,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=328018,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33130,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=328018,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=32626,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=796,
+ ["unit"]=0
+ }
+ },
+ [7967]={
+ ["next_chapter"]=7968,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3185,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=923687,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=331298,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33461,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=331298,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=32626,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=796,
+ ["unit"]=0
+ }
+ },
+ [7968]={
+ ["next_chapter"]=7969,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3194,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=926273,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=334611,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33796,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=334611,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=32626,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=796,
+ ["unit"]=0
+ }
+ },
+ [7969]={
+ ["next_chapter"]=7970,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3203,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=928870,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=337957,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34134,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=337957,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=32626,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=796,
+ ["unit"]=0
+ }
+ },
+ [7970]={
+ ["next_chapter"]=7971,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=3212,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=931478,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=341337,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34475,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=341337,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=36039,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=797,
+ ["unit"]=0
+ }
+ },
+ [7971]={
+ ["next_chapter"]=7972,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3221,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=934097,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=344750,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34820,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=344750,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=36039,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=797,
+ ["unit"]=0
+ }
+ },
+ [7972]={
+ ["next_chapter"]=7973,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3230,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=936728,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=348198,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35168,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=348198,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=36039,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=797,
+ ["unit"]=0
+ }
+ },
+ [7973]={
+ ["next_chapter"]=7974,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3239,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=939369,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=351680,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35520,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=351680,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=36039,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=797,
+ ["unit"]=0
+ }
+ },
+ [7974]={
+ ["next_chapter"]=7975,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3248,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=942022,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=355197,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35875,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=355197,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=36039,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=797,
+ ["unit"]=0
+ }
+ },
+ [7975]={
+ ["next_chapter"]=7976,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3258,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=944686,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=358749,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36234,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=358749,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=36039,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=797,
+ ["unit"]=0
+ }
+ },
+ [7976]={
+ ["next_chapter"]=7977,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3267,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=947361,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=362336,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36596,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=362336,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=36039,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=797,
+ ["unit"]=0
+ }
+ },
+ [7977]={
+ ["next_chapter"]=7978,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3276,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=950048,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=365960,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36962,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=365960,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=36039,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=797,
+ ["unit"]=0
+ }
+ },
+ [7978]={
+ ["next_chapter"]=7979,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3285,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=952745,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=369619,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37332,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=369619,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=36039,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=797,
+ ["unit"]=0
+ }
+ },
+ [7979]={
+ ["next_chapter"]=7980,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3295,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=955454,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=373315,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37705,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=373315,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=36039,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=797,
+ ["unit"]=0
+ }
+ },
+ [7980]={
+ ["next_chapter"]=7981,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=3304,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=958175,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=377048,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=38082,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=377048,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=39810,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=798,
+ ["unit"]=0
+ }
+ },
+ [7981]={
+ ["next_chapter"]=7982,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3313,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=960907,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=380819,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=38463,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=380819,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=39810,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=798,
+ ["unit"]=0
+ }
+ },
+ [7982]={
+ ["next_chapter"]=7983,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3323,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=963650,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=384627,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=38847,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=384627,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=39810,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=798,
+ ["unit"]=0
+ }
+ },
+ [7983]={
+ ["next_chapter"]=7984,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3332,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=966404,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=388473,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39236,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=388473,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=39810,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=798,
+ ["unit"]=0
+ }
+ },
+ [7984]={
+ ["next_chapter"]=7985,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3342,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=969170,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=392358,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39628,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=392358,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=39810,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=798,
+ ["unit"]=0
+ }
+ },
+ [7985]={
+ ["next_chapter"]=7986,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3352,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=971948,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=396282,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=40024,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=396282,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=39810,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=798,
+ ["unit"]=0
+ }
+ },
+ [7986]={
+ ["next_chapter"]=7987,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3361,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=974737,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=400245,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=40425,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=400245,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=39810,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=798,
+ ["unit"]=0
+ }
+ },
+ [7987]={
+ ["next_chapter"]=7988,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3371,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=977537,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=404247,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=40829,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=404247,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=39810,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=798,
+ ["unit"]=0
+ }
+ },
+ [7988]={
+ ["next_chapter"]=7989,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3381,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=980349,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=408289,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41237,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=408289,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=39810,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=798,
+ ["unit"]=0
+ }
+ },
+ [7989]={
+ ["next_chapter"]=7990,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3390,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=983173,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=412372,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41650,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=412372,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=39810,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=798,
+ ["unit"]=0
+ }
+ },
+ [7990]={
+ ["next_chapter"]=7991,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=3400,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=986008,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=416496,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=42066,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=416496,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=43975,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=799,
+ ["unit"]=0
+ }
+ },
+ [7991]={
+ ["next_chapter"]=7992,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3410,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=988854,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=420661,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=42487,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=420661,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=43975,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=799,
+ ["unit"]=0
+ }
+ },
+ [7992]={
+ ["next_chapter"]=7993,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3420,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=991713,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=424868,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=42912,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=424868,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=43975,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=799,
+ ["unit"]=0
+ }
+ },
+ [7993]={
+ ["next_chapter"]=7994,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3430,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=994583,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=429116,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=43341,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=429116,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=43975,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=799,
+ ["unit"]=0
+ }
+ },
+ [7994]={
+ ["next_chapter"]=7995,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3440,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=997464,
+ ["unit"]=8
+ },
+ ["gold_reward"]={
+ ["value"]=433407,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=43774,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=433407,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=43975,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=799,
+ ["unit"]=0
+ }
+ },
+ [7995]={
+ ["next_chapter"]=7996,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3450,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1000,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=437742,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=44212,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=437742,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=43975,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=799,
+ ["unit"]=0
+ }
+ },
+ [7996]={
+ ["next_chapter"]=7997,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3460,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1003,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=442119,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=44654,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=442119,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=43975,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=799,
+ ["unit"]=0
+ }
+ },
+ [7997]={
+ ["next_chapter"]=7998,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3470,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1006,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=446540,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=45101,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=446540,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=43975,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=799,
+ ["unit"]=0
+ }
+ },
+ [7998]={
+ ["next_chapter"]=7999,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3480,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1009,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=451006,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=45552,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=451006,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=43975,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=799,
+ ["unit"]=0
+ }
+ },
+ [7999]={
+ ["next_chapter"]=8000,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3490,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1012,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=455516,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=46007,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=455516,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=43975,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=799,
+ ["unit"]=0
+ }
+ },
+ [8000]={
+ ["next_chapter"]=8001,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=3500,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1050,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=460071,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=46467,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=460071,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=48575,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=800,
+ ["unit"]=0
+ }
+ },
+ [8001]={
+ ["next_chapter"]=8002,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3500,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1050,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=464671,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=46932,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=464671,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=48575,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=800,
+ ["unit"]=0
+ }
+ },
+ [8002]={
+ ["next_chapter"]=8003,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3500,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1050,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=469318,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=47401,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=469318,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=48575,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=800,
+ ["unit"]=0
+ }
+ },
+ [8003]={
+ ["next_chapter"]=8004,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3500,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1050,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=474011,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=47875,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=474011,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=48575,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=800,
+ ["unit"]=0
+ }
+ },
+ [8004]={
+ ["next_chapter"]=8005,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3500,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1050,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=478751,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=48354,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=478751,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=48575,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=800,
+ ["unit"]=0
+ }
+ },
+ [8005]={
+ ["next_chapter"]=8006,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3500,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1050,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=483539,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=48837,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=483539,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=48575,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=800,
+ ["unit"]=0
+ }
+ },
+ [8006]={
+ ["next_chapter"]=8007,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3500,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1050,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=488374,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=49326,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=488374,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=48575,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=800,
+ ["unit"]=0
+ }
+ },
+ [8007]={
+ ["next_chapter"]=8008,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3500,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1050,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=493258,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=49819,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=493258,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=48575,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=800,
+ ["unit"]=0
+ }
+ },
+ [8008]={
+ ["next_chapter"]=8009,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3500,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1050,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=498191,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=50317,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=498191,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=48575,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=800,
+ ["unit"]=0
+ }
+ },
+ [8009]={
+ ["next_chapter"]=8010,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3500,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1050,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=503173,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=50820,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=503173,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=48575,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=800,
+ ["unit"]=0
+ }
+ },
+ [8010]={
+ ["next_chapter"]=8011,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=3500,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1050,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=508204,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=51329,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=508204,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=53657,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=801,
+ ["unit"]=0
+ }
+ },
+ [8011]={
+ ["next_chapter"]=8012,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3500,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1050,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=513286,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=51842,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=513286,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=53657,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=801,
+ ["unit"]=0
+ }
+ },
+ [8012]={
+ ["next_chapter"]=8013,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3500,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1050,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=518419,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=52360,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=518419,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=53657,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=801,
+ ["unit"]=0
+ }
+ },
+ [8013]={
+ ["next_chapter"]=8014,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3500,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1050,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=523603,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=52884,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=523603,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=53657,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=801,
+ ["unit"]=0
+ }
+ },
+ [8014]={
+ ["next_chapter"]=8015,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3500,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1050,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=528839,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=53413,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=528839,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=53657,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=801,
+ ["unit"]=0
+ }
+ },
+ [8015]={
+ ["next_chapter"]=8016,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3500,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1050,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=534128,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=53947,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=534128,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=53657,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=801,
+ ["unit"]=0
+ }
+ },
+ [8016]={
+ ["next_chapter"]=8017,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3500,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1050,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=539469,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=54486,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=539469,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=53657,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=801,
+ ["unit"]=0
+ }
+ },
+ [8017]={
+ ["next_chapter"]=8018,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3500,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1050,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=544864,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=55031,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=544864,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=53657,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=801,
+ ["unit"]=0
+ }
+ },
+ [8018]={
+ ["next_chapter"]=8019,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3500,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1050,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=550312,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=55582,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=550312,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=53657,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=801,
+ ["unit"]=0
+ }
+ },
+ [8019]={
+ ["next_chapter"]=8020,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3500,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1050,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=555816,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=56137,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=555816,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=53657,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=801,
+ ["unit"]=0
+ }
+ },
+ [8020]={
+ ["next_chapter"]=8021,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=3500,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1050,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=561374,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=56699,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=561374,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=59271,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=802,
+ ["unit"]=0
+ }
+ },
+ [8021]={
+ ["next_chapter"]=8022,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3500,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1050,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=566988,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=57266,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=566988,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=59271,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=802,
+ ["unit"]=0
+ }
+ },
+ [8022]={
+ ["next_chapter"]=8023,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3500,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1050,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=572657,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=57838,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=572657,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=59271,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=802,
+ ["unit"]=0
+ }
+ },
+ [8023]={
+ ["next_chapter"]=8024,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3500,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1050,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=578384,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=58417,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=578384,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=59271,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=802,
+ ["unit"]=0
+ }
+ },
+ [8024]={
+ ["next_chapter"]=8025,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3500,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1050,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=584168,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=59001,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=584168,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=59271,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=802,
+ ["unit"]=0
+ }
+ },
+ [8025]={
+ ["next_chapter"]=8026,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3500,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1050,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=590009,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=59591,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=590009,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=59271,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=802,
+ ["unit"]=0
+ }
+ },
+ [8026]={
+ ["next_chapter"]=8027,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3500,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1050,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=595910,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=60187,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=595910,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=59271,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=802,
+ ["unit"]=0
+ }
+ },
+ [8027]={
+ ["next_chapter"]=8028,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3500,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1050,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=601869,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=60789,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=601869,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=59271,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=802,
+ ["unit"]=0
+ }
+ },
+ [8028]={
+ ["next_chapter"]=8029,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3501,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1050,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=607887,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=61397,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=607887,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=59271,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=802,
+ ["unit"]=0
+ }
+ },
+ [8029]={
+ ["next_chapter"]=8030,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3501,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1050,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=613966,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=62011,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=613966,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=59271,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=802,
+ ["unit"]=0
+ }
+ },
+ [8030]={
+ ["next_chapter"]=8031,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=3501,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1050,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=620106,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=62631,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=620106,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=65472,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=803,
+ ["unit"]=0
+ }
+ },
+ [8031]={
+ ["next_chapter"]=8032,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3501,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1050,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=626307,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=63257,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=626307,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=65472,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=803,
+ ["unit"]=0
+ }
+ },
+ [8032]={
+ ["next_chapter"]=8033,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3501,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1050,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=632570,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=63890,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=632570,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=65472,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=803,
+ ["unit"]=0
+ }
+ },
+ [8033]={
+ ["next_chapter"]=8034,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3501,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1050,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=638896,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=64528,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=638896,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=65472,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=803,
+ ["unit"]=0
+ }
+ },
+ [8034]={
+ ["next_chapter"]=8035,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3501,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1050,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=645285,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=65174,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=645285,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=65472,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=803,
+ ["unit"]=0
+ }
+ },
+ [8035]={
+ ["next_chapter"]=8036,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3501,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1050,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=651738,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=65825,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=651738,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=65472,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=803,
+ ["unit"]=0
+ }
+ },
+ [8036]={
+ ["next_chapter"]=8037,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3501,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1050,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=658255,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=66484,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=658255,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=65472,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=803,
+ ["unit"]=0
+ }
+ },
+ [8037]={
+ ["next_chapter"]=8038,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3501,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1050,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=664837,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=67149,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=664837,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=65472,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=803,
+ ["unit"]=0
+ }
+ },
+ [8038]={
+ ["next_chapter"]=8039,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3501,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1050,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=671486,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=67820,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=671486,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=65472,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=803,
+ ["unit"]=0
+ }
+ },
+ [8039]={
+ ["next_chapter"]=8040,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3501,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1050,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=678201,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=68498,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=678201,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=65472,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=803,
+ ["unit"]=0
+ }
+ },
+ [8040]={
+ ["next_chapter"]=8041,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=3502,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1050,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=684983,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=69183,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=684983,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=72322,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=804,
+ ["unit"]=0
+ }
+ },
+ [8041]={
+ ["next_chapter"]=8042,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3502,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1050,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=691833,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=69875,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=691833,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=72322,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=804,
+ ["unit"]=0
+ }
+ },
+ [8042]={
+ ["next_chapter"]=8043,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3502,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1051,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=698751,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=70574,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=698751,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=72322,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=804,
+ ["unit"]=0
+ }
+ },
+ [8043]={
+ ["next_chapter"]=8044,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3502,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1051,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=705738,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=71280,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=705738,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=72322,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=804,
+ ["unit"]=0
+ }
+ },
+ [8044]={
+ ["next_chapter"]=8045,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3502,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1051,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=712796,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=71992,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=712796,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=72322,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=804,
+ ["unit"]=0
+ }
+ },
+ [8045]={
+ ["next_chapter"]=8046,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3502,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1051,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=719924,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=72712,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=719924,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=72322,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=804,
+ ["unit"]=0
+ }
+ },
+ [8046]={
+ ["next_chapter"]=8047,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3502,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1051,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=727123,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=73439,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=727123,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=72322,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=804,
+ ["unit"]=0
+ }
+ },
+ [8047]={
+ ["next_chapter"]=8048,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3502,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1051,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=734394,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=74174,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=734394,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=72322,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=804,
+ ["unit"]=0
+ }
+ },
+ [8048]={
+ ["next_chapter"]=8049,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3503,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1051,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=741738,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=74916,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=741738,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=72322,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=804,
+ ["unit"]=0
+ }
+ },
+ [8049]={
+ ["next_chapter"]=8050,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3503,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1051,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=749155,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=75665,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=749155,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=72322,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=804,
+ ["unit"]=0
+ }
+ },
+ [8050]={
+ ["next_chapter"]=8051,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=3503,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1051,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=756647,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=76421,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=756647,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=79888,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=805,
+ ["unit"]=0
+ }
+ },
+ [8051]={
+ ["next_chapter"]=8052,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3503,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1051,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=764214,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=77186,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=764214,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=79888,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=805,
+ ["unit"]=0
+ }
+ },
+ [8052]={
+ ["next_chapter"]=8053,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3503,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1051,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=771856,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=77957,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=771856,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=79888,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=805,
+ ["unit"]=0
+ }
+ },
+ [8053]={
+ ["next_chapter"]=8054,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3504,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1051,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=779574,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=78737,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=779574,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=79888,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=805,
+ ["unit"]=0
+ }
+ },
+ [8054]={
+ ["next_chapter"]=8055,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3504,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1051,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=787370,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=79524,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=787370,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=79888,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=805,
+ ["unit"]=0
+ }
+ },
+ [8055]={
+ ["next_chapter"]=8056,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3504,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1051,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=795244,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=80320,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=795244,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=79888,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=805,
+ ["unit"]=0
+ }
+ },
+ [8056]={
+ ["next_chapter"]=8057,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3504,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1051,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=803196,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=81123,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=803196,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=79888,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=805,
+ ["unit"]=0
+ }
+ },
+ [8057]={
+ ["next_chapter"]=8058,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3504,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1051,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=811228,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=81934,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=811228,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=79888,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=805,
+ ["unit"]=0
+ }
+ },
+ [8058]={
+ ["next_chapter"]=8059,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3505,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1051,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=819340,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=82753,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=819340,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=79888,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=805,
+ ["unit"]=0
+ }
+ },
+ [8059]={
+ ["next_chapter"]=8060,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3505,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1051,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=827534,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=83581,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=827534,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=79888,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=805,
+ ["unit"]=0
+ }
+ },
+ [8060]={
+ ["next_chapter"]=8061,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=3505,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1052,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=835809,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=84417,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=835809,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=88246,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=806,
+ ["unit"]=0
+ }
+ },
+ [8061]={
+ ["next_chapter"]=8062,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3505,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1052,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=844167,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=85261,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=844167,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=88246,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=806,
+ ["unit"]=0
+ }
+ },
+ [8062]={
+ ["next_chapter"]=8063,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3506,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1052,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=852609,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=86113,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=852609,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=88246,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=806,
+ ["unit"]=0
+ }
+ },
+ [8063]={
+ ["next_chapter"]=8064,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3506,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1052,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=861135,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=86975,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=861135,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=88246,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=806,
+ ["unit"]=0
+ }
+ },
+ [8064]={
+ ["next_chapter"]=8065,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3506,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1052,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=869746,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=87844,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=869746,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=88246,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=806,
+ ["unit"]=0
+ }
+ },
+ [8065]={
+ ["next_chapter"]=8066,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3507,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1052,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=878444,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=88723,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=878444,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=88246,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=806,
+ ["unit"]=0
+ }
+ },
+ [8066]={
+ ["next_chapter"]=8067,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3507,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1052,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=887228,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=89610,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=887228,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=88246,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=806,
+ ["unit"]=0
+ }
+ },
+ [8067]={
+ ["next_chapter"]=8068,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3507,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1052,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=896100,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=90506,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=896100,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=88246,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=806,
+ ["unit"]=0
+ }
+ },
+ [8068]={
+ ["next_chapter"]=8069,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3508,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1052,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=905061,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=91411,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=905061,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=88246,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=806,
+ ["unit"]=0
+ }
+ },
+ [8069]={
+ ["next_chapter"]=8070,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3508,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1052,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=914112,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=92325,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=914112,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=88246,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=806,
+ ["unit"]=0
+ }
+ },
+ [8070]={
+ ["next_chapter"]=8071,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=3508,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1052,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=923253,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=93249,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=923253,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=97479,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=807,
+ ["unit"]=0
+ }
+ },
+ [8071]={
+ ["next_chapter"]=8072,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3509,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1053,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=932486,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=94181,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=932486,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=97479,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=807,
+ ["unit"]=0
+ }
+ },
+ [8072]={
+ ["next_chapter"]=8073,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3509,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1053,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=941811,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=95123,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=941811,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=97479,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=807,
+ ["unit"]=0
+ }
+ },
+ [8073]={
+ ["next_chapter"]=8074,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3509,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1053,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=951229,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=96074,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=951229,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=97479,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=807,
+ ["unit"]=0
+ }
+ },
+ [8074]={
+ ["next_chapter"]=8075,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3510,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1053,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=960741,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=97035,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=960741,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=97479,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=807,
+ ["unit"]=0
+ }
+ },
+ [8075]={
+ ["next_chapter"]=8076,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3510,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1053,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=970348,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=98005,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=970348,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=97479,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=807,
+ ["unit"]=0
+ }
+ },
+ [8076]={
+ ["next_chapter"]=8077,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3511,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1053,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=980052,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=98985,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=980052,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=97479,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=807,
+ ["unit"]=0
+ }
+ },
+ [8077]={
+ ["next_chapter"]=8078,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3511,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1053,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=989852,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=99975,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=989852,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=97479,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=807,
+ ["unit"]=0
+ }
+ },
+ [8078]={
+ ["next_chapter"]=8079,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3511,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1053,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=999751,
+ ["unit"]=10
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=100975,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=999751,
+ ["unit"]=10
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=97479,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=807,
+ ["unit"]=0
+ }
+ },
+ [8079]={
+ ["next_chapter"]=8080,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3512,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1054,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1010,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=101985,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1010,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=97479,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=807,
+ ["unit"]=0
+ }
+ },
+ [8080]={
+ ["next_chapter"]=8081,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=3512,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1054,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1020,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=103004,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1020,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=107677,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=808,
+ ["unit"]=0
+ }
+ },
+ [8081]={
+ ["next_chapter"]=8082,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3513,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1054,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1030,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=104034,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1030,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=107677,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=808,
+ ["unit"]=0
+ }
+ },
+ [8082]={
+ ["next_chapter"]=8083,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3513,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1054,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1040,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=105075,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1040,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=107677,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=808,
+ ["unit"]=0
+ }
+ },
+ [8083]={
+ ["next_chapter"]=8084,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3514,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1054,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1051,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=106126,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1051,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=107677,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=808,
+ ["unit"]=0
+ }
+ },
+ [8084]={
+ ["next_chapter"]=8085,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3514,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1054,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1061,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=107187,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1061,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=107677,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=808,
+ ["unit"]=0
+ }
+ },
+ [8085]={
+ ["next_chapter"]=8086,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3515,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1054,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1072,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=108259,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1072,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=107677,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=808,
+ ["unit"]=0
+ }
+ },
+ [8086]={
+ ["next_chapter"]=8087,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3515,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1055,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1083,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=109341,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1083,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=107677,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=808,
+ ["unit"]=0
+ }
+ },
+ [8087]={
+ ["next_chapter"]=8088,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3516,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1055,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1093,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=110435,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1093,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=107677,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=808,
+ ["unit"]=0
+ }
+ },
+ [8088]={
+ ["next_chapter"]=8089,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3516,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1055,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1104,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=111539,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1104,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=107677,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=808,
+ ["unit"]=0
+ }
+ },
+ [8089]={
+ ["next_chapter"]=8090,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3517,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1055,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1115,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=112654,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1115,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=107677,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=808,
+ ["unit"]=0
+ }
+ },
+ [8090]={
+ ["next_chapter"]=8091,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=3517,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1055,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1127,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=113781,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1127,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=118943,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=809,
+ ["unit"]=0
+ }
+ },
+ [8091]={
+ ["next_chapter"]=8092,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3518,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1055,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1138,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=114919,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1138,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=118943,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=809,
+ ["unit"]=0
+ }
+ },
+ [8092]={
+ ["next_chapter"]=8093,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3519,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1056,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1149,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=116068,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1149,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=118943,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=809,
+ ["unit"]=0
+ }
+ },
+ [8093]={
+ ["next_chapter"]=8094,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3519,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1056,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1161,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=117229,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1161,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=118943,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=809,
+ ["unit"]=0
+ }
+ },
+ [8094]={
+ ["next_chapter"]=8095,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3520,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1056,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1172,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=118401,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1172,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=118943,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=809,
+ ["unit"]=0
+ }
+ },
+ [8095]={
+ ["next_chapter"]=8096,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3521,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1056,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1184,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=119585,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1184,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=118943,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=809,
+ ["unit"]=0
+ }
+ },
+ [8096]={
+ ["next_chapter"]=8097,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3521,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1056,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1196,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=120781,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1196,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=118943,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=809,
+ ["unit"]=0
+ }
+ },
+ [8097]={
+ ["next_chapter"]=8098,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3522,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1057,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1208,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=121989,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1208,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=118943,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=809,
+ ["unit"]=0
+ }
+ },
+ [8098]={
+ ["next_chapter"]=8099,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3523,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1057,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1220,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=123208,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1220,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=118943,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=809,
+ ["unit"]=0
+ }
+ },
+ [8099]={
+ ["next_chapter"]=8100,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3523,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1057,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1232,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=124441,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1232,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=118943,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=809,
+ ["unit"]=0
+ }
+ },
+ [8100]={
+ ["next_chapter"]=8101,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=3524,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1057,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1244,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=125685,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1244,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=55,
+ ["grasp_gold_reward"]={
+ ["value"]=131387,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=810,
+ ["unit"]=0
+ }
+ },
+ [8101]={
+ ["next_chapter"]=8102,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3525,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1057,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1257,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=126942,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1257,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=131387,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=810,
+ ["unit"]=0
+ }
+ },
+ [8102]={
+ ["next_chapter"]=8103,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3525,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1058,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1269,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=128211,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1269,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=131387,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=810,
+ ["unit"]=0
+ }
+ },
+ [8103]={
+ ["next_chapter"]=8104,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3526,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1058,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1282,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=129493,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1282,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=131387,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=810,
+ ["unit"]=0
+ }
+ },
+ [8104]={
+ ["next_chapter"]=8105,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3527,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1058,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1295,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=130788,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1295,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=131387,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=810,
+ ["unit"]=0
+ }
+ },
+ [8105]={
+ ["next_chapter"]=8106,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3528,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1058,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1308,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=132096,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1308,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=131387,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=810,
+ ["unit"]=0
+ }
+ },
+ [8106]={
+ ["next_chapter"]=8107,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3529,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1059,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1321,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=133417,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1321,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=131387,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=810,
+ ["unit"]=0
+ }
+ },
+ [8107]={
+ ["next_chapter"]=8108,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3529,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1059,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1334,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=134751,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1334,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=131387,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=810,
+ ["unit"]=0
+ }
+ },
+ [8108]={
+ ["next_chapter"]=8109,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3530,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1059,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1348,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=136099,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1348,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=131387,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=810,
+ ["unit"]=0
+ }
+ },
+ [8109]={
+ ["next_chapter"]=8110,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3531,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1059,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1361,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=137460,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1361,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=131387,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=810,
+ ["unit"]=0
+ }
+ },
+ [8110]={
+ ["next_chapter"]=8111,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=3532,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1060,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1375,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=138834,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1375,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=145133,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=811,
+ ["unit"]=0
+ }
+ },
+ [8111]={
+ ["next_chapter"]=8112,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3533,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1060,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1388,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=140223,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1388,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=145133,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=811,
+ ["unit"]=0
+ }
+ },
+ [8112]={
+ ["next_chapter"]=8113,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3534,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1060,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1402,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=141625,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1402,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=145133,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=811,
+ ["unit"]=0
+ }
+ },
+ [8113]={
+ ["next_chapter"]=8114,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3535,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1060,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1416,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=143041,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1416,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=145133,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=811,
+ ["unit"]=0
+ }
+ },
+ [8114]={
+ ["next_chapter"]=8115,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3536,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1061,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1430,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=144472,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1430,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=145133,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=811,
+ ["unit"]=0
+ }
+ },
+ [8115]={
+ ["next_chapter"]=8116,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3537,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1061,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1445,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=145916,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1445,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=145133,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=811,
+ ["unit"]=0
+ }
+ },
+ [8116]={
+ ["next_chapter"]=8117,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3537,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1061,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1459,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=147376,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1459,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=145133,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=811,
+ ["unit"]=0
+ }
+ },
+ [8117]={
+ ["next_chapter"]=8118,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3538,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1062,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1474,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=148849,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1474,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=145133,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=811,
+ ["unit"]=0
+ }
+ },
+ [8118]={
+ ["next_chapter"]=8119,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3539,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1062,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1488,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=150338,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1488,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=145133,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=811,
+ ["unit"]=0
+ }
+ },
+ [8119]={
+ ["next_chapter"]=8120,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3540,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1062,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1503,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=151841,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1503,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=145133,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=811,
+ ["unit"]=0
+ }
+ },
+ [8120]={
+ ["next_chapter"]=8121,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=3541,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1062,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1518,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=153360,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1518,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=160317,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=812,
+ ["unit"]=0
+ }
+ },
+ [8121]={
+ ["next_chapter"]=8122,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3543,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1063,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1534,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=154893,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1534,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=160317,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=812,
+ ["unit"]=0
+ }
+ },
+ [8122]={
+ ["next_chapter"]=8123,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3544,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1063,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1549,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=156442,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1549,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=160317,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=812,
+ ["unit"]=0
+ }
+ },
+ [8123]={
+ ["next_chapter"]=8124,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3545,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1063,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1564,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=158007,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1564,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=160317,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=812,
+ ["unit"]=0
+ }
+ },
+ [8124]={
+ ["next_chapter"]=8125,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3546,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1064,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1580,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=159587,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1580,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=160317,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=812,
+ ["unit"]=0
+ }
+ },
+ [8125]={
+ ["next_chapter"]=8126,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3547,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1064,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1596,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=161182,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1596,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=160317,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=812,
+ ["unit"]=0
+ }
+ },
+ [8126]={
+ ["next_chapter"]=8127,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3548,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1064,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1612,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=162794,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1612,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=160317,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=812,
+ ["unit"]=0
+ }
+ },
+ [8127]={
+ ["next_chapter"]=8128,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3549,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1065,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1628,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=164422,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1628,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=160317,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=812,
+ ["unit"]=0
+ }
+ },
+ [8128]={
+ ["next_chapter"]=8129,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3550,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1065,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1644,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=166066,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1644,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=160317,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=812,
+ ["unit"]=0
+ }
+ },
+ [8129]={
+ ["next_chapter"]=8130,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3552,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1065,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1661,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=167727,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1661,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=160317,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=812,
+ ["unit"]=0
+ }
+ },
+ [8130]={
+ ["next_chapter"]=8131,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=3553,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1066,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1677,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=169404,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1677,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=177090,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=813,
+ ["unit"]=0
+ }
+ },
+ [8131]={
+ ["next_chapter"]=8132,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3554,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1066,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1694,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=171098,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1694,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=177090,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=813,
+ ["unit"]=0
+ }
+ },
+ [8132]={
+ ["next_chapter"]=8133,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3555,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1067,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1711,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=172809,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1711,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=177090,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=813,
+ ["unit"]=0
+ }
+ },
+ [8133]={
+ ["next_chapter"]=8134,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3556,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1067,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1728,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=174537,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1728,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=177090,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=813,
+ ["unit"]=0
+ }
+ },
+ [8134]={
+ ["next_chapter"]=8135,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3558,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1067,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1745,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=176283,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1745,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=177090,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=813,
+ ["unit"]=0
+ }
+ },
+ [8135]={
+ ["next_chapter"]=8136,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3559,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1068,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1763,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=178046,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1763,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=177090,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=813,
+ ["unit"]=0
+ }
+ },
+ [8136]={
+ ["next_chapter"]=8137,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3560,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1068,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1780,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=179826,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1780,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=177090,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=813,
+ ["unit"]=0
+ }
+ },
+ [8137]={
+ ["next_chapter"]=8138,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3562,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1069,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1798,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=181624,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1798,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=177090,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=813,
+ ["unit"]=0
+ }
+ },
+ [8138]={
+ ["next_chapter"]=8139,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3563,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1069,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1816,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=183441,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1816,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=177090,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=813,
+ ["unit"]=0
+ }
+ },
+ [8139]={
+ ["next_chapter"]=8140,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3564,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1069,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1834,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=185275,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1834,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=177090,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=813,
+ ["unit"]=0
+ }
+ },
+ [8140]={
+ ["next_chapter"]=8141,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=3566,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1070,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1853,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=187128,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1853,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=195617,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=814,
+ ["unit"]=0
+ }
+ },
+ [8141]={
+ ["next_chapter"]=8142,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3567,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1070,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1871,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=188999,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1871,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=195617,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=814,
+ ["unit"]=0
+ }
+ },
+ [8142]={
+ ["next_chapter"]=8143,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3569,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1071,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1890,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=190889,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1890,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=195617,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=814,
+ ["unit"]=0
+ }
+ },
+ [8143]={
+ ["next_chapter"]=8144,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3570,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1071,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1909,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=192798,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1909,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=195617,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=814,
+ ["unit"]=0
+ }
+ },
+ [8144]={
+ ["next_chapter"]=8145,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3572,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1071,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1928,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=194726,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1928,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=195617,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=814,
+ ["unit"]=0
+ }
+ },
+ [8145]={
+ ["next_chapter"]=8146,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3573,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1072,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1947,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=196673,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1947,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=195617,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=814,
+ ["unit"]=0
+ }
+ },
+ [8146]={
+ ["next_chapter"]=8147,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3575,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1072,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1967,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=198640,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1967,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=195617,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=814,
+ ["unit"]=0
+ }
+ },
+ [8147]={
+ ["next_chapter"]=8148,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3576,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1073,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1986,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=200626,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=1986,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=195617,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=814,
+ ["unit"]=0
+ }
+ },
+ [8148]={
+ ["next_chapter"]=8149,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3578,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1073,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2006,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=202633,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=2006,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=195617,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=814,
+ ["unit"]=0
+ }
+ },
+ [8149]={
+ ["next_chapter"]=8150,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3579,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1074,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2026,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=204659,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=2026,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=195617,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=814,
+ ["unit"]=0
+ }
+ },
+ [8150]={
+ ["next_chapter"]=8151,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=3581,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1074,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2047,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=206706,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=2047,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=216083,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=815,
+ ["unit"]=0
+ }
+ },
+ [8151]={
+ ["next_chapter"]=8152,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3583,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1075,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2067,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=208773,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=2067,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=216083,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=815,
+ ["unit"]=0
+ }
+ },
+ [8152]={
+ ["next_chapter"]=8153,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3584,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1075,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2088,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=210860,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=2088,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=216083,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=815,
+ ["unit"]=0
+ }
+ },
+ [8153]={
+ ["next_chapter"]=8154,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3586,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1076,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2109,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=212969,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=2109,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=216083,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=815,
+ ["unit"]=0
+ }
+ },
+ [8154]={
+ ["next_chapter"]=8155,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3588,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1076,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2130,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=215099,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=2130,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=216083,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=815,
+ ["unit"]=0
+ }
+ },
+ [8155]={
+ ["next_chapter"]=8156,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3589,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1077,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2151,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=217250,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=2151,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=216083,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=815,
+ ["unit"]=0
+ }
+ },
+ [8156]={
+ ["next_chapter"]=8157,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3591,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1077,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2172,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=219422,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=2172,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=216083,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=815,
+ ["unit"]=0
+ }
+ },
+ [8157]={
+ ["next_chapter"]=8158,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3593,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1078,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2194,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=221616,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=2194,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=216083,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=815,
+ ["unit"]=0
+ }
+ },
+ [8158]={
+ ["next_chapter"]=8159,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3595,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1078,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2216,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=223832,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=2216,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=216083,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=815,
+ ["unit"]=0
+ }
+ },
+ [8159]={
+ ["next_chapter"]=8160,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3596,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1079,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2238,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=226071,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=2238,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=216083,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=815,
+ ["unit"]=0
+ }
+ },
+ [8160]={
+ ["next_chapter"]=8161,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=3598,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1079,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2261,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=228331,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=2261,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=238690,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=816,
+ ["unit"]=0
+ }
+ },
+ [8161]={
+ ["next_chapter"]=8162,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3600,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1080,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2283,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=230615,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=2283,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=238690,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=816,
+ ["unit"]=0
+ }
+ },
+ [8162]={
+ ["next_chapter"]=8163,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3602,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1081,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2306,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=232921,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=2306,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=238690,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=816,
+ ["unit"]=0
+ }
+ },
+ [8163]={
+ ["next_chapter"]=8164,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3604,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1081,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2329,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=235250,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=2329,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=238690,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=816,
+ ["unit"]=0
+ }
+ },
+ [8164]={
+ ["next_chapter"]=8165,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3606,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1082,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2353,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=237603,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=2353,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=238690,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=816,
+ ["unit"]=0
+ }
+ },
+ [8165]={
+ ["next_chapter"]=8166,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3608,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1082,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2376,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=239979,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=2376,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=238690,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=816,
+ ["unit"]=0
+ }
+ },
+ [8166]={
+ ["next_chapter"]=8167,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3610,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1083,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2400,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=242378,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=2400,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=238690,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=816,
+ ["unit"]=0
+ }
+ },
+ [8167]={
+ ["next_chapter"]=8168,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3612,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1084,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2424,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=244802,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=2424,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=238690,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=816,
+ ["unit"]=0
+ }
+ },
+ [8168]={
+ ["next_chapter"]=8169,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3614,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1084,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2448,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=247250,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=2448,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=238690,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=816,
+ ["unit"]=0
+ }
+ },
+ [8169]={
+ ["next_chapter"]=8170,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3616,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1085,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2473,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=249723,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=2473,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=238690,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=816,
+ ["unit"]=0
+ }
+ },
+ [8170]={
+ ["next_chapter"]=8171,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=3618,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1085,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2497,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=252220,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=2497,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=263663,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=817,
+ ["unit"]=0
+ }
+ },
+ [8171]={
+ ["next_chapter"]=8172,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3620,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1086,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2522,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=254742,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=2522,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=263663,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=817,
+ ["unit"]=0
+ }
+ },
+ [8172]={
+ ["next_chapter"]=8173,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3622,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1087,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2547,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=257290,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=2547,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=263663,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=817,
+ ["unit"]=0
+ }
+ },
+ [8173]={
+ ["next_chapter"]=8174,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3624,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1087,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2573,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=259863,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=2573,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=263663,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=817,
+ ["unit"]=0
+ }
+ },
+ [8174]={
+ ["next_chapter"]=8175,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3626,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1088,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2599,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=262461,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=2599,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=263663,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=817,
+ ["unit"]=0
+ }
+ },
+ [8175]={
+ ["next_chapter"]=8176,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3629,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1089,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2625,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=265086,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=2625,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=263663,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=817,
+ ["unit"]=0
+ }
+ },
+ [8176]={
+ ["next_chapter"]=8177,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3631,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1089,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2651,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=267737,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=2651,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=263663,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=817,
+ ["unit"]=0
+ }
+ },
+ [8177]={
+ ["next_chapter"]=8178,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3633,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1090,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2677,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=270414,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=2677,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=263663,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=817,
+ ["unit"]=0
+ }
+ },
+ [8178]={
+ ["next_chapter"]=8179,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3635,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1091,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2704,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=273118,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=2704,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=263663,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=817,
+ ["unit"]=0
+ }
+ },
+ [8179]={
+ ["next_chapter"]=8180,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3638,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1091,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2731,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=275849,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=2731,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=263663,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=817,
+ ["unit"]=0
+ }
+ },
+ [8180]={
+ ["next_chapter"]=8181,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=3640,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1092,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2758,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=278608,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=2758,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=291247,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=818,
+ ["unit"]=0
+ }
+ },
+ [8181]={
+ ["next_chapter"]=8182,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3642,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1093,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2786,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=281394,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=2786,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=291247,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=818,
+ ["unit"]=0
+ }
+ },
+ [8182]={
+ ["next_chapter"]=8183,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3645,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1093,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2814,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=284208,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=2814,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=291247,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=818,
+ ["unit"]=0
+ }
+ },
+ [8183]={
+ ["next_chapter"]=8184,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3647,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1094,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2842,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=287050,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=2842,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=291247,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=818,
+ ["unit"]=0
+ }
+ },
+ [8184]={
+ ["next_chapter"]=8185,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3650,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1095,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2870,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=289920,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=2870,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=291247,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=818,
+ ["unit"]=0
+ }
+ },
+ [8185]={
+ ["next_chapter"]=8186,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3652,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1096,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2899,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=292820,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=2899,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=291247,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=818,
+ ["unit"]=0
+ }
+ },
+ [8186]={
+ ["next_chapter"]=8187,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3654,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1096,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2928,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=295748,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=2928,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=291247,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=818,
+ ["unit"]=0
+ }
+ },
+ [8187]={
+ ["next_chapter"]=8188,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3657,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1097,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2957,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=298705,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=2957,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=291247,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=818,
+ ["unit"]=0
+ }
+ },
+ [8188]={
+ ["next_chapter"]=8189,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3659,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1098,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2987,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=301692,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=2987,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=291247,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=818,
+ ["unit"]=0
+ }
+ },
+ [8189]={
+ ["next_chapter"]=8190,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3662,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1099,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3017,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=304709,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=3017,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=291247,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=818,
+ ["unit"]=0
+ }
+ },
+ [8190]={
+ ["next_chapter"]=8191,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=3665,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1099,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3047,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=307756,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=3047,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=321718,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=819,
+ ["unit"]=0
+ }
+ },
+ [8191]={
+ ["next_chapter"]=8192,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3667,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1100,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3078,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=310834,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=3078,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=321718,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=819,
+ ["unit"]=0
+ }
+ },
+ [8192]={
+ ["next_chapter"]=8193,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3670,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1101,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3108,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=313942,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=3108,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=321718,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=819,
+ ["unit"]=0
+ }
+ },
+ [8193]={
+ ["next_chapter"]=8194,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3673,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1102,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3139,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=317082,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=3139,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=321718,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=819,
+ ["unit"]=0
+ }
+ },
+ [8194]={
+ ["next_chapter"]=8195,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3675,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1103,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3171,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=320253,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=3171,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=321718,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=819,
+ ["unit"]=0
+ }
+ },
+ [8195]={
+ ["next_chapter"]=8196,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3678,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1103,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3203,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=323455,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=3203,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=321718,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=819,
+ ["unit"]=0
+ }
+ },
+ [8196]={
+ ["next_chapter"]=8197,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3681,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1104,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3235,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=326690,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=3235,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=321718,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=819,
+ ["unit"]=0
+ }
+ },
+ [8197]={
+ ["next_chapter"]=8198,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3683,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1105,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3267,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=329956,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=3267,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=321718,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=819,
+ ["unit"]=0
+ }
+ },
+ [8198]={
+ ["next_chapter"]=8199,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3686,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1106,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3300,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=333256,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=3300,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=321718,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=819,
+ ["unit"]=0
+ }
+ },
+ [8199]={
+ ["next_chapter"]=8200,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3689,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1107,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3333,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=336589,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=3333,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=321718,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=819,
+ ["unit"]=0
+ }
+ },
+ [8200]={
+ ["next_chapter"]=8201,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=3692,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1108,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3366,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=339954,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=3366,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=355377,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=820,
+ ["unit"]=0
+ }
+ },
+ [8201]={
+ ["next_chapter"]=8202,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3695,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1108,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3400,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=343354,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=3400,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=355377,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=820,
+ ["unit"]=0
+ }
+ },
+ [8202]={
+ ["next_chapter"]=8203,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3698,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1109,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3434,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=346788,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=3434,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=355377,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=820,
+ ["unit"]=0
+ }
+ },
+ [8203]={
+ ["next_chapter"]=8204,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3701,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1110,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3468,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=350255,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=3468,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=355377,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=820,
+ ["unit"]=0
+ }
+ },
+ [8204]={
+ ["next_chapter"]=8205,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3704,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1111,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3503,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=353758,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=3503,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=355377,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=820,
+ ["unit"]=0
+ }
+ },
+ [8205]={
+ ["next_chapter"]=8206,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3707,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1112,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3538,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=357296,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=3538,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=355377,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=820,
+ ["unit"]=0
+ }
+ },
+ [8206]={
+ ["next_chapter"]=8207,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3710,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1113,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3573,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=360869,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=3573,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=355377,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=820,
+ ["unit"]=0
+ }
+ },
+ [8207]={
+ ["next_chapter"]=8208,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3713,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1114,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3609,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=364477,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=3609,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=355377,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=820,
+ ["unit"]=0
+ }
+ },
+ [8208]={
+ ["next_chapter"]=8209,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3716,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1115,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3645,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=368122,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=3645,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=355377,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=820,
+ ["unit"]=0
+ }
+ },
+ [8209]={
+ ["next_chapter"]=8210,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3719,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1116,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3681,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=371803,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=3681,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=355377,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=820,
+ ["unit"]=0
+ }
+ },
+ [8210]={
+ ["next_chapter"]=8211,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=3722,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1117,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3718,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=375521,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=3718,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=392558,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=821,
+ ["unit"]=0
+ }
+ },
+ [8211]={
+ ["next_chapter"]=8212,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3725,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1118,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3755,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=379276,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=3755,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=392558,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=821,
+ ["unit"]=0
+ }
+ },
+ [8212]={
+ ["next_chapter"]=8213,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3729,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1119,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3793,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=383069,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=3793,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=392558,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=821,
+ ["unit"]=0
+ }
+ },
+ [8213]={
+ ["next_chapter"]=8214,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3732,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1120,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3831,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=386900,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=3831,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=392558,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=821,
+ ["unit"]=0
+ }
+ },
+ [8214]={
+ ["next_chapter"]=8215,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3735,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1121,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3869,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=390769,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=3869,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=392558,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=821,
+ ["unit"]=0
+ }
+ },
+ [8215]={
+ ["next_chapter"]=8216,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3739,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1122,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3908,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=394677,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=3908,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=392558,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=821,
+ ["unit"]=0
+ }
+ },
+ [8216]={
+ ["next_chapter"]=8217,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3742,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1123,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3947,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=398623,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=3947,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=392558,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=821,
+ ["unit"]=0
+ }
+ },
+ [8217]={
+ ["next_chapter"]=8218,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3745,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1124,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3986,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=402610,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=3986,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=392558,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=821,
+ ["unit"]=0
+ }
+ },
+ [8218]={
+ ["next_chapter"]=8219,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3749,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1125,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4026,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=406636,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=4026,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=392558,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=821,
+ ["unit"]=0
+ }
+ },
+ [8219]={
+ ["next_chapter"]=8220,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3752,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1126,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4066,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=410702,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=4066,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=392558,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=821,
+ ["unit"]=0
+ }
+ },
+ [8220]={
+ ["next_chapter"]=8221,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=3756,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1127,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4107,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=414809,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=4107,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=433628,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=822,
+ ["unit"]=0
+ }
+ },
+ [8221]={
+ ["next_chapter"]=8222,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3759,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1128,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4148,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=418957,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=4148,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=433628,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=822,
+ ["unit"]=0
+ }
+ },
+ [8222]={
+ ["next_chapter"]=8223,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3763,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1129,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4190,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=423147,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=4190,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=433628,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=822,
+ ["unit"]=0
+ }
+ },
+ [8223]={
+ ["next_chapter"]=8224,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3766,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1130,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4231,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=427378,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=4231,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=433628,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=822,
+ ["unit"]=0
+ }
+ },
+ [8224]={
+ ["next_chapter"]=8225,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3770,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1131,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4274,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=431652,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=4274,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=433628,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=822,
+ ["unit"]=0
+ }
+ },
+ [8225]={
+ ["next_chapter"]=8226,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3773,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1132,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4317,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=435969,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=4317,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=433628,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=822,
+ ["unit"]=0
+ }
+ },
+ [8226]={
+ ["next_chapter"]=8227,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3777,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1133,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4360,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=440328,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=4360,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=433628,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=822,
+ ["unit"]=0
+ }
+ },
+ [8227]={
+ ["next_chapter"]=8228,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3781,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1134,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4403,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=444731,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=4403,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=433628,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=822,
+ ["unit"]=0
+ }
+ },
+ [8228]={
+ ["next_chapter"]=8229,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3784,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1135,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4447,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=449179,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=4447,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=433628,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=822,
+ ["unit"]=0
+ }
+ },
+ [8229]={
+ ["next_chapter"]=8230,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3788,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1136,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4492,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=453671,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=4492,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=433628,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=822,
+ ["unit"]=0
+ }
+ },
+ [8230]={
+ ["next_chapter"]=8231,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=3792,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1138,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4537,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=458207,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=4537,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=478995,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=823,
+ ["unit"]=0
+ }
+ },
+ [8231]={
+ ["next_chapter"]=8232,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3796,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1139,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4582,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=462789,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=4582,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=478995,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=823,
+ ["unit"]=0
+ }
+ },
+ [8232]={
+ ["next_chapter"]=8233,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3800,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1140,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4628,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=467417,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=4628,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=478995,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=823,
+ ["unit"]=0
+ }
+ },
+ [8233]={
+ ["next_chapter"]=8234,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3804,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1141,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4674,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=472091,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=4674,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=478995,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=823,
+ ["unit"]=0
+ }
+ },
+ [8234]={
+ ["next_chapter"]=8235,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3808,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1142,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4721,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=476812,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=4721,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=478995,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=823,
+ ["unit"]=0
+ }
+ },
+ [8235]={
+ ["next_chapter"]=8236,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3811,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1143,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4768,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=481580,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=4768,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=478995,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=823,
+ ["unit"]=0
+ }
+ },
+ [8236]={
+ ["next_chapter"]=8237,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3815,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1145,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4816,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=486396,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=4816,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=478995,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=823,
+ ["unit"]=0
+ }
+ },
+ [8237]={
+ ["next_chapter"]=8238,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3819,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1146,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4864,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=491260,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=4864,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=478995,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=823,
+ ["unit"]=0
+ }
+ },
+ [8238]={
+ ["next_chapter"]=8239,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3824,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1147,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4913,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=496173,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=4913,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=478995,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=823,
+ ["unit"]=0
+ }
+ },
+ [8239]={
+ ["next_chapter"]=8240,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3828,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1148,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4962,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=501135,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=4962,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=478995,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=823,
+ ["unit"]=0
+ }
+ },
+ [8240]={
+ ["next_chapter"]=8241,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=3832,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1150,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5011,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=506146,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=5011,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=529108,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=824,
+ ["unit"]=0
+ }
+ },
+ [8241]={
+ ["next_chapter"]=8242,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3836,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1151,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5061,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=511207,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=5061,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=529108,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=824,
+ ["unit"]=0
+ }
+ },
+ [8242]={
+ ["next_chapter"]=8243,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3840,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1152,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5112,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=516319,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=5112,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=529108,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=824,
+ ["unit"]=0
+ }
+ },
+ [8243]={
+ ["next_chapter"]=8244,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3844,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1153,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5163,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=521483,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=5163,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=529108,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=824,
+ ["unit"]=0
+ }
+ },
+ [8244]={
+ ["next_chapter"]=8245,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3849,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1155,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5215,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=526697,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=5215,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=529108,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=824,
+ ["unit"]=0
+ }
+ },
+ [8245]={
+ ["next_chapter"]=8246,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3853,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1156,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5267,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=531964,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=5267,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=529108,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=824,
+ ["unit"]=0
+ }
+ },
+ [8246]={
+ ["next_chapter"]=8247,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3857,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1157,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5320,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=537284,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=5320,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=529108,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=824,
+ ["unit"]=0
+ }
+ },
+ [8247]={
+ ["next_chapter"]=8248,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3862,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1158,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5373,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=542657,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=5373,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=529108,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=824,
+ ["unit"]=0
+ }
+ },
+ [8248]={
+ ["next_chapter"]=8249,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3866,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1160,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5427,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=548083,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=5427,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=529108,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=824,
+ ["unit"]=0
+ }
+ },
+ [8249]={
+ ["next_chapter"]=8250,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3871,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1161,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5481,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=553564,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=5481,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=529108,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=824,
+ ["unit"]=0
+ }
+ },
+ [8250]={
+ ["next_chapter"]=8251,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=3875,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1163,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5536,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=559100,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=5536,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=584465,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=825,
+ ["unit"]=0
+ }
+ },
+ [8251]={
+ ["next_chapter"]=8252,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3880,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1164,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5591,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=564691,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=5591,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=584465,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=825,
+ ["unit"]=0
+ }
+ },
+ [8252]={
+ ["next_chapter"]=8253,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3884,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1165,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5647,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=570338,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=5647,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=584465,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=825,
+ ["unit"]=0
+ }
+ },
+ [8253]={
+ ["next_chapter"]=8254,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3889,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1167,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5703,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=576041,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=5703,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=584465,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=825,
+ ["unit"]=0
+ }
+ },
+ [8254]={
+ ["next_chapter"]=8255,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3893,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1168,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5760,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=581802,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=5760,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=584465,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=825,
+ ["unit"]=0
+ }
+ },
+ [8255]={
+ ["next_chapter"]=8256,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3898,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1169,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5818,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=587620,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=5818,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=584465,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=825,
+ ["unit"]=0
+ }
+ },
+ [8256]={
+ ["next_chapter"]=8257,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3903,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1171,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5876,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=593496,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=5876,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=584465,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=825,
+ ["unit"]=0
+ }
+ },
+ [8257]={
+ ["next_chapter"]=8258,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3907,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1172,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5935,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=599431,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=5935,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=584465,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=825,
+ ["unit"]=0
+ }
+ },
+ [8258]={
+ ["next_chapter"]=8259,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3912,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1174,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5994,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=605425,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=5994,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=584465,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=825,
+ ["unit"]=0
+ }
+ },
+ [8259]={
+ ["next_chapter"]=8260,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3917,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1175,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6054,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=611479,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=6054,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=584465,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=825,
+ ["unit"]=0
+ }
+ },
+ [8260]={
+ ["next_chapter"]=8261,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=3922,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1177,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6115,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=617594,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=6115,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=645613,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=826,
+ ["unit"]=0
+ }
+ },
+ [8261]={
+ ["next_chapter"]=8262,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3927,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1178,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6176,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=623770,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=6176,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=645613,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=826,
+ ["unit"]=0
+ }
+ },
+ [8262]={
+ ["next_chapter"]=8263,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3932,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1179,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6238,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=630008,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=6238,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=645613,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=826,
+ ["unit"]=0
+ }
+ },
+ [8263]={
+ ["next_chapter"]=8264,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3937,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1181,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6300,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=636308,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=6300,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=645613,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=826,
+ ["unit"]=0
+ }
+ },
+ [8264]={
+ ["next_chapter"]=8265,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3942,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1182,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6363,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=642671,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=6363,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=645613,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=826,
+ ["unit"]=0
+ }
+ },
+ [8265]={
+ ["next_chapter"]=8266,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3947,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1184,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6427,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=649098,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=6427,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=645613,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=826,
+ ["unit"]=0
+ }
+ },
+ [8266]={
+ ["next_chapter"]=8267,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3952,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1186,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6491,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=655589,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=6491,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=645613,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=826,
+ ["unit"]=0
+ }
+ },
+ [8267]={
+ ["next_chapter"]=8268,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3957,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1187,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6556,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=662145,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=6556,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=645613,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=826,
+ ["unit"]=0
+ }
+ },
+ [8268]={
+ ["next_chapter"]=8269,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3962,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1189,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6621,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=668766,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=6621,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=645613,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=826,
+ ["unit"]=0
+ }
+ },
+ [8269]={
+ ["next_chapter"]=8270,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3967,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1190,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6688,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=675454,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=6688,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=645613,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=826,
+ ["unit"]=0
+ }
+ },
+ [8270]={
+ ["next_chapter"]=8271,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=3972,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1192,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6755,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=682208,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=6755,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=713158,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=827,
+ ["unit"]=0
+ }
+ },
+ [8271]={
+ ["next_chapter"]=8272,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3978,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1193,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6822,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=689030,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=6822,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=713158,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=827,
+ ["unit"]=0
+ }
+ },
+ [8272]={
+ ["next_chapter"]=8273,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3983,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1195,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6890,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=695921,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=6890,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=713158,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=827,
+ ["unit"]=0
+ }
+ },
+ [8273]={
+ ["next_chapter"]=8274,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3988,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1196,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6959,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=702880,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=6959,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=713158,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=827,
+ ["unit"]=0
+ }
+ },
+ [8274]={
+ ["next_chapter"]=8275,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3994,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1198,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7029,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=709909,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=7029,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=713158,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=827,
+ ["unit"]=0
+ }
+ },
+ [8275]={
+ ["next_chapter"]=8276,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3999,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1200,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7099,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=717008,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=7099,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=713158,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=827,
+ ["unit"]=0
+ }
+ },
+ [8276]={
+ ["next_chapter"]=8277,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4005,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1201,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7170,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=724178,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=7170,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=713158,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=827,
+ ["unit"]=0
+ }
+ },
+ [8277]={
+ ["next_chapter"]=8278,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4010,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1203,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7242,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=731420,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=7242,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=713158,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=827,
+ ["unit"]=0
+ }
+ },
+ [8278]={
+ ["next_chapter"]=8279,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4016,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1205,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7314,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=738734,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=7314,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=713158,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=827,
+ ["unit"]=0
+ }
+ },
+ [8279]={
+ ["next_chapter"]=8280,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4021,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1206,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7387,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=746121,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=7387,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=713158,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=827,
+ ["unit"]=0
+ }
+ },
+ [8280]={
+ ["next_chapter"]=8281,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=4027,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1208,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7461,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=753582,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=7461,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=787770,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=828,
+ ["unit"]=0
+ }
+ },
+ [8281]={
+ ["next_chapter"]=8282,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4033,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1210,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7536,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=761118,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=7536,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=787770,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=828,
+ ["unit"]=0
+ }
+ },
+ [8282]={
+ ["next_chapter"]=8283,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4038,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1211,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7611,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=768729,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=7611,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=787770,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=828,
+ ["unit"]=0
+ }
+ },
+ [8283]={
+ ["next_chapter"]=8284,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4044,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1213,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7687,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=776417,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=7687,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=787770,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=828,
+ ["unit"]=0
+ }
+ },
+ [8284]={
+ ["next_chapter"]=8285,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4050,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1215,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7764,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=784181,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=7764,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=787770,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=828,
+ ["unit"]=0
+ }
+ },
+ [8285]={
+ ["next_chapter"]=8286,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4056,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1217,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7842,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=792023,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=7842,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=787770,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=828,
+ ["unit"]=0
+ }
+ },
+ [8286]={
+ ["next_chapter"]=8287,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4061,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1218,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7920,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=799943,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=7920,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=787770,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=828,
+ ["unit"]=0
+ }
+ },
+ [8287]={
+ ["next_chapter"]=8288,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4067,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1220,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7999,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=807942,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=7999,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=787770,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=828,
+ ["unit"]=0
+ }
+ },
+ [8288]={
+ ["next_chapter"]=8289,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4073,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1222,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8079,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=816022,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=8079,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=787770,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=828,
+ ["unit"]=0
+ }
+ },
+ [8289]={
+ ["next_chapter"]=8290,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4079,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1224,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8160,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=824182,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=8160,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=787770,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=828,
+ ["unit"]=0
+ }
+ },
+ [8290]={
+ ["next_chapter"]=8291,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=4085,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1226,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8242,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=832424,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=8242,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=870188,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=829,
+ ["unit"]=0
+ }
+ },
+ [8291]={
+ ["next_chapter"]=8292,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4091,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1227,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8324,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=840748,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=8324,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=870188,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=829,
+ ["unit"]=0
+ }
+ },
+ [8292]={
+ ["next_chapter"]=8293,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4098,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1229,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8407,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=849155,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=8407,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=870188,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=829,
+ ["unit"]=0
+ }
+ },
+ [8293]={
+ ["next_chapter"]=8294,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4104,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1231,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8492,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=857647,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=8492,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=870188,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=829,
+ ["unit"]=0
+ }
+ },
+ [8294]={
+ ["next_chapter"]=8295,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4110,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1233,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8576,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=866223,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=8576,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=870188,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=829,
+ ["unit"]=0
+ }
+ },
+ [8295]={
+ ["next_chapter"]=8296,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4116,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1235,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8662,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=874886,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=8662,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=870188,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=829,
+ ["unit"]=0
+ }
+ },
+ [8296]={
+ ["next_chapter"]=8297,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4122,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1237,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8749,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=883634,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=8749,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=870188,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=829,
+ ["unit"]=0
+ }
+ },
+ [8297]={
+ ["next_chapter"]=8298,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4129,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1239,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8836,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=892471,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=8836,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=870188,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=829,
+ ["unit"]=0
+ }
+ },
+ [8298]={
+ ["next_chapter"]=8299,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4135,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1241,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8925,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=901396,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=8925,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=870188,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=829,
+ ["unit"]=0
+ }
+ },
+ [8299]={
+ ["next_chapter"]=8300,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4142,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1242,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9014,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=910410,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=9014,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=870188,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=829,
+ ["unit"]=0
+ }
+ },
+ [8300]={
+ ["next_chapter"]=8301,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=4148,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1244,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9104,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=919514,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=9104,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=961229,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=830,
+ ["unit"]=0
+ }
+ },
+ [8301]={
+ ["next_chapter"]=8302,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4155,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1246,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9195,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=928709,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=9195,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=961229,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=830,
+ ["unit"]=0
+ }
+ },
+ [8302]={
+ ["next_chapter"]=8303,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4161,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1248,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9287,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=937996,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=9287,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=961229,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=830,
+ ["unit"]=0
+ }
+ },
+ [8303]={
+ ["next_chapter"]=8304,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4168,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1250,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9380,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=947376,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=9380,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=961229,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=830,
+ ["unit"]=0
+ }
+ },
+ [8304]={
+ ["next_chapter"]=8305,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4174,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1252,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9474,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=956850,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=9474,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=961229,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=830,
+ ["unit"]=0
+ }
+ },
+ [8305]={
+ ["next_chapter"]=8306,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4181,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1254,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9568,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=966418,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=9568,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=961229,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=830,
+ ["unit"]=0
+ }
+ },
+ [8306]={
+ ["next_chapter"]=8307,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4188,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1256,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9664,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=976082,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=9664,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=961229,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=830,
+ ["unit"]=0
+ }
+ },
+ [8307]={
+ ["next_chapter"]=8308,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4194,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1258,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9761,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=985843,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=9761,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=961229,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=830,
+ ["unit"]=0
+ }
+ },
+ [8308]={
+ ["next_chapter"]=8309,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4201,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1260,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9858,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=995701,
+ ["unit"]=11
+ },
+ ["idle_gold"]={
+ ["value"]=9858,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=961229,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=830,
+ ["unit"]=0
+ }
+ },
+ [8309]={
+ ["next_chapter"]=8310,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4208,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1262,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9957,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1006,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=9957,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=961229,
+ ["unit"]=11
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=830,
+ ["unit"]=0
+ }
+ },
+ [8310]={
+ ["next_chapter"]=8311,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=4215,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1264,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10057,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1016,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=10057,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1062,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=831,
+ ["unit"]=0
+ }
+ },
+ [8311]={
+ ["next_chapter"]=8312,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4222,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1267,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10157,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1026,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=10157,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1062,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=831,
+ ["unit"]=0
+ }
+ },
+ [8312]={
+ ["next_chapter"]=8313,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4229,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1269,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10259,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1036,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=10259,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1062,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=831,
+ ["unit"]=0
+ }
+ },
+ [8313]={
+ ["next_chapter"]=8314,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4236,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1271,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10361,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1046,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=10361,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1062,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=831,
+ ["unit"]=0
+ }
+ },
+ [8314]={
+ ["next_chapter"]=8315,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4243,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1273,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10465,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1057,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=10465,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1062,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=831,
+ ["unit"]=0
+ }
+ },
+ [8315]={
+ ["next_chapter"]=8316,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4250,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1275,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10570,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1068,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=10570,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1062,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=831,
+ ["unit"]=0
+ }
+ },
+ [8316]={
+ ["next_chapter"]=8317,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4257,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1277,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10675,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1078,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=10675,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1062,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=831,
+ ["unit"]=0
+ }
+ },
+ [8317]={
+ ["next_chapter"]=8318,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4265,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1279,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10782,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1089,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=10782,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1062,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=831,
+ ["unit"]=0
+ }
+ },
+ [8318]={
+ ["next_chapter"]=8319,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4272,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1282,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10890,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1100,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=10890,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1062,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=831,
+ ["unit"]=0
+ }
+ },
+ [8319]={
+ ["next_chapter"]=8320,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4279,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1284,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10999,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1111,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=10999,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1062,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=831,
+ ["unit"]=0
+ }
+ },
+ [8320]={
+ ["next_chapter"]=8321,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=4286,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1286,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=11109,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1122,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=11109,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1173,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=832,
+ ["unit"]=0
+ }
+ },
+ [8321]={
+ ["next_chapter"]=8322,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4294,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1288,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=11220,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1133,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=11220,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1173,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=832,
+ ["unit"]=0
+ }
+ },
+ [8322]={
+ ["next_chapter"]=8323,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4301,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1290,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=11332,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1145,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=11332,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1173,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=832,
+ ["unit"]=0
+ }
+ },
+ [8323]={
+ ["next_chapter"]=8324,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4309,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1293,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=11445,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1156,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=11445,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1173,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=832,
+ ["unit"]=0
+ }
+ },
+ [8324]={
+ ["next_chapter"]=8325,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4316,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1295,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=11560,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1168,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=11560,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1173,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=832,
+ ["unit"]=0
+ }
+ },
+ [8325]={
+ ["next_chapter"]=8326,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4324,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1297,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=11675,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1179,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=11675,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1173,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=832,
+ ["unit"]=0
+ }
+ },
+ [8326]={
+ ["next_chapter"]=8327,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4332,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1299,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=11792,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1191,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=11792,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1173,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=832,
+ ["unit"]=0
+ }
+ },
+ [8327]={
+ ["next_chapter"]=8328,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4339,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1302,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=11910,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1203,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=11910,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1173,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=832,
+ ["unit"]=0
+ }
+ },
+ [8328]={
+ ["next_chapter"]=8329,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4347,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1304,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=12029,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1215,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=12029,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1173,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=832,
+ ["unit"]=0
+ }
+ },
+ [8329]={
+ ["next_chapter"]=8330,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4355,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1306,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=12149,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1227,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=12149,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1173,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=832,
+ ["unit"]=0
+ }
+ },
+ [8330]={
+ ["next_chapter"]=8331,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=4362,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1309,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=12271,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1239,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=12271,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1296,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=833,
+ ["unit"]=0
+ }
+ },
+ [8331]={
+ ["next_chapter"]=8332,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4370,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1311,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=12394,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1252,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=12394,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1296,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=833,
+ ["unit"]=0
+ }
+ },
+ [8332]={
+ ["next_chapter"]=8333,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4378,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1313,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=12518,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1264,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=12518,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1296,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=833,
+ ["unit"]=0
+ }
+ },
+ [8333]={
+ ["next_chapter"]=8334,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4386,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1316,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=12643,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1277,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=12643,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1296,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=833,
+ ["unit"]=0
+ }
+ },
+ [8334]={
+ ["next_chapter"]=8335,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4394,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1318,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=12769,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1290,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=12769,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1296,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=833,
+ ["unit"]=0
+ }
+ },
+ [8335]={
+ ["next_chapter"]=8336,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4402,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1321,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=12897,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1303,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=12897,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1296,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=833,
+ ["unit"]=0
+ }
+ },
+ [8336]={
+ ["next_chapter"]=8337,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4410,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1323,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=13026,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1316,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=13026,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1296,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=833,
+ ["unit"]=0
+ }
+ },
+ [8337]={
+ ["next_chapter"]=8338,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4419,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1326,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=13156,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1329,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=13156,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1296,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=833,
+ ["unit"]=0
+ }
+ },
+ [8338]={
+ ["next_chapter"]=8339,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4427,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1328,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=13288,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1342,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=13288,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1296,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=833,
+ ["unit"]=0
+ }
+ },
+ [8339]={
+ ["next_chapter"]=8340,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4435,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1330,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=13421,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1355,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=13421,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1296,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=833,
+ ["unit"]=0
+ }
+ },
+ [8340]={
+ ["next_chapter"]=8341,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=4443,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1333,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=13555,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1369,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=13555,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1431,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=834,
+ ["unit"]=0
+ }
+ },
+ [8341]={
+ ["next_chapter"]=8342,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4452,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1335,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=13690,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1383,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=13690,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1431,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=834,
+ ["unit"]=0
+ }
+ },
+ [8342]={
+ ["next_chapter"]=8343,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4460,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1338,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=13827,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1397,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=13827,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1431,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=834,
+ ["unit"]=0
+ }
+ },
+ [8343]={
+ ["next_chapter"]=8344,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4468,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1341,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=13965,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1411,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=13965,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1431,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=834,
+ ["unit"]=0
+ }
+ },
+ [8344]={
+ ["next_chapter"]=8345,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4477,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1343,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=14105,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1425,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=14105,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1431,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=834,
+ ["unit"]=0
+ }
+ },
+ [8345]={
+ ["next_chapter"]=8346,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4486,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1346,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=14246,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1439,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=14246,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1431,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=834,
+ ["unit"]=0
+ }
+ },
+ [8346]={
+ ["next_chapter"]=8347,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4494,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1348,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=14389,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1453,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=14389,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1431,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=834,
+ ["unit"]=0
+ }
+ },
+ [8347]={
+ ["next_chapter"]=8348,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4503,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1351,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=14533,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1468,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=14533,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1431,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=834,
+ ["unit"]=0
+ }
+ },
+ [8348]={
+ ["next_chapter"]=8349,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4511,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1353,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=14678,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1482,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=14678,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1431,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=834,
+ ["unit"]=0
+ }
+ },
+ [8349]={
+ ["next_chapter"]=8350,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4520,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1356,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=14825,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1497,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=14825,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1431,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=834,
+ ["unit"]=0
+ }
+ },
+ [8350]={
+ ["next_chapter"]=8351,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=4529,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1359,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=14973,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1512,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=14973,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1581,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=835,
+ ["unit"]=0
+ }
+ },
+ [8351]={
+ ["next_chapter"]=8352,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4538,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1361,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=15123,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1527,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=15123,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1581,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=835,
+ ["unit"]=0
+ }
+ },
+ [8352]={
+ ["next_chapter"]=8353,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4547,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1364,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=15274,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1543,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=15274,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1581,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=835,
+ ["unit"]=0
+ }
+ },
+ [8353]={
+ ["next_chapter"]=8354,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4556,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1367,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=15427,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1558,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=15427,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1581,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=835,
+ ["unit"]=0
+ }
+ },
+ [8354]={
+ ["next_chapter"]=8355,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4565,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1369,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=15581,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1574,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=15581,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1581,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=835,
+ ["unit"]=0
+ }
+ },
+ [8355]={
+ ["next_chapter"]=8356,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4574,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1372,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=15737,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1589,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=15737,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1581,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=835,
+ ["unit"]=0
+ }
+ },
+ [8356]={
+ ["next_chapter"]=8357,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4583,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1375,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=15894,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1605,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=15894,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1581,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=835,
+ ["unit"]=0
+ }
+ },
+ [8357]={
+ ["next_chapter"]=8358,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4592,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1378,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=16053,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1621,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=16053,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1581,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=835,
+ ["unit"]=0
+ }
+ },
+ [8358]={
+ ["next_chapter"]=8359,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4601,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1380,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=16213,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1638,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=16213,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1581,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=835,
+ ["unit"]=0
+ }
+ },
+ [8359]={
+ ["next_chapter"]=8360,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4610,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1383,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=16376,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1654,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=16376,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1581,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=835,
+ ["unit"]=0
+ }
+ },
+ [8360]={
+ ["next_chapter"]=8361,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=4620,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1386,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=16539,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1670,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=16539,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1746,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=836,
+ ["unit"]=0
+ }
+ },
+ [8361]={
+ ["next_chapter"]=8362,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4629,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1389,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=16705,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1687,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=16705,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1746,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=836,
+ ["unit"]=0
+ }
+ },
+ [8362]={
+ ["next_chapter"]=8363,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4639,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1392,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=16872,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1704,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=16872,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1746,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=836,
+ ["unit"]=0
+ }
+ },
+ [8363]={
+ ["next_chapter"]=8364,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4648,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1394,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=17041,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1721,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=17041,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1746,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=836,
+ ["unit"]=0
+ }
+ },
+ [8364]={
+ ["next_chapter"]=8365,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4657,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1397,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=17211,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1738,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=17211,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1746,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=836,
+ ["unit"]=0
+ }
+ },
+ [8365]={
+ ["next_chapter"]=8366,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4667,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1400,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=17383,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1756,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=17383,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1746,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=836,
+ ["unit"]=0
+ }
+ },
+ [8366]={
+ ["next_chapter"]=8367,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4677,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1403,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=17557,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1773,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=17557,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1746,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=836,
+ ["unit"]=0
+ }
+ },
+ [8367]={
+ ["next_chapter"]=8368,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4686,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1406,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=17732,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1791,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=17732,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1746,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=836,
+ ["unit"]=0
+ }
+ },
+ [8368]={
+ ["next_chapter"]=8369,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4696,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1409,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=17910,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1809,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=17910,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1746,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=836,
+ ["unit"]=0
+ }
+ },
+ [8369]={
+ ["next_chapter"]=8370,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4706,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1412,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=18089,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1827,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=18089,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1746,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=836,
+ ["unit"]=0
+ }
+ },
+ [8370]={
+ ["next_chapter"]=8371,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=4716,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1415,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=18270,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1845,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=18270,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1929,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=837,
+ ["unit"]=0
+ }
+ },
+ [8371]={
+ ["next_chapter"]=8372,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4726,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1418,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=18452,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1864,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=18452,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1929,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=837,
+ ["unit"]=0
+ }
+ },
+ [8372]={
+ ["next_chapter"]=8373,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4735,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1421,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=18637,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1882,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=18637,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1929,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=837,
+ ["unit"]=0
+ }
+ },
+ [8373]={
+ ["next_chapter"]=8374,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4745,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1424,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=18823,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1901,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=18823,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1929,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=837,
+ ["unit"]=0
+ }
+ },
+ [8374]={
+ ["next_chapter"]=8375,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4756,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1427,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=19012,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1920,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=19012,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1929,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=837,
+ ["unit"]=0
+ }
+ },
+ [8375]={
+ ["next_chapter"]=8376,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4766,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1430,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=19202,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1939,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=19202,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1929,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=837,
+ ["unit"]=0
+ }
+ },
+ [8376]={
+ ["next_chapter"]=8377,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4776,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1433,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=19394,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1959,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=19394,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1929,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=837,
+ ["unit"]=0
+ }
+ },
+ [8377]={
+ ["next_chapter"]=8378,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4786,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1436,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=19588,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1978,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=19588,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1929,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=837,
+ ["unit"]=0
+ }
+ },
+ [8378]={
+ ["next_chapter"]=8379,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4796,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1439,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=19784,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1998,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=19784,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1929,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=837,
+ ["unit"]=0
+ }
+ },
+ [8379]={
+ ["next_chapter"]=8380,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4807,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1442,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=19981,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2018,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=19981,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1929,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=837,
+ ["unit"]=0
+ }
+ },
+ [8380]={
+ ["next_chapter"]=8381,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=4817,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1445,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=20181,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2038,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=20181,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2131,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=838,
+ ["unit"]=0
+ }
+ },
+ [8381]={
+ ["next_chapter"]=8382,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4827,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1448,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=20383,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2059,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=20383,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2131,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=838,
+ ["unit"]=0
+ }
+ },
+ [8382]={
+ ["next_chapter"]=8383,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4838,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1451,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=20587,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2079,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=20587,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2131,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=838,
+ ["unit"]=0
+ }
+ },
+ [8383]={
+ ["next_chapter"]=8384,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4848,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1455,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=20793,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2100,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=20793,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2131,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=838,
+ ["unit"]=0
+ }
+ },
+ [8384]={
+ ["next_chapter"]=8385,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4859,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1458,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=21001,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2121,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=21001,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2131,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=838,
+ ["unit"]=0
+ }
+ },
+ [8385]={
+ ["next_chapter"]=8386,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4870,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1461,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=21211,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2142,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=21211,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2131,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=838,
+ ["unit"]=0
+ }
+ },
+ [8386]={
+ ["next_chapter"]=8387,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4880,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1464,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=21423,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2164,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=21423,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2131,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=838,
+ ["unit"]=0
+ }
+ },
+ [8387]={
+ ["next_chapter"]=8388,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4891,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1467,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=21637,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2185,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=21637,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2131,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=838,
+ ["unit"]=0
+ }
+ },
+ [8388]={
+ ["next_chapter"]=8389,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4902,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1471,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=21853,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2207,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=21853,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2131,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=838,
+ ["unit"]=0
+ }
+ },
+ [8389]={
+ ["next_chapter"]=8390,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4913,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1474,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=22072,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2229,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=22072,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2131,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=838,
+ ["unit"]=0
+ }
+ },
+ [8390]={
+ ["next_chapter"]=8391,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=4924,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1477,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=22293,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2252,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=22293,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2354,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=839,
+ ["unit"]=0
+ }
+ },
+ [8391]={
+ ["next_chapter"]=8392,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4935,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1480,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=22516,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2274,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=22516,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2354,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=839,
+ ["unit"]=0
+ }
+ },
+ [8392]={
+ ["next_chapter"]=8393,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4946,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1484,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=22741,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2297,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=22741,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2354,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=839,
+ ["unit"]=0
+ }
+ },
+ [8393]={
+ ["next_chapter"]=8394,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4957,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1487,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=22968,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2320,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=22968,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2354,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=839,
+ ["unit"]=0
+ }
+ },
+ [8394]={
+ ["next_chapter"]=8395,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4968,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1490,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=23198,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2343,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=23198,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2354,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=839,
+ ["unit"]=0
+ }
+ },
+ [8395]={
+ ["next_chapter"]=8396,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4979,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1494,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=23430,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2366,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=23430,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2354,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=839,
+ ["unit"]=0
+ }
+ },
+ [8396]={
+ ["next_chapter"]=8397,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4990,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1497,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=23664,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2390,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=23664,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2354,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=839,
+ ["unit"]=0
+ }
+ },
+ [8397]={
+ ["next_chapter"]=8398,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5002,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1501,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=23901,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2414,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=23901,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2354,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=839,
+ ["unit"]=0
+ }
+ },
+ [8398]={
+ ["next_chapter"]=8399,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5013,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1504,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=24140,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2438,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=24140,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2354,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=839,
+ ["unit"]=0
+ }
+ },
+ [8399]={
+ ["next_chapter"]=8400,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5025,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1507,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=24381,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2462,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=24381,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2354,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=839,
+ ["unit"]=0
+ }
+ },
+ [8400]={
+ ["next_chapter"]=8401,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=5036,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1511,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=24625,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2487,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=24625,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2600,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=840,
+ ["unit"]=0
+ }
+ },
+ [8401]={
+ ["next_chapter"]=8402,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5048,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1514,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=24871,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2512,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=24871,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2600,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=840,
+ ["unit"]=0
+ }
+ },
+ [8402]={
+ ["next_chapter"]=8403,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5059,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1518,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=25120,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2537,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=25120,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2600,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=840,
+ ["unit"]=0
+ }
+ },
+ [8403]={
+ ["next_chapter"]=8404,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5071,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1521,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=25371,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2562,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=25371,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2600,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=840,
+ ["unit"]=0
+ }
+ },
+ [8404]={
+ ["next_chapter"]=8405,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5083,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1525,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=25625,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2588,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=25625,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2600,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=840,
+ ["unit"]=0
+ }
+ },
+ [8405]={
+ ["next_chapter"]=8406,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5094,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1528,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=25881,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2614,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=25881,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2600,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=840,
+ ["unit"]=0
+ }
+ },
+ [8406]={
+ ["next_chapter"]=8407,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5106,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1532,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=26140,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2640,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=26140,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2600,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=840,
+ ["unit"]=0
+ }
+ },
+ [8407]={
+ ["next_chapter"]=8408,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5118,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1535,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=26401,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2667,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=26401,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2600,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=840,
+ ["unit"]=0
+ }
+ },
+ [8408]={
+ ["next_chapter"]=8409,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5130,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1539,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=26665,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2693,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=26665,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2600,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=840,
+ ["unit"]=0
+ }
+ },
+ [8409]={
+ ["next_chapter"]=8410,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5142,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1543,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=26932,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2720,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=26932,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2600,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=840,
+ ["unit"]=0
+ }
+ },
+ [8410]={
+ ["next_chapter"]=8411,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=5154,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1546,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=27201,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2747,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=27201,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2872,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=841,
+ ["unit"]=0
+ }
+ },
+ [8411]={
+ ["next_chapter"]=8412,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5166,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1550,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=27473,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2775,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=27473,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2872,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=841,
+ ["unit"]=0
+ }
+ },
+ [8412]={
+ ["next_chapter"]=8413,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5178,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1554,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=27748,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2803,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=27748,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2872,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=841,
+ ["unit"]=0
+ }
+ },
+ [8413]={
+ ["next_chapter"]=8414,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5191,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1557,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=28025,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2831,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=28025,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2872,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=841,
+ ["unit"]=0
+ }
+ },
+ [8414]={
+ ["next_chapter"]=8415,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5203,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1561,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=28306,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2859,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=28306,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2872,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=841,
+ ["unit"]=0
+ }
+ },
+ [8415]={
+ ["next_chapter"]=8416,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5215,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1565,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=28589,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2887,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=28589,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2872,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=841,
+ ["unit"]=0
+ }
+ },
+ [8416]={
+ ["next_chapter"]=8417,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5228,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1568,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=28875,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2916,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=28875,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2872,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=841,
+ ["unit"]=0
+ }
+ },
+ [8417]={
+ ["next_chapter"]=8418,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5240,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1572,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=29163,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2945,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=29163,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2872,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=841,
+ ["unit"]=0
+ }
+ },
+ [8418]={
+ ["next_chapter"]=8419,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5253,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1576,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=29455,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2975,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=29455,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2872,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=841,
+ ["unit"]=0
+ }
+ },
+ [8419]={
+ ["next_chapter"]=8420,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5265,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1580,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=29750,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3005,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=29750,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2872,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=841,
+ ["unit"]=0
+ }
+ },
+ [8420]={
+ ["next_chapter"]=8421,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=5278,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1583,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=30047,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3035,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=30047,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=3172,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=842,
+ ["unit"]=0
+ }
+ },
+ [8421]={
+ ["next_chapter"]=8422,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5291,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1587,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=30348,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3065,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=30348,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=3172,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=842,
+ ["unit"]=0
+ }
+ },
+ [8422]={
+ ["next_chapter"]=8423,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5304,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1591,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=30651,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3096,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=30651,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=3172,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=842,
+ ["unit"]=0
+ }
+ },
+ [8423]={
+ ["next_chapter"]=8424,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5316,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1595,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=30957,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3127,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=30957,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=3172,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=842,
+ ["unit"]=0
+ }
+ },
+ [8424]={
+ ["next_chapter"]=8425,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5329,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1599,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=31267,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3158,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=31267,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=3172,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=842,
+ ["unit"]=0
+ }
+ },
+ [8425]={
+ ["next_chapter"]=8426,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5342,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1603,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=31580,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3190,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=31580,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=3172,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=842,
+ ["unit"]=0
+ }
+ },
+ [8426]={
+ ["next_chapter"]=8427,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5355,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1607,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=31896,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3221,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=31896,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=3172,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=842,
+ ["unit"]=0
+ }
+ },
+ [8427]={
+ ["next_chapter"]=8428,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5369,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1611,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=32214,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3254,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=32214,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=3172,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=842,
+ ["unit"]=0
+ }
+ },
+ [8428]={
+ ["next_chapter"]=8429,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5382,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1614,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=32537,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3286,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=32537,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=3172,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=842,
+ ["unit"]=0
+ }
+ },
+ [8429]={
+ ["next_chapter"]=8430,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5395,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1618,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=32862,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3319,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=32862,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=3172,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=842,
+ ["unit"]=0
+ }
+ },
+ [8430]={
+ ["next_chapter"]=8431,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=5408,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1622,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=33191,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3352,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=33191,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=3504,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=843,
+ ["unit"]=0
+ }
+ },
+ [8431]={
+ ["next_chapter"]=8432,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5422,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1626,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=33523,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3386,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=33523,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=3504,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=843,
+ ["unit"]=0
+ }
+ },
+ [8432]={
+ ["next_chapter"]=8433,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5435,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1630,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=33858,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3420,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=33858,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=3504,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=843,
+ ["unit"]=0
+ }
+ },
+ [8433]={
+ ["next_chapter"]=8434,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5448,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1635,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=34196,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3454,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=34196,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=3504,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=843,
+ ["unit"]=0
+ }
+ },
+ [8434]={
+ ["next_chapter"]=8435,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5462,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1639,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=34538,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3488,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=34538,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=3504,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=843,
+ ["unit"]=0
+ }
+ },
+ [8435]={
+ ["next_chapter"]=8436,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5476,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1643,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=34884,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3523,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=34884,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=3504,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=843,
+ ["unit"]=0
+ }
+ },
+ [8436]={
+ ["next_chapter"]=8437,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5489,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1647,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=35233,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3558,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=35233,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=3504,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=843,
+ ["unit"]=0
+ }
+ },
+ [8437]={
+ ["next_chapter"]=8438,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5503,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1651,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=35585,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3594,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=35585,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=3504,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=843,
+ ["unit"]=0
+ }
+ },
+ [8438]={
+ ["next_chapter"]=8439,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5517,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1655,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=35941,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3630,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=35941,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=3504,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=843,
+ ["unit"]=0
+ }
+ },
+ [8439]={
+ ["next_chapter"]=8440,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5531,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1659,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=36300,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3666,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=36300,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=3504,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=843,
+ ["unit"]=0
+ }
+ },
+ [8440]={
+ ["next_chapter"]=8441,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=5544,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1663,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=36663,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3703,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=36663,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=3871,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=844,
+ ["unit"]=0
+ }
+ },
+ [8441]={
+ ["next_chapter"]=8442,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5558,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1668,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=37030,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3740,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=37030,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=3871,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=844,
+ ["unit"]=0
+ }
+ },
+ [8442]={
+ ["next_chapter"]=8443,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5572,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1672,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=37400,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3777,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=37400,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=3871,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=844,
+ ["unit"]=0
+ }
+ },
+ [8443]={
+ ["next_chapter"]=8444,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5587,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1676,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=37774,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3815,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=37774,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=3871,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=844,
+ ["unit"]=0
+ }
+ },
+ [8444]={
+ ["next_chapter"]=8445,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5601,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1680,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=38152,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3853,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=38152,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=3871,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=844,
+ ["unit"]=0
+ }
+ },
+ [8445]={
+ ["next_chapter"]=8446,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5615,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1684,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=38533,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3892,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=38533,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=3871,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=844,
+ ["unit"]=0
+ }
+ },
+ [8446]={
+ ["next_chapter"]=8447,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5629,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1689,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=38919,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3931,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=38919,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=3871,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=844,
+ ["unit"]=0
+ }
+ },
+ [8447]={
+ ["next_chapter"]=8448,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5644,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1693,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=39308,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3970,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=39308,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=3871,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=844,
+ ["unit"]=0
+ }
+ },
+ [8448]={
+ ["next_chapter"]=8449,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5658,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1697,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=39701,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4010,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=39701,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=3871,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=844,
+ ["unit"]=0
+ }
+ },
+ [8449]={
+ ["next_chapter"]=8450,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5672,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1702,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=40098,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4050,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=40098,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=3871,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=844,
+ ["unit"]=0
+ }
+ },
+ [8450]={
+ ["next_chapter"]=8451,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=5687,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1706,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=40499,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4090,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=40499,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=4276,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=845,
+ ["unit"]=0
+ }
+ },
+ [8451]={
+ ["next_chapter"]=8452,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5702,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1710,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=40904,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4131,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=40904,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=4276,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=845,
+ ["unit"]=0
+ }
+ },
+ [8452]={
+ ["next_chapter"]=8453,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5716,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1715,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=41313,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4173,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=41313,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=4276,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=845,
+ ["unit"]=0
+ }
+ },
+ [8453]={
+ ["next_chapter"]=8454,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5731,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1719,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=41726,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4214,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=41726,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=4276,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=845,
+ ["unit"]=0
+ }
+ },
+ [8454]={
+ ["next_chapter"]=8455,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5746,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1724,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=42143,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4256,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=42143,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=4276,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=845,
+ ["unit"]=0
+ }
+ },
+ [8455]={
+ ["next_chapter"]=8456,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5761,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1728,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=42565,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4299,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=42565,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=4276,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=845,
+ ["unit"]=0
+ }
+ },
+ [8456]={
+ ["next_chapter"]=8457,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5776,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1733,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=42990,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4342,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=42990,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=4276,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=845,
+ ["unit"]=0
+ }
+ },
+ [8457]={
+ ["next_chapter"]=8458,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5791,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1737,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=43420,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4385,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=43420,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=4276,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=845,
+ ["unit"]=0
+ }
+ },
+ [8458]={
+ ["next_chapter"]=8459,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5806,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1742,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=43854,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4429,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=43854,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=4276,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=845,
+ ["unit"]=0
+ }
+ },
+ [8459]={
+ ["next_chapter"]=8460,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5821,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1746,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=44293,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4474,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=44293,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=4276,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=845,
+ ["unit"]=0
+ }
+ },
+ [8460]={
+ ["next_chapter"]=8461,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=5836,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1751,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=44736,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4518,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=44736,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=4723,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=846,
+ ["unit"]=0
+ }
+ },
+ [8461]={
+ ["next_chapter"]=8462,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5851,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1755,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=45183,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4564,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=45183,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=4723,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=846,
+ ["unit"]=0
+ }
+ },
+ [8462]={
+ ["next_chapter"]=8463,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5867,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1760,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=45635,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4609,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=45635,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=4723,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=846,
+ ["unit"]=0
+ }
+ },
+ [8463]={
+ ["next_chapter"]=8464,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5882,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1765,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=46091,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4655,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=46091,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=4723,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=846,
+ ["unit"]=0
+ }
+ },
+ [8464]={
+ ["next_chapter"]=8465,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5898,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1769,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=46552,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4702,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=46552,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=4723,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=846,
+ ["unit"]=0
+ }
+ },
+ [8465]={
+ ["next_chapter"]=8466,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5913,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1774,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=47018,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4749,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=47018,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=4723,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=846,
+ ["unit"]=0
+ }
+ },
+ [8466]={
+ ["next_chapter"]=8467,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5929,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1779,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=47488,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4796,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=47488,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=4723,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=846,
+ ["unit"]=0
+ }
+ },
+ [8467]={
+ ["next_chapter"]=8468,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5944,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1783,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=47963,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4844,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=47963,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=4723,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=846,
+ ["unit"]=0
+ }
+ },
+ [8468]={
+ ["next_chapter"]=8469,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5960,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1788,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=48443,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4893,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=48443,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=4723,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=846,
+ ["unit"]=0
+ }
+ },
+ [8469]={
+ ["next_chapter"]=8470,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5976,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1793,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=48927,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4942,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=48927,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=4723,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=846,
+ ["unit"]=0
+ }
+ },
+ [8470]={
+ ["next_chapter"]=8471,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=5992,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1798,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=49416,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4991,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=49416,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=5217,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=847,
+ ["unit"]=0
+ }
+ },
+ [8471]={
+ ["next_chapter"]=8472,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6008,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1802,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=49910,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5041,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=49910,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=5217,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=847,
+ ["unit"]=0
+ }
+ },
+ [8472]={
+ ["next_chapter"]=8473,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6024,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1807,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=50410,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5091,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=50410,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=5217,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=847,
+ ["unit"]=0
+ }
+ },
+ [8473]={
+ ["next_chapter"]=8474,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6040,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1812,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=50914,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5142,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=50914,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=5217,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=847,
+ ["unit"]=0
+ }
+ },
+ [8474]={
+ ["next_chapter"]=8475,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6056,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1817,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=51423,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5194,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=51423,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=5217,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=847,
+ ["unit"]=0
+ }
+ },
+ [8475]={
+ ["next_chapter"]=8476,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6072,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1822,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=51937,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5246,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=51937,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=5217,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=847,
+ ["unit"]=0
+ }
+ },
+ [8476]={
+ ["next_chapter"]=8477,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6088,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1827,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=52456,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5298,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=52456,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=5217,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=847,
+ ["unit"]=0
+ }
+ },
+ [8477]={
+ ["next_chapter"]=8478,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6105,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1831,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=52981,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5351,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=52981,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=5217,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=847,
+ ["unit"]=0
+ }
+ },
+ [8478]={
+ ["next_chapter"]=8479,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6121,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1836,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=53511,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5405,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=53511,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=5217,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=847,
+ ["unit"]=0
+ }
+ },
+ [8479]={
+ ["next_chapter"]=8480,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6138,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1841,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=54046,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5459,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=54046,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=5217,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=847,
+ ["unit"]=0
+ }
+ },
+ [8480]={
+ ["next_chapter"]=8481,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=6154,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1846,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=54586,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5513,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=54586,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=5763,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=848,
+ ["unit"]=0
+ }
+ },
+ [8481]={
+ ["next_chapter"]=8482,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6171,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1851,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=55132,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5568,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=55132,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=5763,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=848,
+ ["unit"]=0
+ }
+ },
+ [8482]={
+ ["next_chapter"]=8483,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6188,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1856,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=55684,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5624,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=55684,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=5763,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=848,
+ ["unit"]=0
+ }
+ },
+ [8483]={
+ ["next_chapter"]=8484,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6204,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1861,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=56240,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5680,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=56240,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=5763,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=848,
+ ["unit"]=0
+ }
+ },
+ [8484]={
+ ["next_chapter"]=8485,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6221,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1866,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=56803,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5737,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=56803,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=5763,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=848,
+ ["unit"]=0
+ }
+ },
+ [8485]={
+ ["next_chapter"]=8486,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6238,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1871,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=57371,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5794,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=57371,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=5763,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=848,
+ ["unit"]=0
+ }
+ },
+ [8486]={
+ ["next_chapter"]=8487,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6255,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1876,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=57945,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5852,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=57945,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=5763,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=848,
+ ["unit"]=0
+ }
+ },
+ [8487]={
+ ["next_chapter"]=8488,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6272,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1882,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=58524,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5911,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=58524,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=5763,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=848,
+ ["unit"]=0
+ }
+ },
+ [8488]={
+ ["next_chapter"]=8489,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6289,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1887,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=59109,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5970,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=59109,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=5763,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=848,
+ ["unit"]=0
+ }
+ },
+ [8489]={
+ ["next_chapter"]=8490,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6306,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1892,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=59700,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6030,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=59700,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=5763,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=848,
+ ["unit"]=0
+ }
+ },
+ [8490]={
+ ["next_chapter"]=8491,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=6324,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1897,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=60297,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6090,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=60297,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=6366,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=849,
+ ["unit"]=0
+ }
+ },
+ [8491]={
+ ["next_chapter"]=8492,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6341,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1902,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=60900,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6151,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=60900,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=6366,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=849,
+ ["unit"]=0
+ }
+ },
+ [8492]={
+ ["next_chapter"]=8493,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6358,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1907,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=61509,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6212,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=61509,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=6366,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=849,
+ ["unit"]=0
+ }
+ },
+ [8493]={
+ ["next_chapter"]=8494,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6376,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1913,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=62124,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6275,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=62124,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=6366,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=849,
+ ["unit"]=0
+ }
+ },
+ [8494]={
+ ["next_chapter"]=8495,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6393,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1918,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=62746,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6337,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=62746,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=6366,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=849,
+ ["unit"]=0
+ }
+ },
+ [8495]={
+ ["next_chapter"]=8496,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6411,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1923,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=63373,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6401,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=63373,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=6366,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=849,
+ ["unit"]=0
+ }
+ },
+ [8496]={
+ ["next_chapter"]=8497,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6429,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1929,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=64007,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6465,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=64007,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=6366,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=849,
+ ["unit"]=0
+ }
+ },
+ [8497]={
+ ["next_chapter"]=8498,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6446,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1934,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=64647,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6529,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=64647,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=6366,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=849,
+ ["unit"]=0
+ }
+ },
+ [8498]={
+ ["next_chapter"]=8499,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6464,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1939,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=65293,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6595,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=65293,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=6366,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=849,
+ ["unit"]=0
+ }
+ },
+ [8499]={
+ ["next_chapter"]=8500,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6482,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=1945,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=65946,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6661,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=65946,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=6366,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=849,
+ ["unit"]=0
+ }
+ },
+ [8500]={
+ ["next_chapter"]=8501,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=6500,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2015,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=66606,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6727,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=66606,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=7032,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=850,
+ ["unit"]=0
+ }
+ },
+ [8501]={
+ ["next_chapter"]=8502,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6500,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2015,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=67272,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6794,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=67272,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=7032,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=850,
+ ["unit"]=0
+ }
+ },
+ [8502]={
+ ["next_chapter"]=8503,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6500,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2015,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=67944,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6862,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=67944,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=7032,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=850,
+ ["unit"]=0
+ }
+ },
+ [8503]={
+ ["next_chapter"]=8504,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6500,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2015,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=68624,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6931,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=68624,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=7032,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=850,
+ ["unit"]=0
+ }
+ },
+ [8504]={
+ ["next_chapter"]=8505,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6500,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2015,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=69310,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7000,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=69310,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=7032,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=850,
+ ["unit"]=0
+ }
+ },
+ [8505]={
+ ["next_chapter"]=8506,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6500,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2015,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=70003,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7070,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=70003,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=7032,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=850,
+ ["unit"]=0
+ }
+ },
+ [8506]={
+ ["next_chapter"]=8507,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6500,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2015,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=70703,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7141,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=70703,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=7032,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=850,
+ ["unit"]=0
+ }
+ },
+ [8507]={
+ ["next_chapter"]=8508,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6500,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2015,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=71410,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7212,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=71410,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=7032,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=850,
+ ["unit"]=0
+ }
+ },
+ [8508]={
+ ["next_chapter"]=8509,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6500,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2015,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=72124,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7285,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=72124,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=7032,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=850,
+ ["unit"]=0
+ }
+ },
+ [8509]={
+ ["next_chapter"]=8510,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6500,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2015,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=72846,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7357,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=72846,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=7032,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=850,
+ ["unit"]=0
+ }
+ },
+ [8510]={
+ ["next_chapter"]=8511,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=6500,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2015,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=73574,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7431,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=73574,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=7768,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=851,
+ ["unit"]=0
+ }
+ },
+ [8511]={
+ ["next_chapter"]=8512,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6500,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2015,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=74310,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7505,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=74310,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=7768,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=851,
+ ["unit"]=0
+ }
+ },
+ [8512]={
+ ["next_chapter"]=8513,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6500,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2015,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=75053,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7580,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=75053,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=7768,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=851,
+ ["unit"]=0
+ }
+ },
+ [8513]={
+ ["next_chapter"]=8514,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6500,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2015,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=75804,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7656,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=75804,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=7768,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=851,
+ ["unit"]=0
+ }
+ },
+ [8514]={
+ ["next_chapter"]=8515,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6500,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2015,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=76562,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7733,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=76562,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=7768,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=851,
+ ["unit"]=0
+ }
+ },
+ [8515]={
+ ["next_chapter"]=8516,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6500,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2015,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=77327,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7810,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=77327,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=7768,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=851,
+ ["unit"]=0
+ }
+ },
+ [8516]={
+ ["next_chapter"]=8517,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6500,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2015,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=78100,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7888,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=78100,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=7768,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=851,
+ ["unit"]=0
+ }
+ },
+ [8517]={
+ ["next_chapter"]=8518,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6500,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2015,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=78881,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7967,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=78881,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=7768,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=851,
+ ["unit"]=0
+ }
+ },
+ [8518]={
+ ["next_chapter"]=8519,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6500,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2015,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=79670,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8047,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=79670,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=7768,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=851,
+ ["unit"]=0
+ }
+ },
+ [8519]={
+ ["next_chapter"]=8520,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6500,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2015,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=80467,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8127,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=80467,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=7768,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=851,
+ ["unit"]=0
+ }
+ },
+ [8520]={
+ ["next_chapter"]=8521,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=6500,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2015,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=81272,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8208,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=81272,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=8581,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=852,
+ ["unit"]=0
+ }
+ },
+ [8521]={
+ ["next_chapter"]=8522,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6500,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2015,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=82084,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8291,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=82084,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=8581,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=852,
+ ["unit"]=0
+ }
+ },
+ [8522]={
+ ["next_chapter"]=8523,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6500,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2015,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=82905,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8373,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=82905,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=8581,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=852,
+ ["unit"]=0
+ }
+ },
+ [8523]={
+ ["next_chapter"]=8524,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6501,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2015,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=83734,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8457,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=83734,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=8581,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=852,
+ ["unit"]=0
+ }
+ },
+ [8524]={
+ ["next_chapter"]=8525,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6501,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2015,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=84572,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8542,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=84572,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=8581,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=852,
+ ["unit"]=0
+ }
+ },
+ [8525]={
+ ["next_chapter"]=8526,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6501,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2015,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=85417,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8627,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=85417,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=8581,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=852,
+ ["unit"]=0
+ }
+ },
+ [8526]={
+ ["next_chapter"]=8527,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6501,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2015,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=86271,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8713,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=86271,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=8581,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=852,
+ ["unit"]=0
+ }
+ },
+ [8527]={
+ ["next_chapter"]=8528,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6501,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2015,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=87134,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8801,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=87134,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=8581,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=852,
+ ["unit"]=0
+ }
+ },
+ [8528]={
+ ["next_chapter"]=8529,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6501,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2015,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=88006,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8889,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=88006,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=8581,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=852,
+ ["unit"]=0
+ }
+ },
+ [8529]={
+ ["next_chapter"]=8530,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6501,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2015,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=88886,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8977,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=88886,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=8581,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=852,
+ ["unit"]=0
+ }
+ },
+ [8530]={
+ ["next_chapter"]=8531,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=6501,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2015,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=89774,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9067,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=89774,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=9479,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=853,
+ ["unit"]=0
+ }
+ },
+ [8531]={
+ ["next_chapter"]=8532,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6501,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2015,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=90672,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9158,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=90672,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=9479,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=853,
+ ["unit"]=0
+ }
+ },
+ [8532]={
+ ["next_chapter"]=8533,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6501,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2015,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=91579,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9249,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=91579,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=9479,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=853,
+ ["unit"]=0
+ }
+ },
+ [8533]={
+ ["next_chapter"]=8534,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6502,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2015,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=92495,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9342,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=92495,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=9479,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=853,
+ ["unit"]=0
+ }
+ },
+ [8534]={
+ ["next_chapter"]=8535,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6502,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2016,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=93420,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9435,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=93420,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=9479,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=853,
+ ["unit"]=0
+ }
+ },
+ [8535]={
+ ["next_chapter"]=8536,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6502,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2016,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=94354,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9530,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=94354,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=9479,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=853,
+ ["unit"]=0
+ }
+ },
+ [8536]={
+ ["next_chapter"]=8537,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6502,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2016,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=95297,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9625,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=95297,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=9479,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=853,
+ ["unit"]=0
+ }
+ },
+ [8537]={
+ ["next_chapter"]=8538,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6502,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2016,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=96250,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9721,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=96250,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=9479,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=853,
+ ["unit"]=0
+ }
+ },
+ [8538]={
+ ["next_chapter"]=8539,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6502,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2016,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=97213,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9818,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=97213,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=9479,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=853,
+ ["unit"]=0
+ }
+ },
+ [8539]={
+ ["next_chapter"]=8540,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6503,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2016,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=98185,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9917,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=98185,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=9479,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=853,
+ ["unit"]=0
+ }
+ },
+ [8540]={
+ ["next_chapter"]=8541,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=6503,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2016,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=99167,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10016,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=99167,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=10470,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=854,
+ ["unit"]=0
+ }
+ },
+ [8541]={
+ ["next_chapter"]=8542,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6503,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2016,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=100159,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10116,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=100159,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=10470,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=854,
+ ["unit"]=0
+ }
+ },
+ [8542]={
+ ["next_chapter"]=8543,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6503,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2016,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=101160,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10217,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=101160,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=10470,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=854,
+ ["unit"]=0
+ }
+ },
+ [8543]={
+ ["next_chapter"]=8544,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6503,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2016,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=102172,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10319,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=102172,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=10470,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=854,
+ ["unit"]=0
+ }
+ },
+ [8544]={
+ ["next_chapter"]=8545,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6504,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2016,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=103193,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10423,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=103193,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=10470,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=854,
+ ["unit"]=0
+ }
+ },
+ [8545]={
+ ["next_chapter"]=8546,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6504,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2016,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=104225,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10527,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=104225,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=10470,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=854,
+ ["unit"]=0
+ }
+ },
+ [8546]={
+ ["next_chapter"]=8547,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6504,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2016,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=105268,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10632,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=105268,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=10470,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=854,
+ ["unit"]=0
+ }
+ },
+ [8547]={
+ ["next_chapter"]=8548,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6505,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2016,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=106320,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10738,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=106320,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=10470,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=854,
+ ["unit"]=0
+ }
+ },
+ [8548]={
+ ["next_chapter"]=8549,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6505,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2017,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=107383,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10846,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=107383,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=10470,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=854,
+ ["unit"]=0
+ }
+ },
+ [8549]={
+ ["next_chapter"]=8550,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6505,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2017,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=108457,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10954,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=108457,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=10470,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=854,
+ ["unit"]=0
+ }
+ },
+ [8550]={
+ ["next_chapter"]=8551,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=6506,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2017,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=109542,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11064,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=109542,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=11566,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=855,
+ ["unit"]=0
+ }
+ },
+ [8551]={
+ ["next_chapter"]=8552,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6506,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2017,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=110637,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11174,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=110637,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=11566,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=855,
+ ["unit"]=0
+ }
+ },
+ [8552]={
+ ["next_chapter"]=8553,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6506,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2017,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=111744,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11286,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=111744,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=11566,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=855,
+ ["unit"]=0
+ }
+ },
+ [8553]={
+ ["next_chapter"]=8554,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6507,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2017,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=112861,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11399,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=112861,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=11566,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=855,
+ ["unit"]=0
+ }
+ },
+ [8554]={
+ ["next_chapter"]=8555,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6507,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2017,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=113990,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11513,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=113990,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=11566,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=855,
+ ["unit"]=0
+ }
+ },
+ [8555]={
+ ["next_chapter"]=8556,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6507,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2017,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=115130,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11628,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=115130,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=11566,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=855,
+ ["unit"]=0
+ }
+ },
+ [8556]={
+ ["next_chapter"]=8557,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6508,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2017,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=116281,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11744,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=116281,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=11566,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=855,
+ ["unit"]=0
+ }
+ },
+ [8557]={
+ ["next_chapter"]=8558,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6508,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2018,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=117444,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11862,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=117444,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=11566,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=855,
+ ["unit"]=0
+ }
+ },
+ [8558]={
+ ["next_chapter"]=8559,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6509,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2018,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=118618,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11980,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=118618,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=11566,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=855,
+ ["unit"]=0
+ }
+ },
+ [8559]={
+ ["next_chapter"]=8560,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6509,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2018,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=119804,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12100,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=119804,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=11566,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=855,
+ ["unit"]=0
+ }
+ },
+ [8560]={
+ ["next_chapter"]=8561,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=6510,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2018,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=121002,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12221,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=121002,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=12776,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=856,
+ ["unit"]=0
+ }
+ },
+ [8561]={
+ ["next_chapter"]=8562,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6510,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2018,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=122212,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12343,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=122212,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=12776,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=856,
+ ["unit"]=0
+ }
+ },
+ [8562]={
+ ["next_chapter"]=8563,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6510,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2018,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=123435,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12467,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=123435,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=12776,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=856,
+ ["unit"]=0
+ }
+ },
+ [8563]={
+ ["next_chapter"]=8564,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6511,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2018,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=124669,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12592,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=124669,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=12776,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=856,
+ ["unit"]=0
+ }
+ },
+ [8564]={
+ ["next_chapter"]=8565,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6512,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2019,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=125916,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12717,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=125916,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=12776,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=856,
+ ["unit"]=0
+ }
+ },
+ [8565]={
+ ["next_chapter"]=8566,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6512,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2019,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=127175,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12845,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=127175,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=12776,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=856,
+ ["unit"]=0
+ }
+ },
+ [8566]={
+ ["next_chapter"]=8567,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6513,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2019,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=128446,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12973,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=128446,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=12776,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=856,
+ ["unit"]=0
+ }
+ },
+ [8567]={
+ ["next_chapter"]=8568,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6513,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2019,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=129731,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13103,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=129731,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=12776,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=856,
+ ["unit"]=0
+ }
+ },
+ [8568]={
+ ["next_chapter"]=8569,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6514,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2019,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=131028,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13234,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=131028,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=12776,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=856,
+ ["unit"]=0
+ }
+ },
+ [8569]={
+ ["next_chapter"]=8570,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6514,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2019,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=132339,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13366,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=132339,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=12776,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=856,
+ ["unit"]=0
+ }
+ },
+ [8570]={
+ ["next_chapter"]=8571,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=6515,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2020,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=133662,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13500,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=133662,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=14112,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=857,
+ ["unit"]=0
+ }
+ },
+ [8571]={
+ ["next_chapter"]=8572,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6516,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2020,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=134999,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13635,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=134999,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=14112,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=857,
+ ["unit"]=0
+ }
+ },
+ [8572]={
+ ["next_chapter"]=8573,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6516,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2020,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=136349,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13771,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=136349,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=14112,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=857,
+ ["unit"]=0
+ }
+ },
+ [8573]={
+ ["next_chapter"]=8574,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6517,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2020,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=137712,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13909,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=137712,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=14112,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=857,
+ ["unit"]=0
+ }
+ },
+ [8574]={
+ ["next_chapter"]=8575,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6518,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2021,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=139089,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14048,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=139089,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=14112,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=857,
+ ["unit"]=0
+ }
+ },
+ [8575]={
+ ["next_chapter"]=8576,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6519,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2021,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=140480,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14188,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=140480,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=14112,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=857,
+ ["unit"]=0
+ }
+ },
+ [8576]={
+ ["next_chapter"]=8577,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6519,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2021,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=141885,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14330,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=141885,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=14112,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=857,
+ ["unit"]=0
+ }
+ },
+ [8577]={
+ ["next_chapter"]=8578,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6520,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2021,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=143304,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14474,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=143304,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=14112,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=857,
+ ["unit"]=0
+ }
+ },
+ [8578]={
+ ["next_chapter"]=8579,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6521,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2021,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=144737,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14618,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=144737,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=14112,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=857,
+ ["unit"]=0
+ }
+ },
+ [8579]={
+ ["next_chapter"]=8580,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6522,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2022,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=146184,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14765,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=146184,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=14112,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=857,
+ ["unit"]=0
+ }
+ },
+ [8580]={
+ ["next_chapter"]=8581,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=6523,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2022,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=147646,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14912,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=147646,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=15589,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=858,
+ ["unit"]=0
+ }
+ },
+ [8581]={
+ ["next_chapter"]=8582,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6523,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2022,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=149122,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15061,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=149122,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=15589,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=858,
+ ["unit"]=0
+ }
+ },
+ [8582]={
+ ["next_chapter"]=8583,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6524,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2023,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=150614,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15212,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=150614,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=15589,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=858,
+ ["unit"]=0
+ }
+ },
+ [8583]={
+ ["next_chapter"]=8584,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6525,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2023,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=152120,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15364,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=152120,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=15589,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=858,
+ ["unit"]=0
+ }
+ },
+ [8584]={
+ ["next_chapter"]=8585,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6526,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2023,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=153641,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15518,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=153641,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=15589,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=858,
+ ["unit"]=0
+ }
+ },
+ [8585]={
+ ["next_chapter"]=8586,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6527,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2023,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=155177,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15673,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=155177,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=15589,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=858,
+ ["unit"]=0
+ }
+ },
+ [8586]={
+ ["next_chapter"]=8587,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6528,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2024,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=156729,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15830,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=156729,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=15589,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=858,
+ ["unit"]=0
+ }
+ },
+ [8587]={
+ ["next_chapter"]=8588,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6529,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2024,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=158296,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15988,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=158296,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=15589,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=858,
+ ["unit"]=0
+ }
+ },
+ [8588]={
+ ["next_chapter"]=8589,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6530,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2024,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=159879,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16148,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=159879,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=15589,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=858,
+ ["unit"]=0
+ }
+ },
+ [8589]={
+ ["next_chapter"]=8590,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6531,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2025,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=161478,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16309,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=161478,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=15589,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=858,
+ ["unit"]=0
+ }
+ },
+ [8590]={
+ ["next_chapter"]=8591,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=6532,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2025,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=163093,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16472,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=163093,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=17220,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=859,
+ ["unit"]=0
+ }
+ },
+ [8591]={
+ ["next_chapter"]=8592,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6533,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2025,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=164724,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16637,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=164724,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=17220,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=859,
+ ["unit"]=0
+ }
+ },
+ [8592]={
+ ["next_chapter"]=8593,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6534,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2026,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=166371,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16803,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=166371,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=17220,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=859,
+ ["unit"]=0
+ }
+ },
+ [8593]={
+ ["next_chapter"]=8594,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6535,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2026,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=168035,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16972,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=168035,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=17220,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=859,
+ ["unit"]=0
+ }
+ },
+ [8594]={
+ ["next_chapter"]=8595,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6537,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2026,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=169715,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17141,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=169715,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=17220,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=859,
+ ["unit"]=0
+ }
+ },
+ [8595]={
+ ["next_chapter"]=8596,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6538,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2027,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=171412,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17313,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=171412,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=17220,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=859,
+ ["unit"]=0
+ }
+ },
+ [8596]={
+ ["next_chapter"]=8597,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6539,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2027,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=173126,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17486,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=173126,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=17220,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=859,
+ ["unit"]=0
+ }
+ },
+ [8597]={
+ ["next_chapter"]=8598,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6540,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2027,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=174858,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17661,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=174858,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=17220,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=859,
+ ["unit"]=0
+ }
+ },
+ [8598]={
+ ["next_chapter"]=8599,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6541,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2028,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=176606,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17837,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=176606,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=17220,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=859,
+ ["unit"]=0
+ }
+ },
+ [8599]={
+ ["next_chapter"]=8600,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6543,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2028,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=178372,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18016,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=178372,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=17220,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=859,
+ ["unit"]=0
+ }
+ },
+ [8600]={
+ ["next_chapter"]=8601,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=6544,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2029,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=180156,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18196,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=180156,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=19021,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=860,
+ ["unit"]=0
+ }
+ },
+ [8601]={
+ ["next_chapter"]=8602,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6545,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2029,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=181958,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18378,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=181958,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=19021,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=860,
+ ["unit"]=0
+ }
+ },
+ [8602]={
+ ["next_chapter"]=8603,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6547,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2029,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=183777,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18561,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=183777,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=19021,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=860,
+ ["unit"]=0
+ }
+ },
+ [8603]={
+ ["next_chapter"]=8604,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6548,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2030,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=185615,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18747,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=185615,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=19021,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=860,
+ ["unit"]=0
+ }
+ },
+ [8604]={
+ ["next_chapter"]=8605,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6549,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2030,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=187471,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18935,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=187471,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=19021,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=860,
+ ["unit"]=0
+ }
+ },
+ [8605]={
+ ["next_chapter"]=8606,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6551,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2031,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=189346,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19124,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=189346,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=19021,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=860,
+ ["unit"]=0
+ }
+ },
+ [8606]={
+ ["next_chapter"]=8607,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6552,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2031,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=191239,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19315,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=191239,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=19021,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=860,
+ ["unit"]=0
+ }
+ },
+ [8607]={
+ ["next_chapter"]=8608,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6554,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2032,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=193152,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19508,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=193152,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=19021,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=860,
+ ["unit"]=0
+ }
+ },
+ [8608]={
+ ["next_chapter"]=8609,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6555,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2032,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=195083,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19703,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=195083,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=19021,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=860,
+ ["unit"]=0
+ }
+ },
+ [8609]={
+ ["next_chapter"]=8610,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6557,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2033,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=197034,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19900,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=197034,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=19021,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=860,
+ ["unit"]=0
+ }
+ },
+ [8610]={
+ ["next_chapter"]=8611,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=6559,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2033,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=199004,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20099,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=199004,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=21011,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=861,
+ ["unit"]=0
+ }
+ },
+ [8611]={
+ ["next_chapter"]=8612,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6560,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2034,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=200994,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20300,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=200994,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=21011,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=861,
+ ["unit"]=0
+ }
+ },
+ [8612]={
+ ["next_chapter"]=8613,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6562,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2034,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=203004,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20503,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=203004,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=21011,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=861,
+ ["unit"]=0
+ }
+ },
+ [8613]={
+ ["next_chapter"]=8614,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6563,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2035,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=205034,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20708,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=205034,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=21011,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=861,
+ ["unit"]=0
+ }
+ },
+ [8614]={
+ ["next_chapter"]=8615,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6565,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2035,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=207085,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20916,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=207085,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=21011,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=861,
+ ["unit"]=0
+ }
+ },
+ [8615]={
+ ["next_chapter"]=8616,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6567,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2036,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=209156,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21125,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=209156,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=21011,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=861,
+ ["unit"]=0
+ }
+ },
+ [8616]={
+ ["next_chapter"]=8617,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6569,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2036,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=211247,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21336,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=211247,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=21011,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=861,
+ ["unit"]=0
+ }
+ },
+ [8617]={
+ ["next_chapter"]=8618,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6570,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2037,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=213360,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21549,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=213360,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=21011,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=861,
+ ["unit"]=0
+ }
+ },
+ [8618]={
+ ["next_chapter"]=8619,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6572,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2037,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=215493,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21765,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=215493,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=21011,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=861,
+ ["unit"]=0
+ }
+ },
+ [8619]={
+ ["next_chapter"]=8620,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6574,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2038,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=217648,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21982,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=217648,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=21011,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=861,
+ ["unit"]=0
+ }
+ },
+ [8620]={
+ ["next_chapter"]=8621,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=6576,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2039,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=219825,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22202,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=219825,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=23210,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=862,
+ ["unit"]=0
+ }
+ },
+ [8621]={
+ ["next_chapter"]=8622,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6578,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2039,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=222023,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22424,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=222023,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=23210,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=862,
+ ["unit"]=0
+ }
+ },
+ [8622]={
+ ["next_chapter"]=8623,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6580,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2040,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=224243,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22649,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=224243,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=23210,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=862,
+ ["unit"]=0
+ }
+ },
+ [8623]={
+ ["next_chapter"]=8624,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6582,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2040,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=226486,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22875,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=226486,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=23210,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=862,
+ ["unit"]=0
+ }
+ },
+ [8624]={
+ ["next_chapter"]=8625,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6584,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2041,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=228750,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23104,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=228750,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=23210,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=862,
+ ["unit"]=0
+ }
+ },
+ [8625]={
+ ["next_chapter"]=8626,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6586,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2042,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=231038,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23335,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=231038,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=23210,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=862,
+ ["unit"]=0
+ }
+ },
+ [8626]={
+ ["next_chapter"]=8627,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6588,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2042,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=233348,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23568,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=233348,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=23210,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=862,
+ ["unit"]=0
+ }
+ },
+ [8627]={
+ ["next_chapter"]=8628,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6590,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2043,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=235682,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23804,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=235682,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=23210,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=862,
+ ["unit"]=0
+ }
+ },
+ [8628]={
+ ["next_chapter"]=8629,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6592,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2044,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=238039,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24042,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=238039,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=23210,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=862,
+ ["unit"]=0
+ }
+ },
+ [8629]={
+ ["next_chapter"]=8630,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6594,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2044,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=240419,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24282,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=240419,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=23210,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=862,
+ ["unit"]=0
+ }
+ },
+ [8630]={
+ ["next_chapter"]=8631,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=6597,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2045,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=242823,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24525,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=242823,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=25638,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=863,
+ ["unit"]=0
+ }
+ },
+ [8631]={
+ ["next_chapter"]=8632,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6599,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2046,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=245251,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24770,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=245251,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=25638,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=863,
+ ["unit"]=0
+ }
+ },
+ [8632]={
+ ["next_chapter"]=8633,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6601,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2046,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=247704,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25018,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=247704,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=25638,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=863,
+ ["unit"]=0
+ }
+ },
+ [8633]={
+ ["next_chapter"]=8634,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6604,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2047,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=250181,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25268,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=250181,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=25638,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=863,
+ ["unit"]=0
+ }
+ },
+ [8634]={
+ ["next_chapter"]=8635,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6606,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2048,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=252683,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25521,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=252683,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=25638,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=863,
+ ["unit"]=0
+ }
+ },
+ [8635]={
+ ["next_chapter"]=8636,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6608,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2049,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=255210,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25776,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=255210,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=25638,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=863,
+ ["unit"]=0
+ }
+ },
+ [8636]={
+ ["next_chapter"]=8637,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6611,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2049,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=257762,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26034,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=257762,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=25638,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=863,
+ ["unit"]=0
+ }
+ },
+ [8637]={
+ ["next_chapter"]=8638,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6613,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2050,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=260339,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26294,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=260339,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=25638,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=863,
+ ["unit"]=0
+ }
+ },
+ [8638]={
+ ["next_chapter"]=8639,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6616,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2051,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=262943,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26557,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=262943,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=25638,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=863,
+ ["unit"]=0
+ }
+ },
+ [8639]={
+ ["next_chapter"]=8640,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6618,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2052,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=265572,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26823,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=265572,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=25638,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=863,
+ ["unit"]=0
+ }
+ },
+ [8640]={
+ ["next_chapter"]=8641,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=6621,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2052,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=268228,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27091,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=268228,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=28320,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=864,
+ ["unit"]=0
+ }
+ },
+ [8641]={
+ ["next_chapter"]=8642,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6623,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2053,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=270910,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27362,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=270910,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=28320,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=864,
+ ["unit"]=0
+ }
+ },
+ [8642]={
+ ["next_chapter"]=8643,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6626,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2054,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=273619,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27636,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=273619,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=28320,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=864,
+ ["unit"]=0
+ }
+ },
+ [8643]={
+ ["next_chapter"]=8644,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6629,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2055,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=276355,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27912,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=276355,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=28320,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=864,
+ ["unit"]=0
+ }
+ },
+ [8644]={
+ ["next_chapter"]=8645,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6631,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2056,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=279119,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28191,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=279119,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=28320,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=864,
+ ["unit"]=0
+ }
+ },
+ [8645]={
+ ["next_chapter"]=8646,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6634,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2057,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=281910,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28473,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=281910,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=28320,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=864,
+ ["unit"]=0
+ }
+ },
+ [8646]={
+ ["next_chapter"]=8647,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6637,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2057,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=284729,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28758,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=284729,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=28320,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=864,
+ ["unit"]=0
+ }
+ },
+ [8647]={
+ ["next_chapter"]=8648,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6640,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2058,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=287577,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29045,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=287577,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=28320,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=864,
+ ["unit"]=0
+ }
+ },
+ [8648]={
+ ["next_chapter"]=8649,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6643,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2059,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=290452,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29336,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=290452,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=28320,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=864,
+ ["unit"]=0
+ }
+ },
+ [8649]={
+ ["next_chapter"]=8650,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6646,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2060,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=293357,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29629,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=293357,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=28320,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=864,
+ ["unit"]=0
+ }
+ },
+ [8650]={
+ ["next_chapter"]=8651,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=6649,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2061,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=296290,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29925,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=296290,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=31283,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=865,
+ ["unit"]=0
+ }
+ },
+ [8651]={
+ ["next_chapter"]=8652,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6651,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2062,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=299253,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30225,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=299253,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=31283,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=865,
+ ["unit"]=0
+ }
+ },
+ [8652]={
+ ["next_chapter"]=8653,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6655,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2063,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=302246,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30527,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=302246,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=31283,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=865,
+ ["unit"]=0
+ }
+ },
+ [8653]={
+ ["next_chapter"]=8654,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6658,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2064,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=305268,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30832,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=305268,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=31283,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=865,
+ ["unit"]=0
+ }
+ },
+ [8654]={
+ ["next_chapter"]=8655,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6661,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2065,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=308321,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31140,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=308321,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=31283,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=865,
+ ["unit"]=0
+ }
+ },
+ [8655]={
+ ["next_chapter"]=8656,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6664,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2066,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=311404,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31452,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=311404,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=31283,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=865,
+ ["unit"]=0
+ }
+ },
+ [8656]={
+ ["next_chapter"]=8657,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6667,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2067,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=314518,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31766,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=314518,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=31283,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=865,
+ ["unit"]=0
+ }
+ },
+ [8657]={
+ ["next_chapter"]=8658,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6670,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2068,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=317663,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32084,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=317663,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=31283,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=865,
+ ["unit"]=0
+ }
+ },
+ [8658]={
+ ["next_chapter"]=8659,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6674,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2069,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=320840,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32405,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=320840,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=31283,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=865,
+ ["unit"]=0
+ }
+ },
+ [8659]={
+ ["next_chapter"]=8660,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6677,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2070,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=324048,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32729,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=324048,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=31283,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=865,
+ ["unit"]=0
+ }
+ },
+ [8660]={
+ ["next_chapter"]=8661,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=6680,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2071,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=327289,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33056,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=327289,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=34556,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=866,
+ ["unit"]=0
+ }
+ },
+ [8661]={
+ ["next_chapter"]=8662,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6684,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2072,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=330562,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33387,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=330562,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=34556,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=866,
+ ["unit"]=0
+ }
+ },
+ [8662]={
+ ["next_chapter"]=8663,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6687,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2073,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=333867,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33721,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=333867,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=34556,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=866,
+ ["unit"]=0
+ }
+ },
+ [8663]={
+ ["next_chapter"]=8664,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6691,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2074,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=337206,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34058,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=337206,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=34556,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=866,
+ ["unit"]=0
+ }
+ },
+ [8664]={
+ ["next_chapter"]=8665,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6694,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2075,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=340578,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34398,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=340578,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=34556,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=866,
+ ["unit"]=0
+ }
+ },
+ [8665]={
+ ["next_chapter"]=8666,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6698,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2076,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=343984,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34742,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=343984,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=34556,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=866,
+ ["unit"]=0
+ }
+ },
+ [8666]={
+ ["next_chapter"]=8667,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6701,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2077,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=347424,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35090,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=347424,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=34556,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=866,
+ ["unit"]=0
+ }
+ },
+ [8667]={
+ ["next_chapter"]=8668,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6705,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2079,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=350898,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35441,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=350898,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=34556,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=866,
+ ["unit"]=0
+ }
+ },
+ [8668]={
+ ["next_chapter"]=8669,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6709,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2080,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=354407,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35795,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=354407,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=34556,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=866,
+ ["unit"]=0
+ }
+ },
+ [8669]={
+ ["next_chapter"]=8670,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6712,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2081,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=357951,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36153,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=357951,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=34556,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=866,
+ ["unit"]=0
+ }
+ },
+ [8670]={
+ ["next_chapter"]=8671,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=6716,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2082,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=361531,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36515,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=361531,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=38171,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=867,
+ ["unit"]=0
+ }
+ },
+ [8671]={
+ ["next_chapter"]=8672,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6720,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2083,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=365146,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36880,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=365146,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=38171,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=867,
+ ["unit"]=0
+ }
+ },
+ [8672]={
+ ["next_chapter"]=8673,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6724,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2084,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=368797,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37249,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=368797,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=38171,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=867,
+ ["unit"]=0
+ }
+ },
+ [8673]={
+ ["next_chapter"]=8674,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6728,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2086,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=372485,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37621,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=372485,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=38171,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=867,
+ ["unit"]=0
+ }
+ },
+ [8674]={
+ ["next_chapter"]=8675,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6732,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2087,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=376210,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37997,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=376210,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=38171,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=867,
+ ["unit"]=0
+ }
+ },
+ [8675]={
+ ["next_chapter"]=8676,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6736,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2088,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=379972,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=38377,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=379972,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=38171,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=867,
+ ["unit"]=0
+ }
+ },
+ [8676]={
+ ["next_chapter"]=8677,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6740,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2089,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=383772,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=38761,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=383772,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=38171,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=867,
+ ["unit"]=0
+ }
+ },
+ [8677]={
+ ["next_chapter"]=8678,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6744,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2091,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=387610,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39149,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=387610,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=38171,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=867,
+ ["unit"]=0
+ }
+ },
+ [8678]={
+ ["next_chapter"]=8679,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6748,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2092,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=391486,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39540,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=391486,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=38171,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=867,
+ ["unit"]=0
+ }
+ },
+ [8679]={
+ ["next_chapter"]=8680,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6752,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2093,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=395401,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39935,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=395401,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=38171,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=867,
+ ["unit"]=0
+ }
+ },
+ [8680]={
+ ["next_chapter"]=8681,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=6757,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2095,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=399355,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=40335,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=399355,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=42165,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=868,
+ ["unit"]=0
+ }
+ },
+ [8681]={
+ ["next_chapter"]=8682,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6761,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2096,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=403348,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=40738,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=403348,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=42165,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=868,
+ ["unit"]=0
+ }
+ },
+ [8682]={
+ ["next_chapter"]=8683,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6765,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2097,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=407382,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41146,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=407382,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=42165,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=868,
+ ["unit"]=0
+ }
+ },
+ [8683]={
+ ["next_chapter"]=8684,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6770,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2099,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=411456,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41557,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=411456,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=42165,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=868,
+ ["unit"]=0
+ }
+ },
+ [8684]={
+ ["next_chapter"]=8685,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6774,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2100,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=415570,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41973,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=415570,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=42165,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=868,
+ ["unit"]=0
+ }
+ },
+ [8685]={
+ ["next_chapter"]=8686,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6779,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2101,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=419726,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=42392,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=419726,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=42165,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=868,
+ ["unit"]=0
+ }
+ },
+ [8686]={
+ ["next_chapter"]=8687,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6783,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2103,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=423923,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=42816,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=423923,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=42165,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=868,
+ ["unit"]=0
+ }
+ },
+ [8687]={
+ ["next_chapter"]=8688,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6788,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2104,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=428162,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=43244,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=428162,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=42165,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=868,
+ ["unit"]=0
+ }
+ },
+ [8688]={
+ ["next_chapter"]=8689,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6792,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2106,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=432444,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=43677,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=432444,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=42165,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=868,
+ ["unit"]=0
+ }
+ },
+ [8689]={
+ ["next_chapter"]=8690,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6797,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2107,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=436768,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=44114,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=436768,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=42165,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=868,
+ ["unit"]=0
+ }
+ },
+ [8690]={
+ ["next_chapter"]=8691,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=6802,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2109,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=441136,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=44555,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=441136,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=46576,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=869,
+ ["unit"]=0
+ }
+ },
+ [8691]={
+ ["next_chapter"]=8692,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6807,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2110,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=445547,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=45000,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=445547,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=46576,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=869,
+ ["unit"]=0
+ }
+ },
+ [8692]={
+ ["next_chapter"]=8693,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6811,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2112,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=450003,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=45450,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=450003,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=46576,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=869,
+ ["unit"]=0
+ }
+ },
+ [8693]={
+ ["next_chapter"]=8694,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6816,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2113,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=454503,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=45905,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=454503,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=46576,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=869,
+ ["unit"]=0
+ }
+ },
+ [8694]={
+ ["next_chapter"]=8695,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6821,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2115,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=459048,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=46364,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=459048,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=46576,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=869,
+ ["unit"]=0
+ }
+ },
+ [8695]={
+ ["next_chapter"]=8696,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6826,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2116,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=463638,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=46827,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=463638,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=46576,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=869,
+ ["unit"]=0
+ }
+ },
+ [8696]={
+ ["next_chapter"]=8697,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6831,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2118,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=468275,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=47296,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=468275,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=46576,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=869,
+ ["unit"]=0
+ }
+ },
+ [8697]={
+ ["next_chapter"]=8698,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6836,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2119,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=472958,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=47769,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=472958,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=46576,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=869,
+ ["unit"]=0
+ }
+ },
+ [8698]={
+ ["next_chapter"]=8699,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6842,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2121,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=477687,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=48246,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=477687,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=46576,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=869,
+ ["unit"]=0
+ }
+ },
+ [8699]={
+ ["next_chapter"]=8700,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6847,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2122,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=482464,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=48729,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=482464,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=46576,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=869,
+ ["unit"]=0
+ }
+ },
+ [8700]={
+ ["next_chapter"]=8701,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=6852,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2124,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=487289,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=49216,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=487289,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=51449,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=870,
+ ["unit"]=0
+ }
+ },
+ [8701]={
+ ["next_chapter"]=8702,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6857,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2126,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=492162,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=49708,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=492162,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=51449,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=870,
+ ["unit"]=0
+ }
+ },
+ [8702]={
+ ["next_chapter"]=8703,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6863,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2127,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=497083,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=50205,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=497083,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=51449,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=870,
+ ["unit"]=0
+ }
+ },
+ [8703]={
+ ["next_chapter"]=8704,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6868,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2129,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=502054,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=50707,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=502054,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=51449,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=870,
+ ["unit"]=0
+ }
+ },
+ [8704]={
+ ["next_chapter"]=8705,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6874,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2131,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=507075,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=51215,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=507075,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=51449,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=870,
+ ["unit"]=0
+ }
+ },
+ [8705]={
+ ["next_chapter"]=8706,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6879,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2133,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=512145,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=51727,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=512145,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=51449,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=870,
+ ["unit"]=0
+ }
+ },
+ [8706]={
+ ["next_chapter"]=8707,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6885,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2134,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=517267,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=52244,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=517267,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=51449,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=870,
+ ["unit"]=0
+ }
+ },
+ [8707]={
+ ["next_chapter"]=8708,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6890,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2136,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=522439,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=52766,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=522439,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=51449,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=870,
+ ["unit"]=0
+ }
+ },
+ [8708]={
+ ["next_chapter"]=8709,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6896,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2138,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=527664,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=53294,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=527664,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=51449,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=870,
+ ["unit"]=0
+ }
+ },
+ [8709]={
+ ["next_chapter"]=8710,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6902,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2140,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=532940,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=53827,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=532940,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=51449,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=870,
+ ["unit"]=0
+ }
+ },
+ [8710]={
+ ["next_chapter"]=8711,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=6907,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2141,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=538270,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=54365,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=538270,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=56832,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=871,
+ ["unit"]=0
+ }
+ },
+ [8711]={
+ ["next_chapter"]=8712,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6913,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2143,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=543653,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=54909,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=543653,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=56832,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=871,
+ ["unit"]=0
+ }
+ },
+ [8712]={
+ ["next_chapter"]=8713,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6919,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2145,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=549089,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=55458,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=549089,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=56832,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=871,
+ ["unit"]=0
+ }
+ },
+ [8713]={
+ ["next_chapter"]=8714,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6925,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2147,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=554580,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=56013,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=554580,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=56832,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=871,
+ ["unit"]=0
+ }
+ },
+ [8714]={
+ ["next_chapter"]=8715,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6931,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2149,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=560126,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=56573,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=560126,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=56832,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=871,
+ ["unit"]=0
+ }
+ },
+ [8715]={
+ ["next_chapter"]=8716,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6937,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2151,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=565727,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=57138,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=565727,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=56832,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=871,
+ ["unit"]=0
+ }
+ },
+ [8716]={
+ ["next_chapter"]=8717,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6943,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2152,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=571384,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=57710,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=571384,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=56832,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=871,
+ ["unit"]=0
+ }
+ },
+ [8717]={
+ ["next_chapter"]=8718,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6950,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2154,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=577098,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=58287,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=577098,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=56832,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=871,
+ ["unit"]=0
+ }
+ },
+ [8718]={
+ ["next_chapter"]=8719,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6956,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2156,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=582869,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=58870,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=582869,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=56832,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=871,
+ ["unit"]=0
+ }
+ },
+ [8719]={
+ ["next_chapter"]=8720,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6962,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2158,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=588698,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=59458,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=588698,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=56832,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=871,
+ ["unit"]=0
+ }
+ },
+ [8720]={
+ ["next_chapter"]=8721,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=6969,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2160,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=594585,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=60053,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=594585,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=62777,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=872,
+ ["unit"]=0
+ }
+ },
+ [8721]={
+ ["next_chapter"]=8722,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6975,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2162,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=600531,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=60654,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=600531,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=62777,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=872,
+ ["unit"]=0
+ }
+ },
+ [8722]={
+ ["next_chapter"]=8723,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6981,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2164,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=606536,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=61260,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=606536,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=62777,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=872,
+ ["unit"]=0
+ }
+ },
+ [8723]={
+ ["next_chapter"]=8724,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6988,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2166,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=612601,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=61873,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=612601,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=62777,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=872,
+ ["unit"]=0
+ }
+ },
+ [8724]={
+ ["next_chapter"]=8725,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6995,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2168,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=618727,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=62491,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=618727,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=62777,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=872,
+ ["unit"]=0
+ }
+ },
+ [8725]={
+ ["next_chapter"]=8726,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7001,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2170,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=624915,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=63116,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=624915,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=62777,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=872,
+ ["unit"]=0
+ }
+ },
+ [8726]={
+ ["next_chapter"]=8727,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7008,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2172,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=631164,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=63748,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=631164,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=62777,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=872,
+ ["unit"]=0
+ }
+ },
+ [8727]={
+ ["next_chapter"]=8728,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7015,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2175,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=637475,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=64385,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=637475,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=62777,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=872,
+ ["unit"]=0
+ }
+ },
+ [8728]={
+ ["next_chapter"]=8729,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7022,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2177,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=643850,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=65029,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=643850,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=62777,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=872,
+ ["unit"]=0
+ }
+ },
+ [8729]={
+ ["next_chapter"]=8730,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7028,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2179,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=650289,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=65679,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=650289,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=62777,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=872,
+ ["unit"]=0
+ }
+ },
+ [8730]={
+ ["next_chapter"]=8731,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=7035,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2181,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=656791,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=66336,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=656791,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=69345,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=873,
+ ["unit"]=0
+ }
+ },
+ [8731]={
+ ["next_chapter"]=8732,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7042,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2183,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=663359,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=66999,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=663359,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=69345,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=873,
+ ["unit"]=0
+ }
+ },
+ [8732]={
+ ["next_chapter"]=8733,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7049,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2185,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=669993,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=67669,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=669993,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=69345,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=873,
+ ["unit"]=0
+ }
+ },
+ [8733]={
+ ["next_chapter"]=8734,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7057,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2188,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=676693,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=68346,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=676693,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=69345,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=873,
+ ["unit"]=0
+ }
+ },
+ [8734]={
+ ["next_chapter"]=8735,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7064,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2190,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=683460,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=69029,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=683460,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=69345,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=873,
+ ["unit"]=0
+ }
+ },
+ [8735]={
+ ["next_chapter"]=8736,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7071,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2192,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=690294,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=69720,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=690294,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=69345,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=873,
+ ["unit"]=0
+ }
+ },
+ [8736]={
+ ["next_chapter"]=8737,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7078,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2194,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=697197,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=70417,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=697197,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=69345,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=873,
+ ["unit"]=0
+ }
+ },
+ [8737]={
+ ["next_chapter"]=8738,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7086,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2197,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=704169,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=71121,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=704169,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=69345,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=873,
+ ["unit"]=0
+ }
+ },
+ [8738]={
+ ["next_chapter"]=8739,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7093,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2199,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=711211,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=71832,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=711211,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=69345,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=873,
+ ["unit"]=0
+ }
+ },
+ [8739]={
+ ["next_chapter"]=8740,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7101,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2201,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=718323,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=72551,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=718323,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=69345,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=873,
+ ["unit"]=0
+ }
+ },
+ [8740]={
+ ["next_chapter"]=8741,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=7108,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2204,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=725506,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=73276,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=725506,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=76600,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=874,
+ ["unit"]=0
+ }
+ },
+ [8741]={
+ ["next_chapter"]=8742,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7116,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2206,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=732761,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=74009,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=732761,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=76600,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=874,
+ ["unit"]=0
+ }
+ },
+ [8742]={
+ ["next_chapter"]=8743,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7124,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2208,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=740089,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=74749,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=740089,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=76600,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=874,
+ ["unit"]=0
+ }
+ },
+ [8743]={
+ ["next_chapter"]=8744,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7131,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2211,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=747490,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=75496,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=747490,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=76600,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=874,
+ ["unit"]=0
+ }
+ },
+ [8744]={
+ ["next_chapter"]=8745,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7139,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2213,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=754965,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=76251,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=754965,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=76600,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=874,
+ ["unit"]=0
+ }
+ },
+ [8745]={
+ ["next_chapter"]=8746,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7147,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2216,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=762515,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=77014,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=762515,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=76600,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=874,
+ ["unit"]=0
+ }
+ },
+ [8746]={
+ ["next_chapter"]=8747,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7155,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2218,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=770140,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=77784,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=770140,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=76600,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=874,
+ ["unit"]=0
+ }
+ },
+ [8747]={
+ ["next_chapter"]=8748,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7163,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2221,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=777841,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=78562,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=777841,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=76600,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=874,
+ ["unit"]=0
+ }
+ },
+ [8748]={
+ ["next_chapter"]=8749,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7171,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2223,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=785619,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=79348,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=785619,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=76600,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=874,
+ ["unit"]=0
+ }
+ },
+ [8749]={
+ ["next_chapter"]=8750,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7179,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2226,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=793476,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=80141,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=793476,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=76600,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=874,
+ ["unit"]=0
+ }
+ },
+ [8750]={
+ ["next_chapter"]=8751,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=7188,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2228,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=801410,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=80942,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=801410,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=84615,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=875,
+ ["unit"]=0
+ }
+ },
+ [8751]={
+ ["next_chapter"]=8752,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7196,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2231,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=809425,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=81752,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=809425,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=84615,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=875,
+ ["unit"]=0
+ }
+ },
+ [8752]={
+ ["next_chapter"]=8753,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7204,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2233,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=817519,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=82569,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=817519,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=84615,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=875,
+ ["unit"]=0
+ }
+ },
+ [8753]={
+ ["next_chapter"]=8754,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7213,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2236,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=825694,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=83395,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=825694,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=84615,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=875,
+ ["unit"]=0
+ }
+ },
+ [8754]={
+ ["next_chapter"]=8755,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7221,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2239,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=833951,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=84229,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=833951,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=84615,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=875,
+ ["unit"]=0
+ }
+ },
+ [8755]={
+ ["next_chapter"]=8756,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7230,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2241,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=842290,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=85071,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=842290,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=84615,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=875,
+ ["unit"]=0
+ }
+ },
+ [8756]={
+ ["next_chapter"]=8757,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7238,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2244,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=850713,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=85922,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=850713,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=84615,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=875,
+ ["unit"]=0
+ }
+ },
+ [8757]={
+ ["next_chapter"]=8758,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7247,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2247,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=859220,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=86781,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=859220,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=84615,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=875,
+ ["unit"]=0
+ }
+ },
+ [8758]={
+ ["next_chapter"]=8759,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7256,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2249,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=867813,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=87649,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=867813,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=84615,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=875,
+ ["unit"]=0
+ }
+ },
+ [8759]={
+ ["next_chapter"]=8760,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7264,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2252,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=876491,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=88526,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=876491,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=84615,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=875,
+ ["unit"]=0
+ }
+ },
+ [8760]={
+ ["next_chapter"]=8761,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=7273,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2255,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=885256,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=89411,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=885256,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=93467,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=876,
+ ["unit"]=0
+ }
+ },
+ [8761]={
+ ["next_chapter"]=8762,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7282,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2258,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=894108,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=90305,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=894108,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=93467,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=876,
+ ["unit"]=0
+ }
+ },
+ [8762]={
+ ["next_chapter"]=8763,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7291,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2260,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=903049,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=91208,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=903049,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=93467,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=876,
+ ["unit"]=0
+ }
+ },
+ [8763]={
+ ["next_chapter"]=8764,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7300,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2263,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=912080,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=92120,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=912080,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=93467,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=876,
+ ["unit"]=0
+ }
+ },
+ [8764]={
+ ["next_chapter"]=8765,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7310,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2266,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=921201,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=93041,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=921201,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=93467,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=876,
+ ["unit"]=0
+ }
+ },
+ [8765]={
+ ["next_chapter"]=8766,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7319,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2269,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=930413,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=93972,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=930413,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=93467,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=876,
+ ["unit"]=0
+ }
+ },
+ [8766]={
+ ["next_chapter"]=8767,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7328,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2272,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=939717,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=94911,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=939717,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=93467,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=876,
+ ["unit"]=0
+ }
+ },
+ [8767]={
+ ["next_chapter"]=8768,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7338,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2275,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=949114,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=95861,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=949114,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=93467,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=876,
+ ["unit"]=0
+ }
+ },
+ [8768]={
+ ["next_chapter"]=8769,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7347,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2278,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=958605,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=96819,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=958605,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=93467,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=876,
+ ["unit"]=0
+ }
+ },
+ [8769]={
+ ["next_chapter"]=8770,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7356,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2281,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=968191,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=97787,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=968191,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=93467,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=876,
+ ["unit"]=0
+ }
+ },
+ [8770]={
+ ["next_chapter"]=8771,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=7366,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2283,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=977873,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=98765,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=977873,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=103246,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=877,
+ ["unit"]=0
+ }
+ },
+ [8771]={
+ ["next_chapter"]=8772,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7376,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2286,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=987652,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=99753,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=987652,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=103246,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=877,
+ ["unit"]=0
+ }
+ },
+ [8772]={
+ ["next_chapter"]=8773,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7385,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2289,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=997528,
+ ["unit"]=11
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=100750,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=997528,
+ ["unit"]=11
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=103246,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=877,
+ ["unit"]=0
+ }
+ },
+ [8773]={
+ ["next_chapter"]=8774,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7395,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2293,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1008,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=101758,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1008,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=103246,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=877,
+ ["unit"]=0
+ }
+ },
+ [8774]={
+ ["next_chapter"]=8775,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7405,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2296,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1018,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=102775,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1018,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=103246,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=877,
+ ["unit"]=0
+ }
+ },
+ [8775]={
+ ["next_chapter"]=8776,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7415,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2299,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1028,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=103803,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1028,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=103246,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=877,
+ ["unit"]=0
+ }
+ },
+ [8776]={
+ ["next_chapter"]=8777,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7425,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2302,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1038,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=104841,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1038,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=103246,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=877,
+ ["unit"]=0
+ }
+ },
+ [8777]={
+ ["next_chapter"]=8778,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7435,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2305,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1048,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=105890,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1048,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=103246,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=877,
+ ["unit"]=0
+ }
+ },
+ [8778]={
+ ["next_chapter"]=8779,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7445,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2308,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1059,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=106949,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1059,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=103246,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=877,
+ ["unit"]=0
+ }
+ },
+ [8779]={
+ ["next_chapter"]=8780,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7456,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2311,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1069,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=108018,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1069,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=103246,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=877,
+ ["unit"]=0
+ }
+ },
+ [8780]={
+ ["next_chapter"]=8781,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=7466,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2314,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1080,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=109098,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1080,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=114048,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=878,
+ ["unit"]=0
+ }
+ },
+ [8781]={
+ ["next_chapter"]=8782,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7476,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2318,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1091,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=110189,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1091,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=114048,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=878,
+ ["unit"]=0
+ }
+ },
+ [8782]={
+ ["next_chapter"]=8783,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7487,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2321,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1102,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=111291,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1102,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=114048,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=878,
+ ["unit"]=0
+ }
+ },
+ [8783]={
+ ["next_chapter"]=8784,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7497,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2324,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1113,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=112404,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1113,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=114048,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=878,
+ ["unit"]=0
+ }
+ },
+ [8784]={
+ ["next_chapter"]=8785,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7508,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2327,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1124,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=113528,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1124,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=114048,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=878,
+ ["unit"]=0
+ }
+ },
+ [8785]={
+ ["next_chapter"]=8786,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7519,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2331,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1135,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=114663,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1135,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=114048,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=878,
+ ["unit"]=0
+ }
+ },
+ [8786]={
+ ["next_chapter"]=8787,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7529,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2334,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1147,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=115810,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1147,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=114048,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=878,
+ ["unit"]=0
+ }
+ },
+ [8787]={
+ ["next_chapter"]=8788,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7540,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2337,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1158,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=116968,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1158,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=114048,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=878,
+ ["unit"]=0
+ }
+ },
+ [8788]={
+ ["next_chapter"]=8789,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7551,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2341,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1170,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=118138,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1170,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=114048,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=878,
+ ["unit"]=0
+ }
+ },
+ [8789]={
+ ["next_chapter"]=8790,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7562,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2344,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1181,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=119319,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1181,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=114048,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=878,
+ ["unit"]=0
+ }
+ },
+ [8790]={
+ ["next_chapter"]=8791,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=7573,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2348,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1193,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=120512,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1193,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=125980,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=879,
+ ["unit"]=0
+ }
+ },
+ [8791]={
+ ["next_chapter"]=8792,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7584,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2351,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1205,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=121717,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1205,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=125980,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=879,
+ ["unit"]=0
+ }
+ },
+ [8792]={
+ ["next_chapter"]=8793,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7595,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2355,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1217,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=122935,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1217,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=125980,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=879,
+ ["unit"]=0
+ }
+ },
+ [8793]={
+ ["next_chapter"]=8794,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7607,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2358,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1229,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=124164,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1229,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=125980,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=879,
+ ["unit"]=0
+ }
+ },
+ [8794]={
+ ["next_chapter"]=8795,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7618,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2362,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1242,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=125406,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1242,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=125980,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=879,
+ ["unit"]=0
+ }
+ },
+ [8795]={
+ ["next_chapter"]=8796,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7630,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2365,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1254,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=126660,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1254,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=125980,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=879,
+ ["unit"]=0
+ }
+ },
+ [8796]={
+ ["next_chapter"]=8797,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7641,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2369,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1267,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=127926,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1267,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=125980,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=879,
+ ["unit"]=0
+ }
+ },
+ [8797]={
+ ["next_chapter"]=8798,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7653,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2372,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1279,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=129205,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1279,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=125980,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=879,
+ ["unit"]=0
+ }
+ },
+ [8798]={
+ ["next_chapter"]=8799,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7664,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2376,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1292,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=130498,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1292,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=125980,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=879,
+ ["unit"]=0
+ }
+ },
+ [8799]={
+ ["next_chapter"]=8800,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7676,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2380,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1305,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=131803,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1305,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=125980,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=879,
+ ["unit"]=0
+ }
+ },
+ [8800]={
+ ["next_chapter"]=8801,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=7688,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2383,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1318,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=133121,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1318,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=139160,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=880,
+ ["unit"]=0
+ }
+ },
+ [8801]={
+ ["next_chapter"]=8802,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7700,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2387,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1331,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=134452,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1331,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=139160,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=880,
+ ["unit"]=0
+ }
+ },
+ [8802]={
+ ["next_chapter"]=8803,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7712,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2391,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1345,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=135796,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1345,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=139160,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=880,
+ ["unit"]=0
+ }
+ },
+ [8803]={
+ ["next_chapter"]=8804,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7724,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2394,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1358,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=137154,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1358,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=139160,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=880,
+ ["unit"]=0
+ }
+ },
+ [8804]={
+ ["next_chapter"]=8805,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7736,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2398,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1372,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=138526,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1372,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=139160,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=880,
+ ["unit"]=0
+ }
+ },
+ [8805]={
+ ["next_chapter"]=8806,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7748,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2402,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1385,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=139911,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1385,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=139160,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=880,
+ ["unit"]=0
+ }
+ },
+ [8806]={
+ ["next_chapter"]=8807,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7761,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2406,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1399,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=141310,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1399,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=139160,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=880,
+ ["unit"]=0
+ }
+ },
+ [8807]={
+ ["next_chapter"]=8808,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7773,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2410,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1413,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=142723,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1413,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=139160,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=880,
+ ["unit"]=0
+ }
+ },
+ [8808]={
+ ["next_chapter"]=8809,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7786,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2414,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1427,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=144150,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1427,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=139160,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=880,
+ ["unit"]=0
+ }
+ },
+ [8809]={
+ ["next_chapter"]=8810,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7798,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2417,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1442,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=145592,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1442,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=139160,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=880,
+ ["unit"]=0
+ }
+ },
+ [8810]={
+ ["next_chapter"]=8811,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=7811,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2421,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1456,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=147048,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1456,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=153719,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=881,
+ ["unit"]=0
+ }
+ },
+ [8811]={
+ ["next_chapter"]=8812,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7824,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2425,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1470,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=148518,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1470,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=153719,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=881,
+ ["unit"]=0
+ }
+ },
+ [8812]={
+ ["next_chapter"]=8813,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7836,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2429,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1485,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=150004,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1485,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=153719,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=881,
+ ["unit"]=0
+ }
+ },
+ [8813]={
+ ["next_chapter"]=8814,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7849,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2433,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1500,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=151504,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1500,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=153719,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=881,
+ ["unit"]=0
+ }
+ },
+ [8814]={
+ ["next_chapter"]=8815,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7862,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2437,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1515,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=153019,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1515,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=153719,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=881,
+ ["unit"]=0
+ }
+ },
+ [8815]={
+ ["next_chapter"]=8816,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7875,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2441,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1530,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=154549,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1530,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=153719,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=881,
+ ["unit"]=0
+ }
+ },
+ [8816]={
+ ["next_chapter"]=8817,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7888,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2445,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1545,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=156094,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1545,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=153719,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=881,
+ ["unit"]=0
+ }
+ },
+ [8817]={
+ ["next_chapter"]=8818,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7902,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2450,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1561,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=157655,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1561,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=153719,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=881,
+ ["unit"]=0
+ }
+ },
+ [8818]={
+ ["next_chapter"]=8819,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7915,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2454,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1577,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=159232,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1577,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=153719,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=881,
+ ["unit"]=0
+ }
+ },
+ [8819]={
+ ["next_chapter"]=8820,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7928,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2458,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1592,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=160824,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1592,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=153719,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=881,
+ ["unit"]=0
+ }
+ },
+ [8820]={
+ ["next_chapter"]=8821,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=7942,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2462,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1608,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=162432,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1608,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=169801,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=882,
+ ["unit"]=0
+ }
+ },
+ [8821]={
+ ["next_chapter"]=8822,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7955,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2466,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1624,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=164057,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1624,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=169801,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=882,
+ ["unit"]=0
+ }
+ },
+ [8822]={
+ ["next_chapter"]=8823,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7969,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2470,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1641,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=165697,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1641,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=169801,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=882,
+ ["unit"]=0
+ }
+ },
+ [8823]={
+ ["next_chapter"]=8824,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7983,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2475,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1657,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=167354,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1657,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=169801,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=882,
+ ["unit"]=0
+ }
+ },
+ [8824]={
+ ["next_chapter"]=8825,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7997,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2479,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1674,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=169028,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1674,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=169801,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=882,
+ ["unit"]=0
+ }
+ },
+ [8825]={
+ ["next_chapter"]=8826,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8010,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2483,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1690,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=170718,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1690,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=169801,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=882,
+ ["unit"]=0
+ }
+ },
+ [8826]={
+ ["next_chapter"]=8827,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8024,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2488,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1707,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=172425,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1707,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=169801,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=882,
+ ["unit"]=0
+ }
+ },
+ [8827]={
+ ["next_chapter"]=8828,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8038,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2492,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1724,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=174149,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1724,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=169801,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=882,
+ ["unit"]=0
+ }
+ },
+ [8828]={
+ ["next_chapter"]=8829,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8053,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2496,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1741,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=175891,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1741,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=169801,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=882,
+ ["unit"]=0
+ }
+ },
+ [8829]={
+ ["next_chapter"]=8830,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8067,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2501,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1759,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=177650,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1759,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=169801,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=882,
+ ["unit"]=0
+ }
+ },
+ [8830]={
+ ["next_chapter"]=8831,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=8081,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2505,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1776,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=179426,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1776,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=187566,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=883,
+ ["unit"]=0
+ }
+ },
+ [8831]={
+ ["next_chapter"]=8832,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8096,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2510,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1794,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=181221,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1794,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=187566,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=883,
+ ["unit"]=0
+ }
+ },
+ [8832]={
+ ["next_chapter"]=8833,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8110,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2514,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1812,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=183033,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1812,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=187566,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=883,
+ ["unit"]=0
+ }
+ },
+ [8833]={
+ ["next_chapter"]=8834,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8125,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2519,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1830,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=184863,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1830,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=187566,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=883,
+ ["unit"]=0
+ }
+ },
+ [8834]={
+ ["next_chapter"]=8835,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8139,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2523,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1849,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=186712,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1849,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=187566,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=883,
+ ["unit"]=0
+ }
+ },
+ [8835]={
+ ["next_chapter"]=8836,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8154,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2528,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1867,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=188579,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1867,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=187566,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=883,
+ ["unit"]=0
+ }
+ },
+ [8836]={
+ ["next_chapter"]=8837,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8169,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2532,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1886,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=190465,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1886,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=187566,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=883,
+ ["unit"]=0
+ }
+ },
+ [8837]={
+ ["next_chapter"]=8838,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8184,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2537,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1905,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=192369,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1905,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=187566,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=883,
+ ["unit"]=0
+ }
+ },
+ [8838]={
+ ["next_chapter"]=8839,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8199,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2542,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1924,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=194293,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1924,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=187566,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=883,
+ ["unit"]=0
+ }
+ },
+ [8839]={
+ ["next_chapter"]=8840,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8214,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2546,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1943,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=196236,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1943,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=187566,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=883,
+ ["unit"]=0
+ }
+ },
+ [8840]={
+ ["next_chapter"]=8841,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=8229,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2551,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1962,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=198198,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1962,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=207190,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=884,
+ ["unit"]=0
+ }
+ },
+ [8841]={
+ ["next_chapter"]=8842,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8245,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2556,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1982,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=200180,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=1982,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=207190,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=884,
+ ["unit"]=0
+ }
+ },
+ [8842]={
+ ["next_chapter"]=8843,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8260,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2561,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2002,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=202182,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=2002,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=207190,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=884,
+ ["unit"]=0
+ }
+ },
+ [8843]={
+ ["next_chapter"]=8844,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8276,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2565,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2022,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=204204,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=2022,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=207190,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=884,
+ ["unit"]=0
+ }
+ },
+ [8844]={
+ ["next_chapter"]=8845,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8291,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2570,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2042,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=206246,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=2042,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=207190,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=884,
+ ["unit"]=0
+ }
+ },
+ [8845]={
+ ["next_chapter"]=8846,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8307,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2575,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2062,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=208308,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=2062,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=207190,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=884,
+ ["unit"]=0
+ }
+ },
+ [8846]={
+ ["next_chapter"]=8847,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8323,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2580,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2083,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=210392,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=2083,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=207190,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=884,
+ ["unit"]=0
+ }
+ },
+ [8847]={
+ ["next_chapter"]=8848,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8338,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2585,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2104,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=212495,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=2104,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=207190,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=884,
+ ["unit"]=0
+ }
+ },
+ [8848]={
+ ["next_chapter"]=8849,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8354,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2590,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2125,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=214620,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=2125,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=207190,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=884,
+ ["unit"]=0
+ }
+ },
+ [8849]={
+ ["next_chapter"]=8850,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8370,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2595,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2146,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=216767,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=2146,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=207190,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=884,
+ ["unit"]=0
+ }
+ },
+ [8850]={
+ ["next_chapter"]=8851,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=8387,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2600,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2168,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=218934,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=2168,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=228867,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=885,
+ ["unit"]=0
+ }
+ },
+ [8851]={
+ ["next_chapter"]=8852,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8403,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2605,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2189,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=221124,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=2189,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=228867,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=885,
+ ["unit"]=0
+ }
+ },
+ [8852]={
+ ["next_chapter"]=8853,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8419,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2610,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2211,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=223335,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=2211,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=228867,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=885,
+ ["unit"]=0
+ }
+ },
+ [8853]={
+ ["next_chapter"]=8854,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8435,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2615,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2233,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=225568,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=2233,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=228867,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=885,
+ ["unit"]=0
+ }
+ },
+ [8854]={
+ ["next_chapter"]=8855,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8452,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2620,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2256,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=227824,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=2256,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=228867,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=885,
+ ["unit"]=0
+ }
+ },
+ [8855]={
+ ["next_chapter"]=8856,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8469,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2625,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2278,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=230102,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=2278,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=228867,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=885,
+ ["unit"]=0
+ }
+ },
+ [8856]={
+ ["next_chapter"]=8857,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8485,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2630,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2301,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=232403,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=2301,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=228867,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=885,
+ ["unit"]=0
+ }
+ },
+ [8857]={
+ ["next_chapter"]=8858,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8502,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2636,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2324,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=234727,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=2324,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=228867,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=885,
+ ["unit"]=0
+ }
+ },
+ [8858]={
+ ["next_chapter"]=8859,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8519,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2641,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2347,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=237074,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=2347,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=228867,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=885,
+ ["unit"]=0
+ }
+ },
+ [8859]={
+ ["next_chapter"]=8860,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8536,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2646,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2371,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=239445,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=2371,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=228867,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=885,
+ ["unit"]=0
+ }
+ },
+ [8860]={
+ ["next_chapter"]=8861,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=8553,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2651,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2394,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=241840,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=2394,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=252811,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=886,
+ ["unit"]=0
+ }
+ },
+ [8861]={
+ ["next_chapter"]=8862,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8570,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2657,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2418,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=244258,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=2418,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=252811,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=886,
+ ["unit"]=0
+ }
+ },
+ [8862]={
+ ["next_chapter"]=8863,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8587,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2662,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2443,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=246701,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=2443,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=252811,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=886,
+ ["unit"]=0
+ }
+ },
+ [8863]={
+ ["next_chapter"]=8864,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8605,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2667,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2467,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=249168,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=2467,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=252811,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=886,
+ ["unit"]=0
+ }
+ },
+ [8864]={
+ ["next_chapter"]=8865,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8622,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2673,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2492,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=251659,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=2492,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=252811,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=886,
+ ["unit"]=0
+ }
+ },
+ [8865]={
+ ["next_chapter"]=8866,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8640,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2678,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2517,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=254176,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=2517,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=252811,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=886,
+ ["unit"]=0
+ }
+ },
+ [8866]={
+ ["next_chapter"]=8867,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8657,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2684,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2542,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=256718,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=2542,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=252811,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=886,
+ ["unit"]=0
+ }
+ },
+ [8867]={
+ ["next_chapter"]=8868,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8675,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2689,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2567,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=259285,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=2567,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=252811,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=886,
+ ["unit"]=0
+ }
+ },
+ [8868]={
+ ["next_chapter"]=8869,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8693,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2695,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2593,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=261878,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=2593,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=252811,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=886,
+ ["unit"]=0
+ }
+ },
+ [8869]={
+ ["next_chapter"]=8870,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8711,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2700,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2619,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=264496,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=2619,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=252811,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=886,
+ ["unit"]=0
+ }
+ },
+ [8870]={
+ ["next_chapter"]=8871,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=8729,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2706,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2645,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=267141,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=2645,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=279261,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=887,
+ ["unit"]=0
+ }
+ },
+ [8871]={
+ ["next_chapter"]=8872,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8747,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2712,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2671,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=269813,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=2671,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=279261,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=887,
+ ["unit"]=0
+ }
+ },
+ [8872]={
+ ["next_chapter"]=8873,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8765,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2717,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2698,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=272511,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=2698,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=279261,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=887,
+ ["unit"]=0
+ }
+ },
+ [8873]={
+ ["next_chapter"]=8874,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8783,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2723,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2725,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=275236,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=2725,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=279261,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=887,
+ ["unit"]=0
+ }
+ },
+ [8874]={
+ ["next_chapter"]=8875,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8802,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2729,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2752,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=277988,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=2752,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=279261,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=887,
+ ["unit"]=0
+ }
+ },
+ [8875]={
+ ["next_chapter"]=8876,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8820,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2734,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2780,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=280768,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=2780,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=279261,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=887,
+ ["unit"]=0
+ }
+ },
+ [8876]={
+ ["next_chapter"]=8877,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8839,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2740,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2808,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=283576,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=2808,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=279261,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=887,
+ ["unit"]=0
+ }
+ },
+ [8877]={
+ ["next_chapter"]=8878,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8858,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2746,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2836,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=286412,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=2836,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=279261,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=887,
+ ["unit"]=0
+ }
+ },
+ [8878]={
+ ["next_chapter"]=8879,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8876,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2752,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2864,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=289276,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=2864,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=279261,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=887,
+ ["unit"]=0
+ }
+ },
+ [8879]={
+ ["next_chapter"]=8880,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8895,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2758,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2893,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=292169,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=2893,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=279261,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=887,
+ ["unit"]=0
+ }
+ },
+ [8880]={
+ ["next_chapter"]=8881,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=8914,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2763,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2922,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=295090,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=2922,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=308478,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=888,
+ ["unit"]=0
+ }
+ },
+ [8881]={
+ ["next_chapter"]=8882,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8933,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2769,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2951,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=298041,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=2951,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=308478,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=888,
+ ["unit"]=0
+ }
+ },
+ [8882]={
+ ["next_chapter"]=8883,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8953,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2775,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2980,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=301022,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=2980,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=308478,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=888,
+ ["unit"]=0
+ }
+ },
+ [8883]={
+ ["next_chapter"]=8884,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8972,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2781,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3010,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=304032,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=3010,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=308478,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=888,
+ ["unit"]=0
+ }
+ },
+ [8884]={
+ ["next_chapter"]=8885,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8991,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2787,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3040,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=307072,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=3040,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=308478,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=888,
+ ["unit"]=0
+ }
+ },
+ [8885]={
+ ["next_chapter"]=8886,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9011,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2793,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3071,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=310143,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=3071,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=308478,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=888,
+ ["unit"]=0
+ }
+ },
+ [8886]={
+ ["next_chapter"]=8887,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9031,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2799,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3101,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=313244,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=3101,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=308478,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=888,
+ ["unit"]=0
+ }
+ },
+ [8887]={
+ ["next_chapter"]=8888,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9050,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2806,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3132,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=316377,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=3132,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=308478,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=888,
+ ["unit"]=0
+ }
+ },
+ [8888]={
+ ["next_chapter"]=8889,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9070,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2812,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3164,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=319541,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=3164,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=308478,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=888,
+ ["unit"]=0
+ }
+ },
+ [8889]={
+ ["next_chapter"]=8890,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9090,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2818,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3195,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=322736,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=3195,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=308478,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=888,
+ ["unit"]=0
+ }
+ },
+ [8890]={
+ ["next_chapter"]=8891,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=9110,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2824,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3227,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=325963,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=3227,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=340751,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=889,
+ ["unit"]=0
+ }
+ },
+ [8891]={
+ ["next_chapter"]=8892,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9130,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2830,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3260,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=329223,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=3260,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=340751,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=889,
+ ["unit"]=0
+ }
+ },
+ [8892]={
+ ["next_chapter"]=8893,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9150,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2837,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3292,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=332515,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=3292,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=340751,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=889,
+ ["unit"]=0
+ }
+ },
+ [8893]={
+ ["next_chapter"]=8894,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9171,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2843,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3325,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=335840,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=3325,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=340751,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=889,
+ ["unit"]=0
+ }
+ },
+ [8894]={
+ ["next_chapter"]=8895,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9191,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2849,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3358,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=339199,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=3358,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=340751,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=889,
+ ["unit"]=0
+ }
+ },
+ [8895]={
+ ["next_chapter"]=8896,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9212,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2856,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3392,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=342591,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=3392,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=340751,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=889,
+ ["unit"]=0
+ }
+ },
+ [8896]={
+ ["next_chapter"]=8897,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9232,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2862,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3426,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=346017,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=3426,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=340751,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=889,
+ ["unit"]=0
+ }
+ },
+ [8897]={
+ ["next_chapter"]=8898,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9253,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2868,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3460,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=349477,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=3460,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=340751,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=889,
+ ["unit"]=0
+ }
+ },
+ [8898]={
+ ["next_chapter"]=8899,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9274,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2875,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3495,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=352972,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=3495,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=340751,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=889,
+ ["unit"]=0
+ }
+ },
+ [8899]={
+ ["next_chapter"]=8900,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9295,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2881,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3530,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=356501,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=3530,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=340751,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=889,
+ ["unit"]=0
+ }
+ },
+ [8900]={
+ ["next_chapter"]=8901,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=9316,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2888,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3565,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=360066,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=3565,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=376401,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=890,
+ ["unit"]=0
+ }
+ },
+ [8901]={
+ ["next_chapter"]=8902,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9337,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2895,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3601,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=363667,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=3601,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=376401,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=890,
+ ["unit"]=0
+ }
+ },
+ [8902]={
+ ["next_chapter"]=8903,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9358,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2901,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3637,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=367304,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=3637,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=376401,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=890,
+ ["unit"]=0
+ }
+ },
+ [8903]={
+ ["next_chapter"]=8904,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9380,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2908,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3673,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=370977,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=3673,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=376401,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=890,
+ ["unit"]=0
+ }
+ },
+ [8904]={
+ ["next_chapter"]=8905,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9401,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2914,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3710,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=374686,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=3710,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=376401,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=890,
+ ["unit"]=0
+ }
+ },
+ [8905]={
+ ["next_chapter"]=8906,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9423,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2921,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3747,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=378433,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=3747,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=376401,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=890,
+ ["unit"]=0
+ }
+ },
+ [8906]={
+ ["next_chapter"]=8907,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9445,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2928,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3784,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=382218,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=3784,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=376401,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=890,
+ ["unit"]=0
+ }
+ },
+ [8907]={
+ ["next_chapter"]=8908,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9466,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2935,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3822,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=386040,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=3822,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=376401,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=890,
+ ["unit"]=0
+ }
+ },
+ [8908]={
+ ["next_chapter"]=8909,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9488,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2941,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3860,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=389900,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=3860,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=376401,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=890,
+ ["unit"]=0
+ }
+ },
+ [8909]={
+ ["next_chapter"]=8910,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9510,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2948,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3899,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=393799,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=3899,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=376401,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=890,
+ ["unit"]=0
+ }
+ },
+ [8910]={
+ ["next_chapter"]=8911,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=9533,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2955,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3938,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=397737,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=3938,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=415781,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=891,
+ ["unit"]=0
+ }
+ },
+ [8911]={
+ ["next_chapter"]=8912,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9555,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2962,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3977,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=401715,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=3977,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=415781,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=891,
+ ["unit"]=0
+ }
+ },
+ [8912]={
+ ["next_chapter"]=8913,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9577,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2969,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4017,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=405732,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=4017,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=415781,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=891,
+ ["unit"]=0
+ }
+ },
+ [8913]={
+ ["next_chapter"]=8914,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9600,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2976,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4057,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=409789,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=4057,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=415781,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=891,
+ ["unit"]=0
+ }
+ },
+ [8914]={
+ ["next_chapter"]=8915,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9622,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2983,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4098,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=413887,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=4098,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=415781,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=891,
+ ["unit"]=0
+ }
+ },
+ [8915]={
+ ["next_chapter"]=8916,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9645,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2990,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4139,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=418026,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=4139,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=415781,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=891,
+ ["unit"]=0
+ }
+ },
+ [8916]={
+ ["next_chapter"]=8917,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9668,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=2997,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4180,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=422206,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=4180,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=415781,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=891,
+ ["unit"]=0
+ }
+ },
+ [8917]={
+ ["next_chapter"]=8918,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9691,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3004,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4222,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=426428,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=4222,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=415781,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=891,
+ ["unit"]=0
+ }
+ },
+ [8918]={
+ ["next_chapter"]=8919,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9714,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3011,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4264,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=430692,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=4264,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=415781,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=891,
+ ["unit"]=0
+ }
+ },
+ [8919]={
+ ["next_chapter"]=8920,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9737,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3018,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4307,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=434999,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=4307,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=415781,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=891,
+ ["unit"]=0
+ }
+ },
+ [8920]={
+ ["next_chapter"]=8921,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=9760,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3026,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4350,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=439349,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=4350,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=459281,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=892,
+ ["unit"]=0
+ }
+ },
+ [8921]={
+ ["next_chapter"]=8922,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9783,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3033,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4393,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=443743,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=4393,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=459281,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=892,
+ ["unit"]=0
+ }
+ },
+ [8922]={
+ ["next_chapter"]=8923,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9807,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3040,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4437,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=448180,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=4437,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=459281,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=892,
+ ["unit"]=0
+ }
+ },
+ [8923]={
+ ["next_chapter"]=8924,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9830,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3047,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4482,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=452662,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=4482,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=459281,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=892,
+ ["unit"]=0
+ }
+ },
+ [8924]={
+ ["next_chapter"]=8925,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9854,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3055,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4527,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=457189,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=4527,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=459281,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=892,
+ ["unit"]=0
+ }
+ },
+ [8925]={
+ ["next_chapter"]=8926,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9878,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3062,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4572,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=461760,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=4572,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=459281,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=892,
+ ["unit"]=0
+ }
+ },
+ [8926]={
+ ["next_chapter"]=8927,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9902,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3069,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4618,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=466378,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=4618,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=459281,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=892,
+ ["unit"]=0
+ }
+ },
+ [8927]={
+ ["next_chapter"]=8928,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9926,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3077,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4664,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=471042,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=4664,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=459281,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=892,
+ ["unit"]=0
+ }
+ },
+ [8928]={
+ ["next_chapter"]=8929,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9950,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3084,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4710,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=475752,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=4710,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=459281,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=892,
+ ["unit"]=0
+ }
+ },
+ [8929]={
+ ["next_chapter"]=8930,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9974,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3092,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4758,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=480510,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=4758,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=459281,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=892,
+ ["unit"]=0
+ }
+ },
+ [8930]={
+ ["next_chapter"]=8931,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=9998,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3099,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4805,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=485315,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=4805,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=507332,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=893,
+ ["unit"]=0
+ }
+ },
+ [8931]={
+ ["next_chapter"]=8932,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10023,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3107,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4853,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=490168,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=4853,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=507332,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=893,
+ ["unit"]=0
+ }
+ },
+ [8932]={
+ ["next_chapter"]=8933,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10047,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3115,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4902,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=495070,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=4902,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=507332,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=893,
+ ["unit"]=0
+ }
+ },
+ [8933]={
+ ["next_chapter"]=8934,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10072,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3122,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4951,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=500020,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=4951,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=507332,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=893,
+ ["unit"]=0
+ }
+ },
+ [8934]={
+ ["next_chapter"]=8935,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10097,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3130,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=505021,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=5000,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=507332,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=893,
+ ["unit"]=0
+ }
+ },
+ [8935]={
+ ["next_chapter"]=8936,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10122,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3138,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5050,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=510071,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=5050,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=507332,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=893,
+ ["unit"]=0
+ }
+ },
+ [8936]={
+ ["next_chapter"]=8937,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10147,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3146,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5101,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=515172,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=5101,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=507332,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=893,
+ ["unit"]=0
+ }
+ },
+ [8937]={
+ ["next_chapter"]=8938,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10172,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3153,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5152,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=520323,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=5152,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=507332,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=893,
+ ["unit"]=0
+ }
+ },
+ [8938]={
+ ["next_chapter"]=8939,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10197,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3161,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5203,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=525527,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=5203,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=507332,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=893,
+ ["unit"]=0
+ }
+ },
+ [8939]={
+ ["next_chapter"]=8940,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10223,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3169,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5255,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=530782,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=5255,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=507332,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=893,
+ ["unit"]=0
+ }
+ },
+ [8940]={
+ ["next_chapter"]=8941,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=10248,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3177,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5308,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=536090,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=5308,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=560410,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=894,
+ ["unit"]=0
+ }
+ },
+ [8941]={
+ ["next_chapter"]=8942,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10274,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3185,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5361,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=541450,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=5361,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=560410,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=894,
+ ["unit"]=0
+ }
+ },
+ [8942]={
+ ["next_chapter"]=8943,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10299,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3193,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5415,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=546865,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=5415,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=560410,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=894,
+ ["unit"]=0
+ }
+ },
+ [8943]={
+ ["next_chapter"]=8944,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10325,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3201,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5469,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=552334,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=5469,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=560410,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=894,
+ ["unit"]=0
+ }
+ },
+ [8944]={
+ ["next_chapter"]=8945,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10351,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3209,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5523,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=557857,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=5523,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=560410,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=894,
+ ["unit"]=0
+ }
+ },
+ [8945]={
+ ["next_chapter"]=8946,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10377,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3217,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5579,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=563436,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=5579,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=560410,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=894,
+ ["unit"]=0
+ }
+ },
+ [8946]={
+ ["next_chapter"]=8947,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10404,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3225,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5634,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=569070,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=5634,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=560410,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=894,
+ ["unit"]=0
+ }
+ },
+ [8947]={
+ ["next_chapter"]=8948,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10430,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3233,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5691,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=574761,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=5691,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=560410,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=894,
+ ["unit"]=0
+ }
+ },
+ [8948]={
+ ["next_chapter"]=8949,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10456,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3241,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5748,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=580508,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=5748,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=560410,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=894,
+ ["unit"]=0
+ }
+ },
+ [8949]={
+ ["next_chapter"]=8950,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10483,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3250,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5805,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=586313,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=5805,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=560410,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=894,
+ ["unit"]=0
+ }
+ },
+ [8950]={
+ ["next_chapter"]=8951,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=10510,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3258,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5863,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=592176,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=5863,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=619042,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=895,
+ ["unit"]=0
+ }
+ },
+ [8951]={
+ ["next_chapter"]=8952,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10536,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3266,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5922,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=598098,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=5922,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=619042,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=895,
+ ["unit"]=0
+ }
+ },
+ [8952]={
+ ["next_chapter"]=8953,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10563,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3275,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5981,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=604079,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=5981,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=619042,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=895,
+ ["unit"]=0
+ }
+ },
+ [8953]={
+ ["next_chapter"]=8954,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10590,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3283,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6041,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=610120,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=6041,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=619042,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=895,
+ ["unit"]=0
+ }
+ },
+ [8954]={
+ ["next_chapter"]=8955,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10617,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3291,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6101,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=616221,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=6101,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=619042,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=895,
+ ["unit"]=0
+ }
+ },
+ [8955]={
+ ["next_chapter"]=8956,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10645,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3300,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6162,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=622383,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=6162,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=619042,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=895,
+ ["unit"]=0
+ }
+ },
+ [8956]={
+ ["next_chapter"]=8957,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10672,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3308,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6224,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=628607,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=6224,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=619042,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=895,
+ ["unit"]=0
+ }
+ },
+ [8957]={
+ ["next_chapter"]=8958,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10700,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3317,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6286,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=634893,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=6286,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=619042,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=895,
+ ["unit"]=0
+ }
+ },
+ [8958]={
+ ["next_chapter"]=8959,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10727,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3325,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6349,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=641242,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=6349,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=619042,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=895,
+ ["unit"]=0
+ }
+ },
+ [8959]={
+ ["next_chapter"]=8960,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10755,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3334,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6412,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=647655,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=6412,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=619042,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=895,
+ ["unit"]=0
+ }
+ },
+ [8960]={
+ ["next_chapter"]=8961,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=10783,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3343,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6477,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=654131,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=6477,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=683807,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=896,
+ ["unit"]=0
+ }
+ },
+ [8961]={
+ ["next_chapter"]=8962,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10811,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3351,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6541,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=660672,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=6541,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=683807,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=896,
+ ["unit"]=0
+ }
+ },
+ [8962]={
+ ["next_chapter"]=8963,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10839,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3360,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6607,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=667279,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=6607,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=683807,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=896,
+ ["unit"]=0
+ }
+ },
+ [8963]={
+ ["next_chapter"]=8964,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10867,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3369,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6673,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=673952,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=6673,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=683807,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=896,
+ ["unit"]=0
+ }
+ },
+ [8964]={
+ ["next_chapter"]=8965,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10895,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3378,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6740,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=680692,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=6740,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=683807,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=896,
+ ["unit"]=0
+ }
+ },
+ [8965]={
+ ["next_chapter"]=8966,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10924,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3386,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6807,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=687498,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=6807,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=683807,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=896,
+ ["unit"]=0
+ }
+ },
+ [8966]={
+ ["next_chapter"]=8967,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10953,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3395,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6875,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=694373,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=6875,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=683807,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=896,
+ ["unit"]=0
+ }
+ },
+ [8967]={
+ ["next_chapter"]=8968,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10981,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3404,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6944,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=701317,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=6944,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=683807,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=896,
+ ["unit"]=0
+ }
+ },
+ [8968]={
+ ["next_chapter"]=8969,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11010,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3413,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7013,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=708330,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=7013,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=683807,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=896,
+ ["unit"]=0
+ }
+ },
+ [8969]={
+ ["next_chapter"]=8970,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11039,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3422,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7083,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=715414,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=7083,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=683807,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=896,
+ ["unit"]=0
+ }
+ },
+ [8970]={
+ ["next_chapter"]=8971,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=11068,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3431,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7154,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=722568,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=7154,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=755349,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=897,
+ ["unit"]=0
+ }
+ },
+ [8971]={
+ ["next_chapter"]=8972,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11097,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3440,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7226,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=729793,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=7226,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=755349,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=897,
+ ["unit"]=0
+ }
+ },
+ [8972]={
+ ["next_chapter"]=8973,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11127,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3449,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7298,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=737091,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=7298,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=755349,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=897,
+ ["unit"]=0
+ }
+ },
+ [8973]={
+ ["next_chapter"]=8974,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11156,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3458,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7371,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=744462,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=7371,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=755349,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=897,
+ ["unit"]=0
+ }
+ },
+ [8974]={
+ ["next_chapter"]=8975,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11186,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3468,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7445,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=751907,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=7445,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=755349,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=897,
+ ["unit"]=0
+ }
+ },
+ [8975]={
+ ["next_chapter"]=8976,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11216,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3477,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7519,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=759426,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=7519,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=755349,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=897,
+ ["unit"]=0
+ }
+ },
+ [8976]={
+ ["next_chapter"]=8977,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11245,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3486,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7594,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=767020,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=7594,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=755349,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=897,
+ ["unit"]=0
+ }
+ },
+ [8977]={
+ ["next_chapter"]=8978,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11275,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3495,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7670,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=774690,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=7670,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=755349,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=897,
+ ["unit"]=0
+ }
+ },
+ [8978]={
+ ["next_chapter"]=8979,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11305,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3505,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7747,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=782437,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=7747,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=755349,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=897,
+ ["unit"]=0
+ }
+ },
+ [8979]={
+ ["next_chapter"]=8980,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11336,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3514,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7824,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=790262,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=7824,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=755349,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=897,
+ ["unit"]=0
+ }
+ },
+ [8980]={
+ ["next_chapter"]=8981,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=11366,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3523,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7903,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=798164,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=7903,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=834375,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=898,
+ ["unit"]=0
+ }
+ },
+ [8981]={
+ ["next_chapter"]=8982,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11397,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3533,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7982,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=806146,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=7982,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=834375,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=898,
+ ["unit"]=0
+ }
+ },
+ [8982]={
+ ["next_chapter"]=8983,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11427,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3542,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8061,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=814207,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=8061,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=834375,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=898,
+ ["unit"]=0
+ }
+ },
+ [8983]={
+ ["next_chapter"]=8984,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11458,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3552,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8142,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=822350,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=8142,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=834375,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=898,
+ ["unit"]=0
+ }
+ },
+ [8984]={
+ ["next_chapter"]=8985,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11489,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3562,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8223,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=830573,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=8223,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=834375,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=898,
+ ["unit"]=0
+ }
+ },
+ [8985]={
+ ["next_chapter"]=8986,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11520,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3571,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8306,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=838879,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=8306,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=834375,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=898,
+ ["unit"]=0
+ }
+ },
+ [8986]={
+ ["next_chapter"]=8987,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11551,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3581,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8389,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=847268,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=8389,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=834375,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=898,
+ ["unit"]=0
+ }
+ },
+ [8987]={
+ ["next_chapter"]=8988,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11582,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3590,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8473,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=855740,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=8473,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=834375,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=898,
+ ["unit"]=0
+ }
+ },
+ [8988]={
+ ["next_chapter"]=8989,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11613,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3600,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8557,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=864298,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=8557,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=834375,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=898,
+ ["unit"]=0
+ }
+ },
+ [8989]={
+ ["next_chapter"]=8990,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11645,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3610,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8643,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=872941,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=8643,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=834375,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=898,
+ ["unit"]=0
+ }
+ },
+ [8990]={
+ ["next_chapter"]=8991,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=11677,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3620,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8729,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=881670,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=8729,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=921669,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=899,
+ ["unit"]=0
+ }
+ },
+ [8991]={
+ ["next_chapter"]=8992,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11708,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3630,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8817,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=890487,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=8817,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=921669,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=899,
+ ["unit"]=0
+ }
+ },
+ [8992]={
+ ["next_chapter"]=8993,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11740,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3639,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8905,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=899392,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=8905,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=921669,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=899,
+ ["unit"]=0
+ }
+ },
+ [8993]={
+ ["next_chapter"]=8994,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11772,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3649,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8994,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=908385,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=8994,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=921669,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=899,
+ ["unit"]=0
+ }
+ },
+ [8994]={
+ ["next_chapter"]=8995,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11804,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3659,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9084,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=917469,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=9084,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=921669,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=899,
+ ["unit"]=0
+ }
+ },
+ [8995]={
+ ["next_chapter"]=8996,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11837,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3669,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9175,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=926644,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=9175,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=921669,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=899,
+ ["unit"]=0
+ }
+ },
+ [8996]={
+ ["next_chapter"]=8997,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11869,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3679,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9266,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=935910,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=9266,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=921669,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=899,
+ ["unit"]=0
+ }
+ },
+ [8997]={
+ ["next_chapter"]=8998,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11902,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3689,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9359,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=945270,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=9359,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=921669,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=899,
+ ["unit"]=0
+ }
+ },
+ [8998]={
+ ["next_chapter"]=8999,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11934,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3700,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9453,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=954722,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=9453,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=921669,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=899,
+ ["unit"]=0
+ }
+ },
+ [8999]={
+ ["next_chapter"]=9000,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11967,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3710,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9547,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=964269,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=9547,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=921669,
+ ["unit"]=12
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=899,
+ ["unit"]=0
+ }
+ },
+ [9000]={
+ ["next_chapter"]=9001,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=12000,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3840,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9643,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=973912,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=9643,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1018,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=900,
+ ["unit"]=0
+ }
+ },
+ [9001]={
+ ["next_chapter"]=9002,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12000,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3840,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9739,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=983651,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=9739,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1018,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=900,
+ ["unit"]=0
+ }
+ },
+ [9002]={
+ ["next_chapter"]=9003,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12000,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3840,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9837,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=993488,
+ ["unit"]=12
+ },
+ ["idle_gold"]={
+ ["value"]=9837,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1018,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=900,
+ ["unit"]=0
+ }
+ },
+ [9003]={
+ ["next_chapter"]=9004,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12000,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3840,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9935,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1003,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=9935,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1018,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=900,
+ ["unit"]=0
+ }
+ },
+ [9004]={
+ ["next_chapter"]=9005,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12000,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3840,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10034,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1013,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=10034,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1018,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=900,
+ ["unit"]=0
+ }
+ },
+ [9005]={
+ ["next_chapter"]=9006,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12000,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3840,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10135,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1024,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=10135,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1018,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=900,
+ ["unit"]=0
+ }
+ },
+ [9006]={
+ ["next_chapter"]=9007,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12000,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3840,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10236,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1034,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=10236,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1018,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=900,
+ ["unit"]=0
+ }
+ },
+ [9007]={
+ ["next_chapter"]=9008,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12000,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3840,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10338,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1044,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=10338,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1018,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=900,
+ ["unit"]=0
+ }
+ },
+ [9008]={
+ ["next_chapter"]=9009,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12000,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3840,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10442,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1055,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=10442,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1018,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=900,
+ ["unit"]=0
+ }
+ },
+ [9009]={
+ ["next_chapter"]=9010,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12000,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3840,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10546,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1065,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=10546,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1018,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=900,
+ ["unit"]=0
+ }
+ },
+ [9010]={
+ ["next_chapter"]=9011,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=12000,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3840,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10652,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1076,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=10652,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1125,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=901,
+ ["unit"]=0
+ }
+ },
+ [9011]={
+ ["next_chapter"]=9012,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12000,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3840,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10758,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1087,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=10758,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1125,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=901,
+ ["unit"]=0
+ }
+ },
+ [9012]={
+ ["next_chapter"]=9013,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12000,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3840,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10866,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1097,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=10866,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1125,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=901,
+ ["unit"]=0
+ }
+ },
+ [9013]={
+ ["next_chapter"]=9014,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12000,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3840,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10974,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1108,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=10974,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1125,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=901,
+ ["unit"]=0
+ }
+ },
+ [9014]={
+ ["next_chapter"]=9015,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12000,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3840,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=11084,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1119,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=11084,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1125,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=901,
+ ["unit"]=0
+ }
+ },
+ [9015]={
+ ["next_chapter"]=9016,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12000,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3840,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=11195,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1131,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=11195,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1125,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=901,
+ ["unit"]=0
+ }
+ },
+ [9016]={
+ ["next_chapter"]=9017,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12000,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3840,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=11307,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1142,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=11307,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1125,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=901,
+ ["unit"]=0
+ }
+ },
+ [9017]={
+ ["next_chapter"]=9018,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12000,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3840,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=11420,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1153,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=11420,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1125,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=901,
+ ["unit"]=0
+ }
+ },
+ [9018]={
+ ["next_chapter"]=9019,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12000,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3840,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=11534,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1165,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=11534,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1125,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=901,
+ ["unit"]=0
+ }
+ },
+ [9019]={
+ ["next_chapter"]=9020,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12000,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3840,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=11649,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1177,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=11649,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1125,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=901,
+ ["unit"]=0
+ }
+ },
+ [9020]={
+ ["next_chapter"]=9021,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=12001,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3840,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=11766,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1188,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=11766,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1242,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=902,
+ ["unit"]=0
+ }
+ },
+ [9021]={
+ ["next_chapter"]=9022,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12001,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3840,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=11884,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1200,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=11884,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1242,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=902,
+ ["unit"]=0
+ }
+ },
+ [9022]={
+ ["next_chapter"]=9023,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12001,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3840,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=12002,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1212,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=12002,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1242,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=902,
+ ["unit"]=0
+ }
+ },
+ [9023]={
+ ["next_chapter"]=9024,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12001,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3840,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=12122,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1224,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=12122,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1242,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=902,
+ ["unit"]=0
+ }
+ },
+ [9024]={
+ ["next_chapter"]=9025,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12001,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3840,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=12244,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1237,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=12244,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1242,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=902,
+ ["unit"]=0
+ }
+ },
+ [9025]={
+ ["next_chapter"]=9026,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12001,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3840,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=12366,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1249,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=12366,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1242,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=902,
+ ["unit"]=0
+ }
+ },
+ [9026]={
+ ["next_chapter"]=9027,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12001,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3840,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=12490,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1261,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=12490,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1242,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=902,
+ ["unit"]=0
+ }
+ },
+ [9027]={
+ ["next_chapter"]=9028,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12001,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3840,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=12615,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1274,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=12615,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1242,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=902,
+ ["unit"]=0
+ }
+ },
+ [9028]={
+ ["next_chapter"]=9029,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12001,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3840,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=12741,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1287,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=12741,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1242,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=902,
+ ["unit"]=0
+ }
+ },
+ [9029]={
+ ["next_chapter"]=9030,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12002,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3840,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=12868,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1300,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=12868,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1242,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=902,
+ ["unit"]=0
+ }
+ },
+ [9030]={
+ ["next_chapter"]=9031,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=12002,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3841,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=12997,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1313,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=12997,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1372,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=903,
+ ["unit"]=0
+ }
+ },
+ [9031]={
+ ["next_chapter"]=9032,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12002,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3841,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=13127,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1326,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=13127,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1372,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=903,
+ ["unit"]=0
+ }
+ },
+ [9032]={
+ ["next_chapter"]=9033,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12002,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3841,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=13258,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1339,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=13258,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1372,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=903,
+ ["unit"]=0
+ }
+ },
+ [9033]={
+ ["next_chapter"]=9034,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12002,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3841,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=13391,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1352,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=13391,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1372,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=903,
+ ["unit"]=0
+ }
+ },
+ [9034]={
+ ["next_chapter"]=9035,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12003,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3841,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=13525,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1366,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=13525,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1372,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=903,
+ ["unit"]=0
+ }
+ },
+ [9035]={
+ ["next_chapter"]=9036,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12003,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3841,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=13660,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1380,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=13660,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1372,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=903,
+ ["unit"]=0
+ }
+ },
+ [9036]={
+ ["next_chapter"]=9037,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12003,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3841,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=13796,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1393,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=13796,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1372,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=903,
+ ["unit"]=0
+ }
+ },
+ [9037]={
+ ["next_chapter"]=9038,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12003,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3841,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=13934,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1407,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=13934,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1372,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=903,
+ ["unit"]=0
+ }
+ },
+ [9038]={
+ ["next_chapter"]=9039,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12004,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3841,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=14074,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1421,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=14074,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1372,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=903,
+ ["unit"]=0
+ }
+ },
+ [9039]={
+ ["next_chapter"]=9040,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12004,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3841,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=14215,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1436,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=14215,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1372,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=903,
+ ["unit"]=0
+ }
+ },
+ [9040]={
+ ["next_chapter"]=9041,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=12004,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3841,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=14357,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1450,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=14357,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1516,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=904,
+ ["unit"]=0
+ }
+ },
+ [9041]={
+ ["next_chapter"]=9042,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12004,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3841,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=14500,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1465,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=14500,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1516,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=904,
+ ["unit"]=0
+ }
+ },
+ [9042]={
+ ["next_chapter"]=9043,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12005,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3842,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=14645,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1479,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=14645,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1516,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=904,
+ ["unit"]=0
+ }
+ },
+ [9043]={
+ ["next_chapter"]=9044,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12005,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3842,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=14792,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1494,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=14792,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1516,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=904,
+ ["unit"]=0
+ }
+ },
+ [9044]={
+ ["next_chapter"]=9045,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12005,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3842,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=14940,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1509,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=14940,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1516,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=904,
+ ["unit"]=0
+ }
+ },
+ [9045]={
+ ["next_chapter"]=9046,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12006,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3842,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=15089,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1524,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=15089,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1516,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=904,
+ ["unit"]=0
+ }
+ },
+ [9046]={
+ ["next_chapter"]=9047,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12006,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3842,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=15240,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1539,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=15240,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1516,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=904,
+ ["unit"]=0
+ }
+ },
+ [9047]={
+ ["next_chapter"]=9048,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12007,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3842,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=15392,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1555,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=15392,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1516,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=904,
+ ["unit"]=0
+ }
+ },
+ [9048]={
+ ["next_chapter"]=9049,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12007,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3842,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=15546,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1570,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=15546,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1516,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=904,
+ ["unit"]=0
+ }
+ },
+ [9049]={
+ ["next_chapter"]=9050,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12008,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3842,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=15702,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1586,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=15702,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1516,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=904,
+ ["unit"]=0
+ }
+ },
+ [9050]={
+ ["next_chapter"]=9051,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=12008,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3843,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=15859,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1602,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=15859,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1674,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=905,
+ ["unit"]=0
+ }
+ },
+ [9051]={
+ ["next_chapter"]=9052,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12008,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3843,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=16017,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1618,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=16017,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1674,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=905,
+ ["unit"]=0
+ }
+ },
+ [9052]={
+ ["next_chapter"]=9053,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12009,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3843,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=16177,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1634,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=16177,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1674,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=905,
+ ["unit"]=0
+ }
+ },
+ [9053]={
+ ["next_chapter"]=9054,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12010,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3843,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=16339,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1650,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=16339,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1674,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=905,
+ ["unit"]=0
+ }
+ },
+ [9054]={
+ ["next_chapter"]=9055,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12010,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3843,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=16503,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1667,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=16503,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1674,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=905,
+ ["unit"]=0
+ }
+ },
+ [9055]={
+ ["next_chapter"]=9056,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12011,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3843,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=16668,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1683,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=16668,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1674,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=905,
+ ["unit"]=0
+ }
+ },
+ [9056]={
+ ["next_chapter"]=9057,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12011,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3844,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=16834,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1700,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=16834,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1674,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=905,
+ ["unit"]=0
+ }
+ },
+ [9057]={
+ ["next_chapter"]=9058,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12012,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3844,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=17003,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1717,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=17003,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1674,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=905,
+ ["unit"]=0
+ }
+ },
+ [9058]={
+ ["next_chapter"]=9059,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12012,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3844,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=17173,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1734,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=17173,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1674,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=905,
+ ["unit"]=0
+ }
+ },
+ [9059]={
+ ["next_chapter"]=9060,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12013,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3844,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=17344,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1752,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=17344,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1674,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=905,
+ ["unit"]=0
+ }
+ },
+ [9060]={
+ ["next_chapter"]=9061,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=12014,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3844,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=17518,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1769,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=17518,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1850,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=906,
+ ["unit"]=0
+ }
+ },
+ [9061]={
+ ["next_chapter"]=9062,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12015,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3845,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=17693,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1787,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=17693,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1850,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=906,
+ ["unit"]=0
+ }
+ },
+ [9062]={
+ ["next_chapter"]=9063,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12015,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3845,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=17870,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1805,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=17870,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1850,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=906,
+ ["unit"]=0
+ }
+ },
+ [9063]={
+ ["next_chapter"]=9064,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12016,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3845,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=18049,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1823,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=18049,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1850,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=906,
+ ["unit"]=0
+ }
+ },
+ [9064]={
+ ["next_chapter"]=9065,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12017,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3845,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=18229,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1841,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=18229,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1850,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=906,
+ ["unit"]=0
+ }
+ },
+ [9065]={
+ ["next_chapter"]=9066,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12018,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3846,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=18411,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1860,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=18411,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1850,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=906,
+ ["unit"]=0
+ }
+ },
+ [9066]={
+ ["next_chapter"]=9067,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12018,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3846,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=18596,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1878,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=18596,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1850,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=906,
+ ["unit"]=0
+ }
+ },
+ [9067]={
+ ["next_chapter"]=9068,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12019,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3846,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=18782,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1897,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=18782,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1850,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=906,
+ ["unit"]=0
+ }
+ },
+ [9068]={
+ ["next_chapter"]=9069,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12020,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3846,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=18969,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1916,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=18969,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1850,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=906,
+ ["unit"]=0
+ }
+ },
+ [9069]={
+ ["next_chapter"]=9070,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12021,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3847,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=19159,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1935,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=19159,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=1850,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=906,
+ ["unit"]=0
+ }
+ },
+ [9070]={
+ ["next_chapter"]=9071,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=12022,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3847,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=19351,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1954,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=19351,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2043,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=907,
+ ["unit"]=0
+ }
+ },
+ [9071]={
+ ["next_chapter"]=9072,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12023,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3847,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=19544,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1974,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=19544,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2043,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=907,
+ ["unit"]=0
+ }
+ },
+ [9072]={
+ ["next_chapter"]=9073,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12024,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3848,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=19740,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1994,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=19740,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2043,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=907,
+ ["unit"]=0
+ }
+ },
+ [9073]={
+ ["next_chapter"]=9074,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12025,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3848,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=19937,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2014,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=19937,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2043,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=907,
+ ["unit"]=0
+ }
+ },
+ [9074]={
+ ["next_chapter"]=9075,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12026,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3848,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=20136,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2034,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=20136,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2043,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=907,
+ ["unit"]=0
+ }
+ },
+ [9075]={
+ ["next_chapter"]=9076,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12027,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3849,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=20338,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2054,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=20338,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2043,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=907,
+ ["unit"]=0
+ }
+ },
+ [9076]={
+ ["next_chapter"]=9077,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12028,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3849,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=20541,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2075,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=20541,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2043,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=907,
+ ["unit"]=0
+ }
+ },
+ [9077]={
+ ["next_chapter"]=9078,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12029,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3849,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=20746,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2095,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=20746,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2043,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=907,
+ ["unit"]=0
+ }
+ },
+ [9078]={
+ ["next_chapter"]=9079,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12030,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3850,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=20954,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2116,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=20954,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2043,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=907,
+ ["unit"]=0
+ }
+ },
+ [9079]={
+ ["next_chapter"]=9080,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12032,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3850,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=21163,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2138,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=21163,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2043,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=907,
+ ["unit"]=0
+ }
+ },
+ [9080]={
+ ["next_chapter"]=9081,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=12033,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3850,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=21375,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2159,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=21375,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2257,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=908,
+ ["unit"]=0
+ }
+ },
+ [9081]={
+ ["next_chapter"]=9082,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12034,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3851,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=21589,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2180,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=21589,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2257,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=908,
+ ["unit"]=0
+ }
+ },
+ [9082]={
+ ["next_chapter"]=9083,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12035,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3851,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=21805,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2202,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=21805,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2257,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=908,
+ ["unit"]=0
+ }
+ },
+ [9083]={
+ ["next_chapter"]=9084,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12037,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3852,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=22023,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2224,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=22023,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2257,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=908,
+ ["unit"]=0
+ }
+ },
+ [9084]={
+ ["next_chapter"]=9085,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12038,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3852,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=22243,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2247,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=22243,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2257,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=908,
+ ["unit"]=0
+ }
+ },
+ [9085]={
+ ["next_chapter"]=9086,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12039,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3853,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=22465,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2269,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=22465,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2257,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=908,
+ ["unit"]=0
+ }
+ },
+ [9086]={
+ ["next_chapter"]=9087,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12041,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3853,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=22690,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2292,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=22690,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2257,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=908,
+ ["unit"]=0
+ }
+ },
+ [9087]={
+ ["next_chapter"]=9088,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12042,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3853,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=22917,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2315,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=22917,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2257,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=908,
+ ["unit"]=0
+ }
+ },
+ [9088]={
+ ["next_chapter"]=9089,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12044,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3854,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=23146,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2338,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=23146,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2257,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=908,
+ ["unit"]=0
+ }
+ },
+ [9089]={
+ ["next_chapter"]=9090,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12045,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3854,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=23378,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2361,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=23378,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2257,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=908,
+ ["unit"]=0
+ }
+ },
+ [9090]={
+ ["next_chapter"]=9091,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=12047,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3855,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=23611,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2385,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=23611,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2493,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=909,
+ ["unit"]=0
+ }
+ },
+ [9091]={
+ ["next_chapter"]=9092,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12048,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3855,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=23848,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2409,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=23848,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2493,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=909,
+ ["unit"]=0
+ }
+ },
+ [9092]={
+ ["next_chapter"]=9093,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12050,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3856,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=24086,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2433,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=24086,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2493,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=909,
+ ["unit"]=0
+ }
+ },
+ [9093]={
+ ["next_chapter"]=9094,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12051,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3856,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=24327,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2457,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=24327,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2493,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=909,
+ ["unit"]=0
+ }
+ },
+ [9094]={
+ ["next_chapter"]=9095,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12053,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3857,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=24570,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2482,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=24570,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2493,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=909,
+ ["unit"]=0
+ }
+ },
+ [9095]={
+ ["next_chapter"]=9096,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12055,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3858,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=24816,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2506,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=24816,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2493,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=909,
+ ["unit"]=0
+ }
+ },
+ [9096]={
+ ["next_chapter"]=9097,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12057,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3858,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=25064,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2531,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=25064,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2493,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=909,
+ ["unit"]=0
+ }
+ },
+ [9097]={
+ ["next_chapter"]=9098,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12058,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3859,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=25315,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2557,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=25315,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2493,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=909,
+ ["unit"]=0
+ }
+ },
+ [9098]={
+ ["next_chapter"]=9099,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12060,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3859,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=25568,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2582,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=25568,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2493,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=909,
+ ["unit"]=0
+ }
+ },
+ [9099]={
+ ["next_chapter"]=9100,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12062,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3860,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=25823,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2608,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=25823,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2493,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=909,
+ ["unit"]=0
+ }
+ },
+ [9100]={
+ ["next_chapter"]=9101,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=12064,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3860,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=26082,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2634,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=26082,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=56,
+ ["grasp_gold_reward"]={
+ ["value"]=2754,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=910,
+ ["unit"]=0
+ }
+ },
+ [9101]={
+ ["next_chapter"]=9102,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12066,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3861,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=26343,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2661,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=26343,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=2754,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=910,
+ ["unit"]=0
+ }
+ },
+ [9102]={
+ ["next_chapter"]=9103,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12068,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3862,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=26606,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2687,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=26606,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=2754,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=910,
+ ["unit"]=0
+ }
+ },
+ [9103]={
+ ["next_chapter"]=9104,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12070,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3862,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=26872,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2714,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=26872,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=2754,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=910,
+ ["unit"]=0
+ }
+ },
+ [9104]={
+ ["next_chapter"]=9105,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12072,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3863,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=27141,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2741,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=27141,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=2754,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=910,
+ ["unit"]=0
+ }
+ },
+ [9105]={
+ ["next_chapter"]=9106,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12074,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3864,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=27412,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2769,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=27412,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=2754,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=910,
+ ["unit"]=0
+ }
+ },
+ [9106]={
+ ["next_chapter"]=9107,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12076,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3864,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=27686,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2796,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=27686,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=2754,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=910,
+ ["unit"]=0
+ }
+ },
+ [9107]={
+ ["next_chapter"]=9108,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12078,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3865,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=27963,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2824,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=27963,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=2754,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=910,
+ ["unit"]=0
+ }
+ },
+ [9108]={
+ ["next_chapter"]=9109,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12081,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3866,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=28243,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2853,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=28243,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=2754,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=910,
+ ["unit"]=0
+ }
+ },
+ [9109]={
+ ["next_chapter"]=9110,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12083,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3867,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=28525,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2881,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=28525,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=2754,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=910,
+ ["unit"]=0
+ }
+ },
+ [9110]={
+ ["next_chapter"]=9111,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=12085,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3867,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=28810,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2910,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=28810,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3042,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=911,
+ ["unit"]=0
+ }
+ },
+ [9111]={
+ ["next_chapter"]=9112,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12088,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3868,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=29099,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2939,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=29099,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3042,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=911,
+ ["unit"]=0
+ }
+ },
+ [9112]={
+ ["next_chapter"]=9113,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12090,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3869,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=29390,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2968,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=29390,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3042,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=911,
+ ["unit"]=0
+ }
+ },
+ [9113]={
+ ["next_chapter"]=9114,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12092,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3870,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=29683,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2998,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=29683,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3042,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=911,
+ ["unit"]=0
+ }
+ },
+ [9114]={
+ ["next_chapter"]=9115,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12095,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3870,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=29980,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3028,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=29980,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3042,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=911,
+ ["unit"]=0
+ }
+ },
+ [9115]={
+ ["next_chapter"]=9116,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12097,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3871,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=30280,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3058,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=30280,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3042,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=911,
+ ["unit"]=0
+ }
+ },
+ [9116]={
+ ["next_chapter"]=9117,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12100,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3872,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=30583,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3089,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=30583,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3042,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=911,
+ ["unit"]=0
+ }
+ },
+ [9117]={
+ ["next_chapter"]=9118,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12103,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3873,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=30889,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3120,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=30889,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3042,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=911,
+ ["unit"]=0
+ }
+ },
+ [9118]={
+ ["next_chapter"]=9119,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12105,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3874,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=31198,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3151,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=31198,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3042,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=911,
+ ["unit"]=0
+ }
+ },
+ [9119]={
+ ["next_chapter"]=9120,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12108,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3875,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=31510,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3182,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=31510,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3042,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=911,
+ ["unit"]=0
+ }
+ },
+ [9120]={
+ ["next_chapter"]=9121,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=12111,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3875,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=31825,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3214,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=31825,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3360,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=912,
+ ["unit"]=0
+ }
+ },
+ [9121]={
+ ["next_chapter"]=9122,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12113,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3876,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=32143,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3246,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=32143,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3360,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=912,
+ ["unit"]=0
+ }
+ },
+ [9122]={
+ ["next_chapter"]=9123,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12116,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3877,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=32464,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3279,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=32464,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3360,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=912,
+ ["unit"]=0
+ }
+ },
+ [9123]={
+ ["next_chapter"]=9124,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12119,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3878,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=32789,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3312,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=32789,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3360,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=912,
+ ["unit"]=0
+ }
+ },
+ [9124]={
+ ["next_chapter"]=9125,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12122,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3879,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=33117,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3345,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=33117,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3360,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=912,
+ ["unit"]=0
+ }
+ },
+ [9125]={
+ ["next_chapter"]=9126,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12125,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3880,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=33448,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3378,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=33448,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3360,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=912,
+ ["unit"]=0
+ }
+ },
+ [9126]={
+ ["next_chapter"]=9127,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12128,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3881,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=33782,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3412,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=33782,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3360,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=912,
+ ["unit"]=0
+ }
+ },
+ [9127]={
+ ["next_chapter"]=9128,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12131,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3882,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=34120,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3446,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=34120,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3360,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=912,
+ ["unit"]=0
+ }
+ },
+ [9128]={
+ ["next_chapter"]=9129,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12134,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3883,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=34462,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3481,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=34462,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3360,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=912,
+ ["unit"]=0
+ }
+ },
+ [9129]={
+ ["next_chapter"]=9130,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12137,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3884,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=34806,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3515,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=34806,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3360,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=912,
+ ["unit"]=0
+ }
+ },
+ [9130]={
+ ["next_chapter"]=9131,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=12141,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3885,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=35154,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3551,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=35154,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3712,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=913,
+ ["unit"]=0
+ }
+ },
+ [9131]={
+ ["next_chapter"]=9132,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12144,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3886,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=35506,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3586,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=35506,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3712,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=913,
+ ["unit"]=0
+ }
+ },
+ [9132]={
+ ["next_chapter"]=9133,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12147,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3887,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=35861,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3622,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=35861,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3712,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=913,
+ ["unit"]=0
+ }
+ },
+ [9133]={
+ ["next_chapter"]=9134,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12151,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3888,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=36219,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3658,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=36219,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3712,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=913,
+ ["unit"]=0
+ }
+ },
+ [9134]={
+ ["next_chapter"]=9135,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12154,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3889,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=36582,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3695,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=36582,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3712,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=913,
+ ["unit"]=0
+ }
+ },
+ [9135]={
+ ["next_chapter"]=9136,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12157,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3890,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=36947,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3732,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=36947,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3712,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=913,
+ ["unit"]=0
+ }
+ },
+ [9136]={
+ ["next_chapter"]=9137,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12161,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3892,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=37317,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3769,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=37317,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3712,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=913,
+ ["unit"]=0
+ }
+ },
+ [9137]={
+ ["next_chapter"]=9138,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12165,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3893,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=37690,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3807,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=37690,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3712,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=913,
+ ["unit"]=0
+ }
+ },
+ [9138]={
+ ["next_chapter"]=9139,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12168,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3894,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=38067,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3845,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=38067,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3712,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=913,
+ ["unit"]=0
+ }
+ },
+ [9139]={
+ ["next_chapter"]=9140,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12172,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3895,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=38448,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3883,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=38448,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3712,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=913,
+ ["unit"]=0
+ }
+ },
+ [9140]={
+ ["next_chapter"]=9141,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=12176,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3896,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=38832,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3922,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=38832,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=4100,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=914,
+ ["unit"]=0
+ }
+ },
+ [9141]={
+ ["next_chapter"]=9142,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12179,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3897,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=39220,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3961,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=39220,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=4100,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=914,
+ ["unit"]=0
+ }
+ },
+ [9142]={
+ ["next_chapter"]=9143,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12183,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3899,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=39613,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4001,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=39613,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=4100,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=914,
+ ["unit"]=0
+ }
+ },
+ [9143]={
+ ["next_chapter"]=9144,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12187,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3900,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=40009,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4041,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=40009,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=4100,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=914,
+ ["unit"]=0
+ }
+ },
+ [9144]={
+ ["next_chapter"]=9145,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12191,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3901,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=40409,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4081,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=40409,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=4100,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=914,
+ ["unit"]=0
+ }
+ },
+ [9145]={
+ ["next_chapter"]=9146,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12195,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3902,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=40813,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4122,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=40813,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=4100,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=914,
+ ["unit"]=0
+ }
+ },
+ [9146]={
+ ["next_chapter"]=9147,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12199,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3904,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=41221,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4163,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=41221,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=4100,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=914,
+ ["unit"]=0
+ }
+ },
+ [9147]={
+ ["next_chapter"]=9148,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12203,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3905,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=41633,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4205,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=41633,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=4100,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=914,
+ ["unit"]=0
+ }
+ },
+ [9148]={
+ ["next_chapter"]=9149,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12207,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3906,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=42050,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4247,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=42050,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=4100,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=914,
+ ["unit"]=0
+ }
+ },
+ [9149]={
+ ["next_chapter"]=9150,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12212,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3908,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=42470,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4289,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=42470,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=4100,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=914,
+ ["unit"]=0
+ }
+ },
+ [9150]={
+ ["next_chapter"]=9151,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=12216,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3909,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=42895,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4332,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=42895,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=4529,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=915,
+ ["unit"]=0
+ }
+ },
+ [9151]={
+ ["next_chapter"]=9152,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12220,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3911,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=43324,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4376,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=43324,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=4529,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=915,
+ ["unit"]=0
+ }
+ },
+ [9152]={
+ ["next_chapter"]=9153,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12225,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3912,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=43757,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4419,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=43757,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=4529,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=915,
+ ["unit"]=0
+ }
+ },
+ [9153]={
+ ["next_chapter"]=9154,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12229,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3913,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=44195,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4464,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=44195,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=4529,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=915,
+ ["unit"]=0
+ }
+ },
+ [9154]={
+ ["next_chapter"]=9155,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12234,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3915,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=44636,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4508,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=44636,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=4529,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=915,
+ ["unit"]=0
+ }
+ },
+ [9155]={
+ ["next_chapter"]=9156,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12238,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3916,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=45083,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4553,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=45083,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=4529,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=915,
+ ["unit"]=0
+ }
+ },
+ [9156]={
+ ["next_chapter"]=9157,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12243,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3918,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=45534,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4599,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=45534,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=4529,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=915,
+ ["unit"]=0
+ }
+ },
+ [9157]={
+ ["next_chapter"]=9158,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12248,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3919,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=45989,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4645,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=45989,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=4529,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=915,
+ ["unit"]=0
+ }
+ },
+ [9158]={
+ ["next_chapter"]=9159,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12252,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3921,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=46449,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4691,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=46449,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=4529,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=915,
+ ["unit"]=0
+ }
+ },
+ [9159]={
+ ["next_chapter"]=9160,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12257,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3922,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=46913,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4738,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=46913,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=4529,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=915,
+ ["unit"]=0
+ }
+ },
+ [9160]={
+ ["next_chapter"]=9161,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=12262,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3924,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=47383,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4786,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=47383,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=5003,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=916,
+ ["unit"]=0
+ }
+ },
+ [9161]={
+ ["next_chapter"]=9162,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12267,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3925,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=47856,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4833,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=47856,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=5003,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=916,
+ ["unit"]=0
+ }
+ },
+ [9162]={
+ ["next_chapter"]=9163,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12272,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3927,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=48335,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4882,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=48335,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=5003,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=916,
+ ["unit"]=0
+ }
+ },
+ [9163]={
+ ["next_chapter"]=9164,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12277,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3929,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=48818,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4931,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=48818,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=5003,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=916,
+ ["unit"]=0
+ }
+ },
+ [9164]={
+ ["next_chapter"]=9165,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12282,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3930,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=49306,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4980,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=49306,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=5003,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=916,
+ ["unit"]=0
+ }
+ },
+ [9165]={
+ ["next_chapter"]=9166,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12287,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3932,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=49800,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5030,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=49800,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=5003,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=916,
+ ["unit"]=0
+ }
+ },
+ [9166]={
+ ["next_chapter"]=9167,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12293,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3934,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=50298,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5080,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=50298,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=5003,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=916,
+ ["unit"]=0
+ }
+ },
+ [9167]={
+ ["next_chapter"]=9168,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12298,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3935,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=50800,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5131,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=50800,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=5003,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=916,
+ ["unit"]=0
+ }
+ },
+ [9168]={
+ ["next_chapter"]=9169,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12303,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3937,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=51308,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5182,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=51308,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=5003,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=916,
+ ["unit"]=0
+ }
+ },
+ [9169]={
+ ["next_chapter"]=9170,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12309,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3939,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=51822,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5234,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=51822,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=5003,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=916,
+ ["unit"]=0
+ }
+ },
+ [9170]={
+ ["next_chapter"]=9171,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=12314,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3941,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=52340,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5286,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=52340,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=5526,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=917,
+ ["unit"]=0
+ }
+ },
+ [9171]={
+ ["next_chapter"]=9172,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12320,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3942,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=52863,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5339,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=52863,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=5526,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=917,
+ ["unit"]=0
+ }
+ },
+ [9172]={
+ ["next_chapter"]=9173,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12326,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3944,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=53392,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5393,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=53392,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=5526,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=917,
+ ["unit"]=0
+ }
+ },
+ [9173]={
+ ["next_chapter"]=9174,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12331,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3946,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=53926,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5446,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=53926,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=5526,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=917,
+ ["unit"]=0
+ }
+ },
+ [9174]={
+ ["next_chapter"]=9175,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12337,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3948,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=54465,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5501,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=54465,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=5526,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=917,
+ ["unit"]=0
+ }
+ },
+ [9175]={
+ ["next_chapter"]=9176,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12343,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3950,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=55010,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5556,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=55010,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=5526,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=917,
+ ["unit"]=0
+ }
+ },
+ [9176]={
+ ["next_chapter"]=9177,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12349,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3952,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=55560,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5612,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=55560,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=5526,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=917,
+ ["unit"]=0
+ }
+ },
+ [9177]={
+ ["next_chapter"]=9178,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12355,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3954,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=56115,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5668,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=56115,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=5526,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=917,
+ ["unit"]=0
+ }
+ },
+ [9178]={
+ ["next_chapter"]=9179,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12361,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3956,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=56676,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5724,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=56676,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=5526,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=917,
+ ["unit"]=0
+ }
+ },
+ [9179]={
+ ["next_chapter"]=9180,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12367,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3957,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=57243,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5782,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=57243,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=5526,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=917,
+ ["unit"]=0
+ }
+ },
+ [9180]={
+ ["next_chapter"]=9181,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=12373,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3959,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=57816,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5839,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=57816,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=6104,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=918,
+ ["unit"]=0
+ }
+ },
+ [9181]={
+ ["next_chapter"]=9182,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12380,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3961,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=58394,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5898,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=58394,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=6104,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=918,
+ ["unit"]=0
+ }
+ },
+ [9182]={
+ ["next_chapter"]=9183,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12386,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3963,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=58978,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5957,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=58978,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=6104,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=918,
+ ["unit"]=0
+ }
+ },
+ [9183]={
+ ["next_chapter"]=9184,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12392,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3966,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=59568,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6016,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=59568,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=6104,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=918,
+ ["unit"]=0
+ }
+ },
+ [9184]={
+ ["next_chapter"]=9185,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12399,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3968,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=60163,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6076,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=60163,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=6104,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=918,
+ ["unit"]=0
+ }
+ },
+ [9185]={
+ ["next_chapter"]=9186,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12405,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3970,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=60765,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6137,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=60765,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=6104,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=918,
+ ["unit"]=0
+ }
+ },
+ [9186]={
+ ["next_chapter"]=9187,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12412,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3972,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=61373,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6199,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=61373,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=6104,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=918,
+ ["unit"]=0
+ }
+ },
+ [9187]={
+ ["next_chapter"]=9188,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12419,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3974,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=61986,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6261,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=61986,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=6104,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=918,
+ ["unit"]=0
+ }
+ },
+ [9188]={
+ ["next_chapter"]=9189,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12425,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3976,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=62606,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6323,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=62606,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=6104,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=918,
+ ["unit"]=0
+ }
+ },
+ [9189]={
+ ["next_chapter"]=9190,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12432,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3978,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=63232,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6386,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=63232,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=6104,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=918,
+ ["unit"]=0
+ }
+ },
+ [9190]={
+ ["next_chapter"]=9191,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=12439,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3980,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=63864,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6450,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=63864,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=6743,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=919,
+ ["unit"]=0
+ }
+ },
+ [9191]={
+ ["next_chapter"]=9192,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12446,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3983,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=64503,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6515,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=64503,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=6743,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=919,
+ ["unit"]=0
+ }
+ },
+ [9192]={
+ ["next_chapter"]=9193,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12453,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3985,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=65148,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6580,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=65148,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=6743,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=919,
+ ["unit"]=0
+ }
+ },
+ [9193]={
+ ["next_chapter"]=9194,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12460,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3987,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=65800,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6646,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=65800,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=6743,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=919,
+ ["unit"]=0
+ }
+ },
+ [9194]={
+ ["next_chapter"]=9195,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12467,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3990,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=66458,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6712,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=66458,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=6743,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=919,
+ ["unit"]=0
+ }
+ },
+ [9195]={
+ ["next_chapter"]=9196,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12475,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3992,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=67122,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6779,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=67122,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=6743,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=919,
+ ["unit"]=0
+ }
+ },
+ [9196]={
+ ["next_chapter"]=9197,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12482,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3994,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=67793,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6847,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=67793,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=6743,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=919,
+ ["unit"]=0
+ }
+ },
+ [9197]={
+ ["next_chapter"]=9198,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12489,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3997,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=68471,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6916,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=68471,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=6743,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=919,
+ ["unit"]=0
+ }
+ },
+ [9198]={
+ ["next_chapter"]=9199,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12497,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=3999,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=69156,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6985,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=69156,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=6743,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=919,
+ ["unit"]=0
+ }
+ },
+ [9199]={
+ ["next_chapter"]=9200,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12504,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4001,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=69848,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7055,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=69848,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=6743,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=919,
+ ["unit"]=0
+ }
+ },
+ [9200]={
+ ["next_chapter"]=9201,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=12512,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4004,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=70546,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7125,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=70546,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=7448,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=920,
+ ["unit"]=0
+ }
+ },
+ [9201]={
+ ["next_chapter"]=9202,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12520,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4006,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=71252,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7196,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=71252,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=7448,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=920,
+ ["unit"]=0
+ }
+ },
+ [9202]={
+ ["next_chapter"]=9203,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12528,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4009,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=71964,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7268,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=71964,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=7448,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=920,
+ ["unit"]=0
+ }
+ },
+ [9203]={
+ ["next_chapter"]=9204,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12535,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4011,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=72684,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7341,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=72684,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=7448,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=920,
+ ["unit"]=0
+ }
+ },
+ [9204]={
+ ["next_chapter"]=9205,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12543,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4014,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=73411,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7414,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=73411,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=7448,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=920,
+ ["unit"]=0
+ }
+ },
+ [9205]={
+ ["next_chapter"]=9206,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12551,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4016,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=74145,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7489,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=74145,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=7448,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=920,
+ ["unit"]=0
+ }
+ },
+ [9206]={
+ ["next_chapter"]=9207,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12559,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4019,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=74886,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7563,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=74886,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=7448,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=920,
+ ["unit"]=0
+ }
+ },
+ [9207]={
+ ["next_chapter"]=9208,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12568,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4022,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=75635,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7639,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=75635,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=7448,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=920,
+ ["unit"]=0
+ }
+ },
+ [9208]={
+ ["next_chapter"]=9209,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12576,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4024,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=76391,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7716,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=76391,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=7448,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=920,
+ ["unit"]=0
+ }
+ },
+ [9209]={
+ ["next_chapter"]=9210,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12584,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4027,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=77155,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7793,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=77155,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=7448,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=920,
+ ["unit"]=0
+ }
+ },
+ [9210]={
+ ["next_chapter"]=9211,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=12593,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4030,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=77927,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7871,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=77927,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=8228,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=921,
+ ["unit"]=0
+ }
+ },
+ [9211]={
+ ["next_chapter"]=9212,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12601,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4032,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=78706,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7949,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=78706,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=8228,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=921,
+ ["unit"]=0
+ }
+ },
+ [9212]={
+ ["next_chapter"]=9213,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12610,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4035,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=79493,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8029,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=79493,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=8228,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=921,
+ ["unit"]=0
+ }
+ },
+ [9213]={
+ ["next_chapter"]=9214,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12618,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4038,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=80288,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8109,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=80288,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=8228,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=921,
+ ["unit"]=0
+ }
+ },
+ [9214]={
+ ["next_chapter"]=9215,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12627,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4041,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=81091,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8190,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=81091,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=8228,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=921,
+ ["unit"]=0
+ }
+ },
+ [9215]={
+ ["next_chapter"]=9216,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12636,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4044,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=81902,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8272,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=81902,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=8228,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=921,
+ ["unit"]=0
+ }
+ },
+ [9216]={
+ ["next_chapter"]=9217,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12645,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4046,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=82721,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8355,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=82721,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=8228,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=921,
+ ["unit"]=0
+ }
+ },
+ [9217]={
+ ["next_chapter"]=9218,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12654,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4049,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=83548,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8438,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=83548,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=8228,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=921,
+ ["unit"]=0
+ }
+ },
+ [9218]={
+ ["next_chapter"]=9219,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12663,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4052,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=84384,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8523,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=84384,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=8228,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=921,
+ ["unit"]=0
+ }
+ },
+ [9219]={
+ ["next_chapter"]=9220,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12672,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4055,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=85227,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8608,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=85227,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=8228,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=921,
+ ["unit"]=0
+ }
+ },
+ [9220]={
+ ["next_chapter"]=9221,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=12681,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4058,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=86080,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8694,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=86080,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=9088,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=922,
+ ["unit"]=0
+ }
+ },
+ [9221]={
+ ["next_chapter"]=9222,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12691,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4061,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=86940,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8781,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=86940,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=9088,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=922,
+ ["unit"]=0
+ }
+ },
+ [9222]={
+ ["next_chapter"]=9223,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12700,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4064,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=87810,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8869,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=87810,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=9088,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=922,
+ ["unit"]=0
+ }
+ },
+ [9223]={
+ ["next_chapter"]=9224,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12710,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4067,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=88688,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8957,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=88688,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=9088,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=922,
+ ["unit"]=0
+ }
+ },
+ [9224]={
+ ["next_chapter"]=9225,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12719,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4070,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=89575,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9047,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=89575,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=9088,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=922,
+ ["unit"]=0
+ }
+ },
+ [9225]={
+ ["next_chapter"]=9226,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12729,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4073,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=90471,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9138,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=90471,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=9088,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=922,
+ ["unit"]=0
+ }
+ },
+ [9226]={
+ ["next_chapter"]=9227,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12739,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4076,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=91375,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9229,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=91375,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=9088,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=922,
+ ["unit"]=0
+ }
+ },
+ [9227]={
+ ["next_chapter"]=9228,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12749,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4080,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=92289,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9321,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=92289,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=9088,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=922,
+ ["unit"]=0
+ }
+ },
+ [9228]={
+ ["next_chapter"]=9229,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12759,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4083,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=93212,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9414,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=93212,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=9088,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=922,
+ ["unit"]=0
+ }
+ },
+ [9229]={
+ ["next_chapter"]=9230,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12769,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4086,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=94144,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9509,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=94144,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=9088,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=922,
+ ["unit"]=0
+ }
+ },
+ [9230]={
+ ["next_chapter"]=9231,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=12779,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4089,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=95086,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9604,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=95086,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=10039,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=923,
+ ["unit"]=0
+ }
+ },
+ [9231]={
+ ["next_chapter"]=9232,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12789,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4092,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=96036,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9700,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=96036,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=10039,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=923,
+ ["unit"]=0
+ }
+ },
+ [9232]={
+ ["next_chapter"]=9233,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12799,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4096,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=96997,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9797,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=96997,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=10039,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=923,
+ ["unit"]=0
+ }
+ },
+ [9233]={
+ ["next_chapter"]=9234,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12810,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4099,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=97967,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9895,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=97967,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=10039,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=923,
+ ["unit"]=0
+ }
+ },
+ [9234]={
+ ["next_chapter"]=9235,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12820,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4102,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=98946,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9994,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=98946,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=10039,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=923,
+ ["unit"]=0
+ }
+ },
+ [9235]={
+ ["next_chapter"]=9236,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12831,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4106,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=99936,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10094,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=99936,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=10039,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=923,
+ ["unit"]=0
+ }
+ },
+ [9236]={
+ ["next_chapter"]=9237,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12841,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4109,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=100935,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10194,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=100935,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=10039,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=923,
+ ["unit"]=0
+ }
+ },
+ [9237]={
+ ["next_chapter"]=9238,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12852,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4113,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=101945,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10296,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=101945,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=10039,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=923,
+ ["unit"]=0
+ }
+ },
+ [9238]={
+ ["next_chapter"]=9239,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12863,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4116,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=102964,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10399,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=102964,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=10039,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=923,
+ ["unit"]=0
+ }
+ },
+ [9239]={
+ ["next_chapter"]=9240,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12874,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4120,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=103994,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10503,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=103994,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=10039,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=923,
+ ["unit"]=0
+ }
+ },
+ [9240]={
+ ["next_chapter"]=9241,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=12885,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4123,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=105034,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10608,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=105034,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=11090,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=924,
+ ["unit"]=0
+ }
+ },
+ [9241]={
+ ["next_chapter"]=9242,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12896,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4127,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=106084,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10714,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=106084,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=11090,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=924,
+ ["unit"]=0
+ }
+ },
+ [9242]={
+ ["next_chapter"]=9243,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12907,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4130,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=107145,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10822,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=107145,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=11090,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=924,
+ ["unit"]=0
+ }
+ },
+ [9243]={
+ ["next_chapter"]=9244,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12918,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4134,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=108216,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10930,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=108216,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=11090,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=924,
+ ["unit"]=0
+ }
+ },
+ [9244]={
+ ["next_chapter"]=9245,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12930,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4138,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=109298,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11039,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=109298,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=11090,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=924,
+ ["unit"]=0
+ }
+ },
+ [9245]={
+ ["next_chapter"]=9246,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12941,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4141,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=110391,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11150,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=110391,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=11090,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=924,
+ ["unit"]=0
+ }
+ },
+ [9246]={
+ ["next_chapter"]=9247,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12953,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4145,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=111495,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11261,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=111495,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=11090,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=924,
+ ["unit"]=0
+ }
+ },
+ [9247]={
+ ["next_chapter"]=9248,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12964,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4149,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=112610,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11374,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=112610,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=11090,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=924,
+ ["unit"]=0
+ }
+ },
+ [9248]={
+ ["next_chapter"]=9249,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12976,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4152,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=113736,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11487,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=113736,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=11090,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=924,
+ ["unit"]=0
+ }
+ },
+ [9249]={
+ ["next_chapter"]=9250,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12988,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4156,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=114874,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11602,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=114874,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=11090,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=924,
+ ["unit"]=0
+ }
+ },
+ [9250]={
+ ["next_chapter"]=9251,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=13000,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4160,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=116022,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11718,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=116022,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=12250,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=925,
+ ["unit"]=0
+ }
+ },
+ [9251]={
+ ["next_chapter"]=9252,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13012,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4164,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=117183,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11835,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=117183,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=12250,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=925,
+ ["unit"]=0
+ }
+ },
+ [9252]={
+ ["next_chapter"]=9253,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13024,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4168,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=118354,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11954,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=118354,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=12250,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=925,
+ ["unit"]=0
+ }
+ },
+ [9253]={
+ ["next_chapter"]=9254,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13036,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4172,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=119538,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12073,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=119538,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=12250,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=925,
+ ["unit"]=0
+ }
+ },
+ [9254]={
+ ["next_chapter"]=9255,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13049,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4176,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=120733,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12194,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=120733,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=12250,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=925,
+ ["unit"]=0
+ }
+ },
+ [9255]={
+ ["next_chapter"]=9256,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13061,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4180,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=121941,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12316,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=121941,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=12250,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=925,
+ ["unit"]=0
+ }
+ },
+ [9256]={
+ ["next_chapter"]=9257,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13074,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4184,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=123160,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12439,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=123160,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=12250,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=925,
+ ["unit"]=0
+ }
+ },
+ [9257]={
+ ["next_chapter"]=9258,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13086,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4188,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=124392,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12564,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=124392,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=12250,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=925,
+ ["unit"]=0
+ }
+ },
+ [9258]={
+ ["next_chapter"]=9259,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13099,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4192,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=125636,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12689,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=125636,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=12250,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=925,
+ ["unit"]=0
+ }
+ },
+ [9259]={
+ ["next_chapter"]=9260,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13112,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4196,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=126892,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12816,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=126892,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=12250,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=925,
+ ["unit"]=0
+ }
+ },
+ [9260]={
+ ["next_chapter"]=9261,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=13125,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4200,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=128161,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12944,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=128161,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=13531,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=926,
+ ["unit"]=0
+ }
+ },
+ [9261]={
+ ["next_chapter"]=9262,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13138,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4204,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=129443,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13074,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=129443,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=13531,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=926,
+ ["unit"]=0
+ }
+ },
+ [9262]={
+ ["next_chapter"]=9263,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13151,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4208,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=130737,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13204,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=130737,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=13531,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=926,
+ ["unit"]=0
+ }
+ },
+ [9263]={
+ ["next_chapter"]=9264,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13164,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4213,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=132044,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13336,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=132044,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=13531,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=926,
+ ["unit"]=0
+ }
+ },
+ [9264]={
+ ["next_chapter"]=9265,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13178,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4217,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=133365,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13470,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=133365,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=13531,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=926,
+ ["unit"]=0
+ }
+ },
+ [9265]={
+ ["next_chapter"]=9266,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13191,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4221,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=134698,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13605,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=134698,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=13531,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=926,
+ ["unit"]=0
+ }
+ },
+ [9266]={
+ ["next_chapter"]=9267,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13205,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4225,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=136045,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13741,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=136045,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=13531,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=926,
+ ["unit"]=0
+ }
+ },
+ [9267]={
+ ["next_chapter"]=9268,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13218,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4230,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=137406,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13878,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=137406,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=13531,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=926,
+ ["unit"]=0
+ }
+ },
+ [9268]={
+ ["next_chapter"]=9269,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13232,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4234,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=138780,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14017,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=138780,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=13531,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=926,
+ ["unit"]=0
+ }
+ },
+ [9269]={
+ ["next_chapter"]=9270,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13246,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4239,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=140168,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14157,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=140168,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=13531,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=926,
+ ["unit"]=0
+ }
+ },
+ [9270]={
+ ["next_chapter"]=9271,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=13260,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4243,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=141569,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14299,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=141569,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=14947,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=927,
+ ["unit"]=0
+ }
+ },
+ [9271]={
+ ["next_chapter"]=9272,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13274,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4248,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=142985,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14441,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=142985,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=14947,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=927,
+ ["unit"]=0
+ }
+ },
+ [9272]={
+ ["next_chapter"]=9273,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13288,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4252,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=144415,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14586,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=144415,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=14947,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=927,
+ ["unit"]=0
+ }
+ },
+ [9273]={
+ ["next_chapter"]=9274,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13302,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4257,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=145859,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14732,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=145859,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=14947,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=927,
+ ["unit"]=0
+ }
+ },
+ [9274]={
+ ["next_chapter"]=9275,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13317,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4261,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=147318,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14879,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=147318,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=14947,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=927,
+ ["unit"]=0
+ }
+ },
+ [9275]={
+ ["next_chapter"]=9276,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13331,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4266,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=148791,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15028,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=148791,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=14947,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=927,
+ ["unit"]=0
+ }
+ },
+ [9276]={
+ ["next_chapter"]=9277,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13346,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4271,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=150279,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15178,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=150279,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=14947,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=927,
+ ["unit"]=0
+ }
+ },
+ [9277]={
+ ["next_chapter"]=9278,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13360,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4275,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=151782,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15330,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=151782,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=14947,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=927,
+ ["unit"]=0
+ }
+ },
+ [9278]={
+ ["next_chapter"]=9279,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13375,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4280,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=153299,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15483,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=153299,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=14947,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=927,
+ ["unit"]=0
+ }
+ },
+ [9279]={
+ ["next_chapter"]=9280,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13390,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4285,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=154832,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15638,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=154832,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=14947,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=927,
+ ["unit"]=0
+ }
+ },
+ [9280]={
+ ["next_chapter"]=9281,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=13405,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4290,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=156381,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15794,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=156381,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=16511,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=928,
+ ["unit"]=0
+ }
+ },
+ [9281]={
+ ["next_chapter"]=9282,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13420,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4294,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=157944,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15952,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=157944,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=16511,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=928,
+ ["unit"]=0
+ }
+ },
+ [9282]={
+ ["next_chapter"]=9283,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13435,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4299,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=159524,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16112,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=159524,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=16511,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=928,
+ ["unit"]=0
+ }
+ },
+ [9283]={
+ ["next_chapter"]=9284,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13451,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4304,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=161119,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16273,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=161119,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=16511,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=928,
+ ["unit"]=0
+ }
+ },
+ [9284]={
+ ["next_chapter"]=9285,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13466,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4309,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=162730,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16436,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=162730,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=16511,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=928,
+ ["unit"]=0
+ }
+ },
+ [9285]={
+ ["next_chapter"]=9286,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13482,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4314,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=164358,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16600,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=164358,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=16511,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=928,
+ ["unit"]=0
+ }
+ },
+ [9286]={
+ ["next_chapter"]=9287,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13497,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4319,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=166001,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16766,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=166001,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=16511,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=928,
+ ["unit"]=0
+ }
+ },
+ [9287]={
+ ["next_chapter"]=9288,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13513,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4324,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=167661,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16934,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=167661,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=16511,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=928,
+ ["unit"]=0
+ }
+ },
+ [9288]={
+ ["next_chapter"]=9289,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13529,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4329,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=169338,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17103,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=169338,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=16511,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=928,
+ ["unit"]=0
+ }
+ },
+ [9289]={
+ ["next_chapter"]=9290,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13545,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4334,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=171031,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17274,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=171031,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=16511,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=928,
+ ["unit"]=0
+ }
+ },
+ [9290]={
+ ["next_chapter"]=9291,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=13561,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4339,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=172742,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17447,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=172742,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=18238,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=929,
+ ["unit"]=0
+ }
+ },
+ [9291]={
+ ["next_chapter"]=9292,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13577,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4345,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=174469,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17621,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=174469,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=18238,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=929,
+ ["unit"]=0
+ }
+ },
+ [9292]={
+ ["next_chapter"]=9293,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13593,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4350,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=176214,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17798,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=176214,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=18238,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=929,
+ ["unit"]=0
+ }
+ },
+ [9293]={
+ ["next_chapter"]=9294,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13610,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4355,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=177976,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17976,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=177976,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=18238,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=929,
+ ["unit"]=0
+ }
+ },
+ [9294]={
+ ["next_chapter"]=9295,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13626,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4360,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=179756,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18155,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=179756,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=18238,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=929,
+ ["unit"]=0
+ }
+ },
+ [9295]={
+ ["next_chapter"]=9296,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13643,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4366,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=181553,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18337,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=181553,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=18238,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=929,
+ ["unit"]=0
+ }
+ },
+ [9296]={
+ ["next_chapter"]=9297,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13660,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4371,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=183369,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18520,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=183369,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=18238,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=929,
+ ["unit"]=0
+ }
+ },
+ [9297]={
+ ["next_chapter"]=9298,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13677,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4377,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=185202,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18705,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=185202,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=18238,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=929,
+ ["unit"]=0
+ }
+ },
+ [9298]={
+ ["next_chapter"]=9299,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13694,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4382,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=187054,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18892,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=187054,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=18238,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=929,
+ ["unit"]=0
+ }
+ },
+ [9299]={
+ ["next_chapter"]=9300,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13711,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4387,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=188925,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19081,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=188925,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=18238,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=929,
+ ["unit"]=0
+ }
+ },
+ [9300]={
+ ["next_chapter"]=9301,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=13728,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4393,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=190814,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19272,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=190814,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=20147,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=930,
+ ["unit"]=0
+ }
+ },
+ [9301]={
+ ["next_chapter"]=9302,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13745,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4399,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=192722,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19465,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=192722,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=20147,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=930,
+ ["unit"]=0
+ }
+ },
+ [9302]={
+ ["next_chapter"]=9303,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13763,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4404,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=194650,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19660,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=194650,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=20147,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=930,
+ ["unit"]=0
+ }
+ },
+ [9303]={
+ ["next_chapter"]=9304,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13780,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4410,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=196596,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19856,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=196596,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=20147,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=930,
+ ["unit"]=0
+ }
+ },
+ [9304]={
+ ["next_chapter"]=9305,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13798,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4415,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=198562,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20055,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=198562,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=20147,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=930,
+ ["unit"]=0
+ }
+ },
+ [9305]={
+ ["next_chapter"]=9306,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13816,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4421,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=200548,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20255,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=200548,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=20147,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=930,
+ ["unit"]=0
+ }
+ },
+ [9306]={
+ ["next_chapter"]=9307,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13834,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4427,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=202553,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20458,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=202553,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=20147,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=930,
+ ["unit"]=0
+ }
+ },
+ [9307]={
+ ["next_chapter"]=9308,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13852,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4433,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=204579,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20662,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=204579,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=20147,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=930,
+ ["unit"]=0
+ }
+ },
+ [9308]={
+ ["next_chapter"]=9309,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13870,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4438,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=206624,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20869,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=206624,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=20147,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=930,
+ ["unit"]=0
+ }
+ },
+ [9309]={
+ ["next_chapter"]=9310,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13888,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4444,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=208691,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21078,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=208691,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=20147,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=930,
+ ["unit"]=0
+ }
+ },
+ [9310]={
+ ["next_chapter"]=9311,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=13907,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4450,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=210778,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21289,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=210778,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=22254,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=931,
+ ["unit"]=0
+ }
+ },
+ [9311]={
+ ["next_chapter"]=9312,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13925,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4456,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=212885,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21501,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=212885,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=22254,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=931,
+ ["unit"]=0
+ }
+ },
+ [9312]={
+ ["next_chapter"]=9313,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13944,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4462,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=215014,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21716,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=215014,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=22254,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=931,
+ ["unit"]=0
+ }
+ },
+ [9313]={
+ ["next_chapter"]=9314,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13963,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4468,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=217164,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21934,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=217164,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=22254,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=931,
+ ["unit"]=0
+ }
+ },
+ [9314]={
+ ["next_chapter"]=9315,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13981,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4474,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=219336,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22153,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=219336,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=22254,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=931,
+ ["unit"]=0
+ }
+ },
+ [9315]={
+ ["next_chapter"]=9316,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14000,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4480,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=221529,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22374,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=221529,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=22254,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=931,
+ ["unit"]=0
+ }
+ },
+ [9316]={
+ ["next_chapter"]=9317,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14019,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4486,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=223745,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22598,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=223745,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=22254,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=931,
+ ["unit"]=0
+ }
+ },
+ [9317]={
+ ["next_chapter"]=9318,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14039,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4492,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=225982,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22824,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=225982,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=22254,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=931,
+ ["unit"]=0
+ }
+ },
+ [9318]={
+ ["next_chapter"]=9319,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14058,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4499,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=228242,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23052,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=228242,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=22254,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=931,
+ ["unit"]=0
+ }
+ },
+ [9319]={
+ ["next_chapter"]=9320,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14078,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4505,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=230524,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23283,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=230524,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=22254,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=931,
+ ["unit"]=0
+ }
+ },
+ [9320]={
+ ["next_chapter"]=9321,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=14097,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4511,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=232830,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23516,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=232830,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=24583,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=932,
+ ["unit"]=0
+ }
+ },
+ [9321]={
+ ["next_chapter"]=9322,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14117,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4517,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=235158,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23751,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=235158,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=24583,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=932,
+ ["unit"]=0
+ }
+ },
+ [9322]={
+ ["next_chapter"]=9323,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14137,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4524,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=237509,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23988,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=237509,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=24583,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=932,
+ ["unit"]=0
+ }
+ },
+ [9323]={
+ ["next_chapter"]=9324,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14157,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4530,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=239884,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24228,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=239884,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=24583,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=932,
+ ["unit"]=0
+ }
+ },
+ [9324]={
+ ["next_chapter"]=9325,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14177,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4537,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=242283,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24471,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=242283,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=24583,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=932,
+ ["unit"]=0
+ }
+ },
+ [9325]={
+ ["next_chapter"]=9326,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14197,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4543,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=244706,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24715,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=244706,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=24583,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=932,
+ ["unit"]=0
+ }
+ },
+ [9326]={
+ ["next_chapter"]=9327,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14217,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4550,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=247153,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24962,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=247153,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=24583,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=932,
+ ["unit"]=0
+ }
+ },
+ [9327]={
+ ["next_chapter"]=9328,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14238,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4556,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=249625,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25212,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=249625,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=24583,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=932,
+ ["unit"]=0
+ }
+ },
+ [9328]={
+ ["next_chapter"]=9329,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14258,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4563,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=252121,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25464,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=252121,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=24583,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=932,
+ ["unit"]=0
+ }
+ },
+ [9329]={
+ ["next_chapter"]=9330,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14279,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4569,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=254642,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25719,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=254642,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=24583,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=932,
+ ["unit"]=0
+ }
+ },
+ [9330]={
+ ["next_chapter"]=9331,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=14300,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4576,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=257189,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25976,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=257189,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=27155,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=933,
+ ["unit"]=0
+ }
+ },
+ [9331]={
+ ["next_chapter"]=9332,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14321,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4583,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=259761,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26236,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=259761,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=27155,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=933,
+ ["unit"]=0
+ }
+ },
+ [9332]={
+ ["next_chapter"]=9333,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14342,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4589,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=262358,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26498,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=262358,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=27155,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=933,
+ ["unit"]=0
+ }
+ },
+ [9333]={
+ ["next_chapter"]=9334,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14363,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4596,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=264982,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26763,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=264982,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=27155,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=933,
+ ["unit"]=0
+ }
+ },
+ [9334]={
+ ["next_chapter"]=9335,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14385,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4603,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=267632,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27031,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=267632,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=27155,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=933,
+ ["unit"]=0
+ }
+ },
+ [9335]={
+ ["next_chapter"]=9336,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14406,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4610,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=270308,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27301,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=270308,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=27155,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=933,
+ ["unit"]=0
+ }
+ },
+ [9336]={
+ ["next_chapter"]=9337,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14428,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4617,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=273011,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27574,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=273011,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=27155,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=933,
+ ["unit"]=0
+ }
+ },
+ [9337]={
+ ["next_chapter"]=9338,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14449,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4624,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=275741,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27850,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=275741,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=27155,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=933,
+ ["unit"]=0
+ }
+ },
+ [9338]={
+ ["next_chapter"]=9339,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14471,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4631,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=278498,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28128,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=278498,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=27155,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=933,
+ ["unit"]=0
+ }
+ },
+ [9339]={
+ ["next_chapter"]=9340,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14493,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4638,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=281283,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28410,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=281283,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=27155,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=933,
+ ["unit"]=0
+ }
+ },
+ [9340]={
+ ["next_chapter"]=9341,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=14515,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4645,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=284096,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28694,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=284096,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=29995,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=934,
+ ["unit"]=0
+ }
+ },
+ [9341]={
+ ["next_chapter"]=9342,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14538,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4652,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=286937,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28981,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=286937,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=29995,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=934,
+ ["unit"]=0
+ }
+ },
+ [9342]={
+ ["next_chapter"]=9343,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14560,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4659,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=289807,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29270,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=289807,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=29995,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=934,
+ ["unit"]=0
+ }
+ },
+ [9343]={
+ ["next_chapter"]=9344,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14583,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4666,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=292705,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29563,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=292705,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=29995,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=934,
+ ["unit"]=0
+ }
+ },
+ [9344]={
+ ["next_chapter"]=9345,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14605,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4674,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=295632,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29859,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=295632,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=29995,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=934,
+ ["unit"]=0
+ }
+ },
+ [9345]={
+ ["next_chapter"]=9346,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14628,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4681,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=298588,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30157,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=298588,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=29995,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=934,
+ ["unit"]=0
+ }
+ },
+ [9346]={
+ ["next_chapter"]=9347,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14651,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4688,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=301574,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30459,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=301574,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=29995,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=934,
+ ["unit"]=0
+ }
+ },
+ [9347]={
+ ["next_chapter"]=9348,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14674,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4696,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=304590,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30764,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=304590,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=29995,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=934,
+ ["unit"]=0
+ }
+ },
+ [9348]={
+ ["next_chapter"]=9349,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14697,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4703,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=307636,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31071,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=307636,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=29995,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=934,
+ ["unit"]=0
+ }
+ },
+ [9349]={
+ ["next_chapter"]=9350,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14721,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4711,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=310712,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31382,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=310712,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=29995,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=934,
+ ["unit"]=0
+ }
+ },
+ [9350]={
+ ["next_chapter"]=9351,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=14744,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4718,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=313819,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31696,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=313819,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=33134,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=935,
+ ["unit"]=0
+ }
+ },
+ [9351]={
+ ["next_chapter"]=9352,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14768,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4726,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=316957,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32013,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=316957,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=33134,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=935,
+ ["unit"]=0
+ }
+ },
+ [9352]={
+ ["next_chapter"]=9353,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14791,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4733,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=320127,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32333,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=320127,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=33134,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=935,
+ ["unit"]=0
+ }
+ },
+ [9353]={
+ ["next_chapter"]=9354,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14815,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4741,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=323328,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32656,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=323328,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=33134,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=935,
+ ["unit"]=0
+ }
+ },
+ [9354]={
+ ["next_chapter"]=9355,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14839,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4749,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=326561,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32983,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=326561,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=33134,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=935,
+ ["unit"]=0
+ }
+ },
+ [9355]={
+ ["next_chapter"]=9356,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14863,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4756,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=329827,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33313,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=329827,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=33134,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=935,
+ ["unit"]=0
+ }
+ },
+ [9356]={
+ ["next_chapter"]=9357,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14888,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4764,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=333125,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33646,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=333125,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=33134,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=935,
+ ["unit"]=0
+ }
+ },
+ [9357]={
+ ["next_chapter"]=9358,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14912,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4772,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=336456,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33982,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=336456,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=33134,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=935,
+ ["unit"]=0
+ }
+ },
+ [9358]={
+ ["next_chapter"]=9359,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14936,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4780,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=339821,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34322,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=339821,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=33134,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=935,
+ ["unit"]=0
+ }
+ },
+ [9359]={
+ ["next_chapter"]=9360,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14961,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4788,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=343219,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34665,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=343219,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=33134,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=935,
+ ["unit"]=0
+ }
+ },
+ [9360]={
+ ["next_chapter"]=9361,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=14986,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4796,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=346651,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35012,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=346651,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=36600,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=936,
+ ["unit"]=0
+ }
+ },
+ [9361]={
+ ["next_chapter"]=9362,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15011,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4803,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=350118,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35362,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=350118,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=36600,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=936,
+ ["unit"]=0
+ }
+ },
+ [9362]={
+ ["next_chapter"]=9363,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15036,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4812,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=353619,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35716,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=353619,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=36600,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=936,
+ ["unit"]=0
+ }
+ },
+ [9363]={
+ ["next_chapter"]=9364,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15061,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4820,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=357155,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36073,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=357155,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=36600,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=936,
+ ["unit"]=0
+ }
+ },
+ [9364]={
+ ["next_chapter"]=9365,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15087,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4828,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=360727,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36433,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=360727,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=36600,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=936,
+ ["unit"]=0
+ }
+ },
+ [9365]={
+ ["next_chapter"]=9366,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15112,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4836,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=364334,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36798,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=364334,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=36600,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=936,
+ ["unit"]=0
+ }
+ },
+ [9366]={
+ ["next_chapter"]=9367,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15138,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4844,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=367977,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37166,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=367977,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=36600,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=936,
+ ["unit"]=0
+ }
+ },
+ [9367]={
+ ["next_chapter"]=9368,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15164,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4852,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=371657,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37537,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=371657,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=36600,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=936,
+ ["unit"]=0
+ }
+ },
+ [9368]={
+ ["next_chapter"]=9369,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15190,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4861,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=375374,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37913,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=375374,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=36600,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=936,
+ ["unit"]=0
+ }
+ },
+ [9369]={
+ ["next_chapter"]=9370,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15216,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4869,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=379128,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=38292,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=379128,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=36600,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=936,
+ ["unit"]=0
+ }
+ },
+ [9370]={
+ ["next_chapter"]=9371,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=15242,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4877,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=382919,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=38675,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=382919,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=40429,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=937,
+ ["unit"]=0
+ }
+ },
+ [9371]={
+ ["next_chapter"]=9372,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15268,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4886,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=386748,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39062,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=386748,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=40429,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=937,
+ ["unit"]=0
+ }
+ },
+ [9372]={
+ ["next_chapter"]=9373,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15295,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4894,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=390616,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39452,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=390616,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=40429,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=937,
+ ["unit"]=0
+ }
+ },
+ [9373]={
+ ["next_chapter"]=9374,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15321,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4903,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=394522,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39847,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=394522,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=40429,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=937,
+ ["unit"]=0
+ }
+ },
+ [9374]={
+ ["next_chapter"]=9375,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15348,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4911,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=398467,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=40245,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=398467,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=40429,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=937,
+ ["unit"]=0
+ }
+ },
+ [9375]={
+ ["next_chapter"]=9376,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15375,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4920,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=402452,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=40648,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=402452,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=40429,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=937,
+ ["unit"]=0
+ }
+ },
+ [9376]={
+ ["next_chapter"]=9377,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15402,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4929,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=406476,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41054,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=406476,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=40429,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=937,
+ ["unit"]=0
+ }
+ },
+ [9377]={
+ ["next_chapter"]=9378,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15429,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4937,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=410541,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41465,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=410541,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=40429,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=937,
+ ["unit"]=0
+ }
+ },
+ [9378]={
+ ["next_chapter"]=9379,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15457,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4946,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=414646,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41879,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=414646,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=40429,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=937,
+ ["unit"]=0
+ }
+ },
+ [9379]={
+ ["next_chapter"]=9380,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15484,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4955,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=418793,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=42298,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=418793,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=40429,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=937,
+ ["unit"]=0
+ }
+ },
+ [9380]={
+ ["next_chapter"]=9381,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=15512,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4964,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=422981,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=42721,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=422981,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=44659,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=938,
+ ["unit"]=0
+ }
+ },
+ [9381]={
+ ["next_chapter"]=9382,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15540,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4973,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=427210,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=43148,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=427210,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=44659,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=938,
+ ["unit"]=0
+ }
+ },
+ [9382]={
+ ["next_chapter"]=9383,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15568,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4982,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=431483,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=43580,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=431483,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=44659,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=938,
+ ["unit"]=0
+ }
+ },
+ [9383]={
+ ["next_chapter"]=9384,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15596,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=4991,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=435797,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=44016,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=435797,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=44659,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=938,
+ ["unit"]=0
+ }
+ },
+ [9384]={
+ ["next_chapter"]=9385,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15624,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5000,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=440155,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=44456,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=440155,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=44659,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=938,
+ ["unit"]=0
+ }
+ },
+ [9385]={
+ ["next_chapter"]=9386,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15652,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5009,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=444557,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=44900,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=444557,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=44659,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=938,
+ ["unit"]=0
+ }
+ },
+ [9386]={
+ ["next_chapter"]=9387,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15681,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5018,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=449002,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=45349,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=449002,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=44659,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=938,
+ ["unit"]=0
+ }
+ },
+ [9387]={
+ ["next_chapter"]=9388,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15709,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5027,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=453492,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=45803,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=453492,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=44659,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=938,
+ ["unit"]=0
+ }
+ },
+ [9388]={
+ ["next_chapter"]=9389,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15738,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5036,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=458027,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=46261,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=458027,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=44659,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=938,
+ ["unit"]=0
+ }
+ },
+ [9389]={
+ ["next_chapter"]=9390,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15767,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5046,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=462608,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=46723,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=462608,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=44659,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=938,
+ ["unit"]=0
+ }
+ },
+ [9390]={
+ ["next_chapter"]=9391,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=15796,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5055,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=467234,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=47191,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=467234,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=49332,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=939,
+ ["unit"]=0
+ }
+ },
+ [9391]={
+ ["next_chapter"]=9392,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15826,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5064,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=471906,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=47663,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=471906,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=49332,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=939,
+ ["unit"]=0
+ }
+ },
+ [9392]={
+ ["next_chapter"]=9393,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15855,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5074,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=476625,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=48139,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=476625,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=49332,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=939,
+ ["unit"]=0
+ }
+ },
+ [9393]={
+ ["next_chapter"]=9394,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15885,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5083,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=481391,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=48621,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=481391,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=49332,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=939,
+ ["unit"]=0
+ }
+ },
+ [9394]={
+ ["next_chapter"]=9395,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15914,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5093,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=486205,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=49107,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=486205,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=49332,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=939,
+ ["unit"]=0
+ }
+ },
+ [9395]={
+ ["next_chapter"]=9396,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15944,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5102,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=491067,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=49598,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=491067,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=49332,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=939,
+ ["unit"]=0
+ }
+ },
+ [9396]={
+ ["next_chapter"]=9397,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15974,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5112,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=495978,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=50094,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=495978,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=49332,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=939,
+ ["unit"]=0
+ }
+ },
+ [9397]={
+ ["next_chapter"]=9398,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16005,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5121,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=500938,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=50595,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=500938,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=49332,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=939,
+ ["unit"]=0
+ }
+ },
+ [9398]={
+ ["next_chapter"]=9399,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16035,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5131,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=505947,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=51101,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=505947,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=49332,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=939,
+ ["unit"]=0
+ }
+ },
+ [9399]={
+ ["next_chapter"]=9400,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16065,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5141,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=511007,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=51612,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=511007,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=49332,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=939,
+ ["unit"]=0
+ }
+ },
+ [9400]={
+ ["next_chapter"]=9401,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=16096,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5151,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=516117,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=52128,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=516117,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=54493,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=940,
+ ["unit"]=0
+ }
+ },
+ [9401]={
+ ["next_chapter"]=9402,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16127,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5161,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=521278,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=52649,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=521278,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=54493,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=940,
+ ["unit"]=0
+ }
+ },
+ [9402]={
+ ["next_chapter"]=9403,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16158,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5170,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=526491,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=53176,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=526491,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=54493,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=940,
+ ["unit"]=0
+ }
+ },
+ [9403]={
+ ["next_chapter"]=9404,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16189,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5180,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=531756,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=53707,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=531756,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=54493,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=940,
+ ["unit"]=0
+ }
+ },
+ [9404]={
+ ["next_chapter"]=9405,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16220,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5190,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=537073,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=54244,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=537073,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=54493,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=940,
+ ["unit"]=0
+ }
+ },
+ [9405]={
+ ["next_chapter"]=9406,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16252,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5200,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=542444,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=54787,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=542444,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=54493,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=940,
+ ["unit"]=0
+ }
+ },
+ [9406]={
+ ["next_chapter"]=9407,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16283,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5211,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=547868,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=55335,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=547868,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=54493,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=940,
+ ["unit"]=0
+ }
+ },
+ [9407]={
+ ["next_chapter"]=9408,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16315,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5221,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=553347,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=55888,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=553347,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=54493,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=940,
+ ["unit"]=0
+ }
+ },
+ [9408]={
+ ["next_chapter"]=9409,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16347,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5231,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=558880,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=56447,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=558880,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=54493,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=940,
+ ["unit"]=0
+ }
+ },
+ [9409]={
+ ["next_chapter"]=9410,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16379,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5241,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=564469,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=57011,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=564469,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=54493,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=940,
+ ["unit"]=0
+ }
+ },
+ [9410]={
+ ["next_chapter"]=9411,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=16411,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5252,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=570114,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=57582,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=570114,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=60194,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=941,
+ ["unit"]=0
+ }
+ },
+ [9411]={
+ ["next_chapter"]=9412,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16443,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5262,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=575815,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=58157,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=575815,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=60194,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=941,
+ ["unit"]=0
+ }
+ },
+ [9412]={
+ ["next_chapter"]=9413,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16476,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5272,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=581573,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=58739,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=581573,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=60194,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=941,
+ ["unit"]=0
+ }
+ },
+ [9413]={
+ ["next_chapter"]=9414,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16508,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5283,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=587389,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=59326,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=587389,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=60194,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=941,
+ ["unit"]=0
+ }
+ },
+ [9414]={
+ ["next_chapter"]=9415,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16541,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5293,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=593263,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=59920,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=593263,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=60194,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=941,
+ ["unit"]=0
+ }
+ },
+ [9415]={
+ ["next_chapter"]=9416,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16574,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5304,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=599196,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=60519,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=599196,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=60194,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=941,
+ ["unit"]=0
+ }
+ },
+ [9416]={
+ ["next_chapter"]=9417,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16607,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5314,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=605187,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=61124,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=605187,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=60194,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=941,
+ ["unit"]=0
+ }
+ },
+ [9417]={
+ ["next_chapter"]=9418,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16641,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5325,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=611239,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=61735,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=611239,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=60194,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=941,
+ ["unit"]=0
+ }
+ },
+ [9418]={
+ ["next_chapter"]=9419,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16674,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5336,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=617352,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=62353,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=617352,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=60194,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=941,
+ ["unit"]=0
+ }
+ },
+ [9419]={
+ ["next_chapter"]=9420,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16708,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5347,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=623525,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=62976,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=623525,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=60194,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=941,
+ ["unit"]=0
+ }
+ },
+ [9420]={
+ ["next_chapter"]=9421,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=16742,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5357,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=629761,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=63606,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=629761,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=66491,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=942,
+ ["unit"]=0
+ }
+ },
+ [9421]={
+ ["next_chapter"]=9422,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16776,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5368,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=636058,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=64242,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=636058,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=66491,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=942,
+ ["unit"]=0
+ }
+ },
+ [9422]={
+ ["next_chapter"]=9423,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16810,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5379,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=642419,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=64884,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=642419,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=66491,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=942,
+ ["unit"]=0
+ }
+ },
+ [9423]={
+ ["next_chapter"]=9424,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16844,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5390,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=648843,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=65533,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=648843,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=66491,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=942,
+ ["unit"]=0
+ }
+ },
+ [9424]={
+ ["next_chapter"]=9425,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16878,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5401,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=655331,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=66188,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=655331,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=66491,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=942,
+ ["unit"]=0
+ }
+ },
+ [9425]={
+ ["next_chapter"]=9426,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16913,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5412,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=661885,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=66850,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=661885,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=66491,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=942,
+ ["unit"]=0
+ }
+ },
+ [9426]={
+ ["next_chapter"]=9427,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16948,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5423,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=668503,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=67519,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=668503,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=66491,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=942,
+ ["unit"]=0
+ }
+ },
+ [9427]={
+ ["next_chapter"]=9428,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16983,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5434,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=675188,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=68194,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=675188,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=66491,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=942,
+ ["unit"]=0
+ }
+ },
+ [9428]={
+ ["next_chapter"]=9429,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17018,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5446,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=681940,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=68876,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=681940,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=66491,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=942,
+ ["unit"]=0
+ }
+ },
+ [9429]={
+ ["next_chapter"]=9430,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17053,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5457,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=688760,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=69565,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=688760,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=66491,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=942,
+ ["unit"]=0
+ }
+ },
+ [9430]={
+ ["next_chapter"]=9431,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=17088,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5468,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=695647,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=70260,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=695647,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=73448,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=943,
+ ["unit"]=0
+ }
+ },
+ [9431]={
+ ["next_chapter"]=9432,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17124,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5480,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=702604,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=70963,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=702604,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=73448,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=943,
+ ["unit"]=0
+ }
+ },
+ [9432]={
+ ["next_chapter"]=9433,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17160,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5491,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=709630,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=71673,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=709630,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=73448,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=943,
+ ["unit"]=0
+ }
+ },
+ [9433]={
+ ["next_chapter"]=9434,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17196,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5503,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=716726,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=72389,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=716726,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=73448,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=943,
+ ["unit"]=0
+ }
+ },
+ [9434]={
+ ["next_chapter"]=9435,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17232,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5514,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=723893,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=73113,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=723893,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=73448,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=943,
+ ["unit"]=0
+ }
+ },
+ [9435]={
+ ["next_chapter"]=9436,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17268,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5526,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=731132,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=73844,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=731132,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=73448,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=943,
+ ["unit"]=0
+ }
+ },
+ [9436]={
+ ["next_chapter"]=9437,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17304,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5537,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=738444,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=74583,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=738444,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=73448,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=943,
+ ["unit"]=0
+ }
+ },
+ [9437]={
+ ["next_chapter"]=9438,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17341,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5549,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=745828,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=75329,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=745828,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=73448,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=943,
+ ["unit"]=0
+ }
+ },
+ [9438]={
+ ["next_chapter"]=9439,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17378,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5561,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=753286,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=76082,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=753286,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=73448,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=943,
+ ["unit"]=0
+ }
+ },
+ [9439]={
+ ["next_chapter"]=9440,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17415,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5573,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=760819,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=76843,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=760819,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=73448,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=943,
+ ["unit"]=0
+ }
+ },
+ [9440]={
+ ["next_chapter"]=9441,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=17452,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5585,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=768427,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=77611,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=768427,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=81132,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=944,
+ ["unit"]=0
+ }
+ },
+ [9441]={
+ ["next_chapter"]=9442,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17489,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5596,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=776112,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=78387,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=776112,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=81132,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=944,
+ ["unit"]=0
+ }
+ },
+ [9442]={
+ ["next_chapter"]=9443,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17526,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5608,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=783873,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=79171,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=783873,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=81132,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=944,
+ ["unit"]=0
+ }
+ },
+ [9443]={
+ ["next_chapter"]=9444,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17564,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5620,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=791712,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=79963,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=791712,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=81132,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=944,
+ ["unit"]=0
+ }
+ },
+ [9444]={
+ ["next_chapter"]=9445,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17602,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5633,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=799629,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=80763,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=799629,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=81132,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=944,
+ ["unit"]=0
+ }
+ },
+ [9445]={
+ ["next_chapter"]=9446,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17640,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5645,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=807625,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=81570,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=807625,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=81132,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=944,
+ ["unit"]=0
+ }
+ },
+ [9446]={
+ ["next_chapter"]=9447,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17678,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5657,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=815701,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=82386,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=815701,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=81132,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=944,
+ ["unit"]=0
+ }
+ },
+ [9447]={
+ ["next_chapter"]=9448,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17716,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5669,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=823858,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=83210,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=823858,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=81132,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=944,
+ ["unit"]=0
+ }
+ },
+ [9448]={
+ ["next_chapter"]=9449,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17755,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5681,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=832097,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=84042,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=832097,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=81132,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=944,
+ ["unit"]=0
+ }
+ },
+ [9449]={
+ ["next_chapter"]=9450,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17793,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5694,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=840418,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=84882,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=840418,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=81132,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=944,
+ ["unit"]=0
+ }
+ },
+ [9450]={
+ ["next_chapter"]=9451,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=17832,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5706,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=848822,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=85731,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=848822,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=89620,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=945,
+ ["unit"]=0
+ }
+ },
+ [9451]={
+ ["next_chapter"]=9452,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17871,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5719,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=857310,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=86588,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=857310,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=89620,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=945,
+ ["unit"]=0
+ }
+ },
+ [9452]={
+ ["next_chapter"]=9453,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17910,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5731,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=865883,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=87454,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=865883,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=89620,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=945,
+ ["unit"]=0
+ }
+ },
+ [9453]={
+ ["next_chapter"]=9454,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17949,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5744,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=874542,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=88329,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=874542,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=89620,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=945,
+ ["unit"]=0
+ }
+ },
+ [9454]={
+ ["next_chapter"]=9455,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17989,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5756,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=883288,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=89212,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=883288,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=89620,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=945,
+ ["unit"]=0
+ }
+ },
+ [9455]={
+ ["next_chapter"]=9456,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18029,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5769,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=892120,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=90104,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=892120,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=89620,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=945,
+ ["unit"]=0
+ }
+ },
+ [9456]={
+ ["next_chapter"]=9457,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18068,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5782,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=901042,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=91005,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=901042,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=89620,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=945,
+ ["unit"]=0
+ }
+ },
+ [9457]={
+ ["next_chapter"]=9458,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18108,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5795,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=910052,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=91915,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=910052,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=89620,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=945,
+ ["unit"]=0
+ }
+ },
+ [9458]={
+ ["next_chapter"]=9459,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18149,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5808,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=919153,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=92834,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=919153,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=89620,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=945,
+ ["unit"]=0
+ }
+ },
+ [9459]={
+ ["next_chapter"]=9460,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18189,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5820,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=928344,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=93763,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=928344,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=89620,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=945,
+ ["unit"]=0
+ }
+ },
+ [9460]={
+ ["next_chapter"]=9461,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=18230,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5833,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=937628,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=94700,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=937628,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=98997,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=946,
+ ["unit"]=0
+ }
+ },
+ [9461]={
+ ["next_chapter"]=9462,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18270,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5846,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=947004,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=95647,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=947004,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=98997,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=946,
+ ["unit"]=0
+ }
+ },
+ [9462]={
+ ["next_chapter"]=9463,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18311,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5860,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=956474,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=96604,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=956474,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=98997,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=946,
+ ["unit"]=0
+ }
+ },
+ [9463]={
+ ["next_chapter"]=9464,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18352,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5873,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=966039,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=97570,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=966039,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=98997,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=946,
+ ["unit"]=0
+ }
+ },
+ [9464]={
+ ["next_chapter"]=9465,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18393,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5886,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=975699,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=98546,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=975699,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=98997,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=946,
+ ["unit"]=0
+ }
+ },
+ [9465]={
+ ["next_chapter"]=9466,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18435,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5899,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=985456,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=99531,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=985456,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=98997,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=946,
+ ["unit"]=0
+ }
+ },
+ [9466]={
+ ["next_chapter"]=9467,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18476,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5912,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=995311,
+ ["unit"]=12
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=100526,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=995311,
+ ["unit"]=12
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=98997,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=946,
+ ["unit"]=0
+ }
+ },
+ [9467]={
+ ["next_chapter"]=9468,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18518,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5926,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1005,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=101532,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1005,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=98997,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=946,
+ ["unit"]=0
+ }
+ },
+ [9468]={
+ ["next_chapter"]=9469,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18560,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5939,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1015,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=102547,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1015,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=98997,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=946,
+ ["unit"]=0
+ }
+ },
+ [9469]={
+ ["next_chapter"]=9470,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18602,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5953,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1025,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=103572,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1025,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=98997,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=946,
+ ["unit"]=0
+ }
+ },
+ [9470]={
+ ["next_chapter"]=9471,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=18645,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5966,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1036,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=104608,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1036,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=109354,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=947,
+ ["unit"]=0
+ }
+ },
+ [9471]={
+ ["next_chapter"]=9472,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18687,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5980,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1046,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=105654,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1046,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=109354,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=947,
+ ["unit"]=0
+ }
+ },
+ [9472]={
+ ["next_chapter"]=9473,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18730,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=5994,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1057,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=106711,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1057,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=109354,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=947,
+ ["unit"]=0
+ }
+ },
+ [9473]={
+ ["next_chapter"]=9474,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18773,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6007,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1067,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=107778,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1067,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=109354,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=947,
+ ["unit"]=0
+ }
+ },
+ [9474]={
+ ["next_chapter"]=9475,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18816,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6021,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1078,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=108856,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1078,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=109354,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=947,
+ ["unit"]=0
+ }
+ },
+ [9475]={
+ ["next_chapter"]=9476,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18859,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6035,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1089,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=109944,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1089,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=109354,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=947,
+ ["unit"]=0
+ }
+ },
+ [9476]={
+ ["next_chapter"]=9477,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18902,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6049,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1099,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=111044,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1099,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=109354,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=947,
+ ["unit"]=0
+ }
+ },
+ [9477]={
+ ["next_chapter"]=9478,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18946,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6063,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1110,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=112154,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1110,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=109354,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=947,
+ ["unit"]=0
+ }
+ },
+ [9478]={
+ ["next_chapter"]=9479,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18990,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6077,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1122,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=113276,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1122,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=109354,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=947,
+ ["unit"]=0
+ }
+ },
+ [9479]={
+ ["next_chapter"]=9480,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19034,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6091,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1133,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=114408,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1133,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=109354,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=947,
+ ["unit"]=0
+ }
+ },
+ [9480]={
+ ["next_chapter"]=9481,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=19078,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6105,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1144,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=115552,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1144,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=120795,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=948,
+ ["unit"]=0
+ }
+ },
+ [9481]={
+ ["next_chapter"]=9482,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19122,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6119,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1156,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=116708,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1156,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=120795,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=948,
+ ["unit"]=0
+ }
+ },
+ [9482]={
+ ["next_chapter"]=9483,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19167,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6133,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1167,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=117875,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1167,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=120795,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=948,
+ ["unit"]=0
+ }
+ },
+ [9483]={
+ ["next_chapter"]=9484,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19211,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6148,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1179,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=119054,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1179,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=120795,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=948,
+ ["unit"]=0
+ }
+ },
+ [9484]={
+ ["next_chapter"]=9485,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19256,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6162,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1191,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=120244,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1191,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=120795,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=948,
+ ["unit"]=0
+ }
+ },
+ [9485]={
+ ["next_chapter"]=9486,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19301,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6176,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1202,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=121447,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1202,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=120795,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=948,
+ ["unit"]=0
+ }
+ },
+ [9486]={
+ ["next_chapter"]=9487,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19347,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6191,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1214,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=122661,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1214,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=120795,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=948,
+ ["unit"]=0
+ }
+ },
+ [9487]={
+ ["next_chapter"]=9488,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19392,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6205,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1227,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=123888,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1227,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=120795,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=948,
+ ["unit"]=0
+ }
+ },
+ [9488]={
+ ["next_chapter"]=9489,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19438,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6220,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1239,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=125127,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1239,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=120795,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=948,
+ ["unit"]=0
+ }
+ },
+ [9489]={
+ ["next_chapter"]=9490,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19484,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6235,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1251,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=126378,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1251,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=120795,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=948,
+ ["unit"]=0
+ }
+ },
+ [9490]={
+ ["next_chapter"]=9491,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=19530,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6249,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1264,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=127642,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1264,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=133433,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=949,
+ ["unit"]=0
+ }
+ },
+ [9491]={
+ ["next_chapter"]=9492,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19576,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6264,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1276,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=128918,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1276,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=133433,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=949,
+ ["unit"]=0
+ }
+ },
+ [9492]={
+ ["next_chapter"]=9493,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19622,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6279,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1289,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=130207,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1289,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=133433,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=949,
+ ["unit"]=0
+ }
+ },
+ [9493]={
+ ["next_chapter"]=9494,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19669,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6294,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1302,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=131509,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1302,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=133433,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=949,
+ ["unit"]=0
+ }
+ },
+ [9494]={
+ ["next_chapter"]=9495,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19715,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6309,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1315,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=132825,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1315,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=133433,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=949,
+ ["unit"]=0
+ }
+ },
+ [9495]={
+ ["next_chapter"]=9496,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19762,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6324,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1328,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=134153,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1328,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=133433,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=949,
+ ["unit"]=0
+ }
+ },
+ [9496]={
+ ["next_chapter"]=9497,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19810,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6339,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1342,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=135494,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1342,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=133433,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=949,
+ ["unit"]=0
+ }
+ },
+ [9497]={
+ ["next_chapter"]=9498,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19857,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6354,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1355,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=136849,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1355,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=133433,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=949,
+ ["unit"]=0
+ }
+ },
+ [9498]={
+ ["next_chapter"]=9499,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19904,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6369,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1368,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=138218,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1368,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=133433,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=949,
+ ["unit"]=0
+ }
+ },
+ [9499]={
+ ["next_chapter"]=9500,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19952,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6385,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1382,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=139600,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1382,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=133433,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=949,
+ ["unit"]=0
+ }
+ },
+ [9500]={
+ ["next_chapter"]=9501,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=20000,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6600,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1396,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=140996,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1396,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=147393,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=950,
+ ["unit"]=0
+ }
+ },
+ [9501]={
+ ["next_chapter"]=9502,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20000,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6600,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1410,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=142406,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1410,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=147393,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=950,
+ ["unit"]=0
+ }
+ },
+ [9502]={
+ ["next_chapter"]=9503,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20000,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6600,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1424,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=143830,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1424,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=147393,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=950,
+ ["unit"]=0
+ }
+ },
+ [9503]={
+ ["next_chapter"]=9504,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20000,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6600,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1438,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=145268,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1438,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=147393,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=950,
+ ["unit"]=0
+ }
+ },
+ [9504]={
+ ["next_chapter"]=9505,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20000,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6600,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1453,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=146721,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1453,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=147393,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=950,
+ ["unit"]=0
+ }
+ },
+ [9505]={
+ ["next_chapter"]=9506,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20000,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6600,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1467,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=148188,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1467,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=147393,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=950,
+ ["unit"]=0
+ }
+ },
+ [9506]={
+ ["next_chapter"]=9507,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20000,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6600,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1482,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=149670,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1482,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=147393,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=950,
+ ["unit"]=0
+ }
+ },
+ [9507]={
+ ["next_chapter"]=9508,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20000,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6600,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1497,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=151167,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1497,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=147393,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=950,
+ ["unit"]=0
+ }
+ },
+ [9508]={
+ ["next_chapter"]=9509,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20000,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6600,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1512,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=152678,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1512,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=147393,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=950,
+ ["unit"]=0
+ }
+ },
+ [9509]={
+ ["next_chapter"]=9510,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20000,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6600,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1527,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=154205,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1527,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=147393,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=950,
+ ["unit"]=0
+ }
+ },
+ [9510]={
+ ["next_chapter"]=9511,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=20000,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6600,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1542,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=155747,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1542,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=162813,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=951,
+ ["unit"]=0
+ }
+ },
+ [9511]={
+ ["next_chapter"]=9512,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20000,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6600,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1557,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=157305,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1557,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=162813,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=951,
+ ["unit"]=0
+ }
+ },
+ [9512]={
+ ["next_chapter"]=9513,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20000,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6600,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1573,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=158878,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1573,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=162813,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=951,
+ ["unit"]=0
+ }
+ },
+ [9513]={
+ ["next_chapter"]=9514,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20000,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6600,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1589,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=160467,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1589,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=162813,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=951,
+ ["unit"]=0
+ }
+ },
+ [9514]={
+ ["next_chapter"]=9515,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20000,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6600,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1605,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=162071,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1605,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=162813,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=951,
+ ["unit"]=0
+ }
+ },
+ [9515]={
+ ["next_chapter"]=9516,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20000,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6600,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1621,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=163692,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1621,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=162813,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=951,
+ ["unit"]=0
+ }
+ },
+ [9516]={
+ ["next_chapter"]=9517,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20001,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6600,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1637,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=165329,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1637,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=162813,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=951,
+ ["unit"]=0
+ }
+ },
+ [9517]={
+ ["next_chapter"]=9518,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20001,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6600,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1653,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=166982,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1653,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=162813,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=951,
+ ["unit"]=0
+ }
+ },
+ [9518]={
+ ["next_chapter"]=9519,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20001,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6600,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1670,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=168652,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1670,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=162813,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=951,
+ ["unit"]=0
+ }
+ },
+ [9519]={
+ ["next_chapter"]=9520,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20001,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6600,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1687,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=170338,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1687,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=162813,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=951,
+ ["unit"]=0
+ }
+ },
+ [9520]={
+ ["next_chapter"]=9521,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=20001,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6600,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1703,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=172042,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1703,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=179847,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=952,
+ ["unit"]=0
+ }
+ },
+ [9521]={
+ ["next_chapter"]=9522,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20001,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6600,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1720,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=173762,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1720,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=179847,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=952,
+ ["unit"]=0
+ }
+ },
+ [9522]={
+ ["next_chapter"]=9523,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20001,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6600,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1738,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=175500,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1738,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=179847,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=952,
+ ["unit"]=0
+ }
+ },
+ [9523]={
+ ["next_chapter"]=9524,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20002,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6601,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1755,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=177255,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1755,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=179847,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=952,
+ ["unit"]=0
+ }
+ },
+ [9524]={
+ ["next_chapter"]=9525,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20002,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6601,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1773,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=179027,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1773,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=179847,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=952,
+ ["unit"]=0
+ }
+ },
+ [9525]={
+ ["next_chapter"]=9526,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20002,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6601,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1790,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=180818,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1790,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=179847,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=952,
+ ["unit"]=0
+ }
+ },
+ [9526]={
+ ["next_chapter"]=9527,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20002,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6601,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1808,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=182626,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1808,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=179847,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=952,
+ ["unit"]=0
+ }
+ },
+ [9527]={
+ ["next_chapter"]=9528,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20003,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6601,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1826,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=184452,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1826,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=179847,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=952,
+ ["unit"]=0
+ }
+ },
+ [9528]={
+ ["next_chapter"]=9529,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20003,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6601,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1845,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=186297,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1845,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=179847,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=952,
+ ["unit"]=0
+ }
+ },
+ [9529]={
+ ["next_chapter"]=9530,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20003,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6601,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1863,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=188160,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1863,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=179847,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=952,
+ ["unit"]=0
+ }
+ },
+ [9530]={
+ ["next_chapter"]=9531,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=20003,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6601,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1882,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=190041,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1882,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=198663,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=953,
+ ["unit"]=0
+ }
+ },
+ [9531]={
+ ["next_chapter"]=9532,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20004,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6601,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1900,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=191942,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1900,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=198663,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=953,
+ ["unit"]=0
+ }
+ },
+ [9532]={
+ ["next_chapter"]=9533,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20004,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6601,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1919,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=193861,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1919,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=198663,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=953,
+ ["unit"]=0
+ }
+ },
+ [9533]={
+ ["next_chapter"]=9534,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20005,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6602,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1939,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=195800,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1939,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=198663,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=953,
+ ["unit"]=0
+ }
+ },
+ [9534]={
+ ["next_chapter"]=9535,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20005,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6602,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1958,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=197758,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1958,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=198663,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=953,
+ ["unit"]=0
+ }
+ },
+ [9535]={
+ ["next_chapter"]=9536,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20005,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6602,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1978,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=199735,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1978,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=198663,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=953,
+ ["unit"]=0
+ }
+ },
+ [9536]={
+ ["next_chapter"]=9537,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20006,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6602,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1997,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=201733,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=1997,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=198663,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=953,
+ ["unit"]=0
+ }
+ },
+ [9537]={
+ ["next_chapter"]=9538,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20006,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6602,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2017,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=203750,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=2017,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=198663,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=953,
+ ["unit"]=0
+ }
+ },
+ [9538]={
+ ["next_chapter"]=9539,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20007,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6602,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2037,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=205787,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=2037,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=198663,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=953,
+ ["unit"]=0
+ }
+ },
+ [9539]={
+ ["next_chapter"]=9540,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20008,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6603,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2058,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=207845,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=2058,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=198663,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=953,
+ ["unit"]=0
+ }
+ },
+ [9540]={
+ ["next_chapter"]=9541,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=20008,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6603,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2078,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=209924,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=2078,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=219447,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=954,
+ ["unit"]=0
+ }
+ },
+ [9541]={
+ ["next_chapter"]=9542,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20009,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6603,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2099,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=212023,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=2099,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=219447,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=954,
+ ["unit"]=0
+ }
+ },
+ [9542]={
+ ["next_chapter"]=9543,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20009,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6603,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2120,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=214143,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=2120,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=219447,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=954,
+ ["unit"]=0
+ }
+ },
+ [9543]={
+ ["next_chapter"]=9544,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20010,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6603,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2141,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=216285,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=2141,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=219447,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=954,
+ ["unit"]=0
+ }
+ },
+ [9544]={
+ ["next_chapter"]=9545,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20011,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6604,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2163,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=218448,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=2163,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=219447,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=954,
+ ["unit"]=0
+ }
+ },
+ [9545]={
+ ["next_chapter"]=9546,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20012,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6604,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2184,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=220632,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=2184,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=219447,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=954,
+ ["unit"]=0
+ }
+ },
+ [9546]={
+ ["next_chapter"]=9547,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20012,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6604,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2206,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=222838,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=2206,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=219447,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=954,
+ ["unit"]=0
+ }
+ },
+ [9547]={
+ ["next_chapter"]=9548,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20013,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6604,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2228,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=225067,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=2228,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=219447,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=954,
+ ["unit"]=0
+ }
+ },
+ [9548]={
+ ["next_chapter"]=9549,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20014,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6605,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2251,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=227317,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=2251,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=219447,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=954,
+ ["unit"]=0
+ }
+ },
+ [9549]={
+ ["next_chapter"]=9550,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20015,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6605,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2273,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=229591,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=2273,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=219447,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=954,
+ ["unit"]=0
+ }
+ },
+ [9550]={
+ ["next_chapter"]=9551,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=20016,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6605,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2296,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=231886,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=2296,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=242406,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=955,
+ ["unit"]=0
+ }
+ },
+ [9551]={
+ ["next_chapter"]=9552,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20017,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6606,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2319,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=234205,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=2319,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=242406,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=955,
+ ["unit"]=0
+ }
+ },
+ [9552]={
+ ["next_chapter"]=9553,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20018,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6606,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2342,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=236547,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=2342,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=242406,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=955,
+ ["unit"]=0
+ }
+ },
+ [9553]={
+ ["next_chapter"]=9554,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20019,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6606,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2365,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=238913,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=2365,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=242406,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=955,
+ ["unit"]=0
+ }
+ },
+ [9554]={
+ ["next_chapter"]=9555,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20020,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6607,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2389,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=241302,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=2389,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=242406,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=955,
+ ["unit"]=0
+ }
+ },
+ [9555]={
+ ["next_chapter"]=9556,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20021,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6607,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2413,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=243715,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=2413,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=242406,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=955,
+ ["unit"]=0
+ }
+ },
+ [9556]={
+ ["next_chapter"]=9557,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20022,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6607,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2437,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=246152,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=2437,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=242406,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=955,
+ ["unit"]=0
+ }
+ },
+ [9557]={
+ ["next_chapter"]=9558,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20024,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6608,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2462,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=248614,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=2462,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=242406,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=955,
+ ["unit"]=0
+ }
+ },
+ [9558]={
+ ["next_chapter"]=9559,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20025,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6608,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2486,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=251100,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=2486,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=242406,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=955,
+ ["unit"]=0
+ }
+ },
+ [9559]={
+ ["next_chapter"]=9560,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20026,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6609,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2511,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=253611,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=2511,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=242406,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=955,
+ ["unit"]=0
+ }
+ },
+ [9560]={
+ ["next_chapter"]=9561,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=20028,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6609,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2536,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=256147,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=2536,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=267768,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=956,
+ ["unit"]=0
+ }
+ },
+ [9561]={
+ ["next_chapter"]=9562,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20029,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6610,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2561,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=258708,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=2561,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=267768,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=956,
+ ["unit"]=0
+ }
+ },
+ [9562]={
+ ["next_chapter"]=9563,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20031,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6610,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2587,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=261295,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=2587,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=267768,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=956,
+ ["unit"]=0
+ }
+ },
+ [9563]={
+ ["next_chapter"]=9564,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20032,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6611,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2613,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=263908,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=2613,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=267768,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=956,
+ ["unit"]=0
+ }
+ },
+ [9564]={
+ ["next_chapter"]=9565,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20034,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6611,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2639,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=266548,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=2639,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=267768,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=956,
+ ["unit"]=0
+ }
+ },
+ [9565]={
+ ["next_chapter"]=9566,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20035,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6612,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2665,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=269213,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=2665,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=267768,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=956,
+ ["unit"]=0
+ }
+ },
+ [9566]={
+ ["next_chapter"]=9567,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20037,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6612,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2692,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=271905,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=2692,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=267768,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=956,
+ ["unit"]=0
+ }
+ },
+ [9567]={
+ ["next_chapter"]=9568,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20038,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6613,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2719,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=274624,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=2719,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=267768,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=956,
+ ["unit"]=0
+ }
+ },
+ [9568]={
+ ["next_chapter"]=9569,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20040,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6613,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2746,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=277370,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=2746,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=267768,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=956,
+ ["unit"]=0
+ }
+ },
+ [9569]={
+ ["next_chapter"]=9570,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20042,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6614,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2774,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=280144,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=2774,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=267768,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=956,
+ ["unit"]=0
+ }
+ },
+ [9570]={
+ ["next_chapter"]=9571,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=20044,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6614,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2801,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=282946,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=2801,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=295782,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=957,
+ ["unit"]=0
+ }
+ },
+ [9571]={
+ ["next_chapter"]=9572,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20046,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6615,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2829,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=285775,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=2829,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=295782,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=957,
+ ["unit"]=0
+ }
+ },
+ [9572]={
+ ["next_chapter"]=9573,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20048,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6616,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2858,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=288633,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=2858,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=295782,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=957,
+ ["unit"]=0
+ }
+ },
+ [9573]={
+ ["next_chapter"]=9574,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20050,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6616,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2886,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=291519,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=2886,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=295782,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=957,
+ ["unit"]=0
+ }
+ },
+ [9574]={
+ ["next_chapter"]=9575,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20052,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6617,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2915,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=294434,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=2915,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=295782,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=957,
+ ["unit"]=0
+ }
+ },
+ [9575]={
+ ["next_chapter"]=9576,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20054,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6618,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2944,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=297379,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=2944,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=295782,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=957,
+ ["unit"]=0
+ }
+ },
+ [9576]={
+ ["next_chapter"]=9577,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20056,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6619,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2974,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=300352,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=2974,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=295782,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=957,
+ ["unit"]=0
+ }
+ },
+ [9577]={
+ ["next_chapter"]=9578,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20058,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6619,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3004,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=303356,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=3004,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=295782,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=957,
+ ["unit"]=0
+ }
+ },
+ [9578]={
+ ["next_chapter"]=9579,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20061,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6620,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3034,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=306389,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=3034,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=295782,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=957,
+ ["unit"]=0
+ }
+ },
+ [9579]={
+ ["next_chapter"]=9580,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20063,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6621,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3064,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=309453,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=3064,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=295782,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=957,
+ ["unit"]=0
+ }
+ },
+ [9580]={
+ ["next_chapter"]=9581,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=20066,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6622,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3095,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=312548,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=3095,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=326727,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=958,
+ ["unit"]=0
+ }
+ },
+ [9581]={
+ ["next_chapter"]=9582,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20068,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6622,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3125,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=315673,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=3125,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=326727,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=958,
+ ["unit"]=0
+ }
+ },
+ [9582]={
+ ["next_chapter"]=9583,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20071,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6623,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3157,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=318830,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=3157,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=326727,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=958,
+ ["unit"]=0
+ }
+ },
+ [9583]={
+ ["next_chapter"]=9584,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20073,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6624,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3188,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=322018,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=3188,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=326727,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=958,
+ ["unit"]=0
+ }
+ },
+ [9584]={
+ ["next_chapter"]=9585,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20076,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6625,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3220,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=325239,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=3220,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=326727,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=958,
+ ["unit"]=0
+ }
+ },
+ [9585]={
+ ["next_chapter"]=9586,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20079,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6626,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3252,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=328491,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=3252,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=326727,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=958,
+ ["unit"]=0
+ }
+ },
+ [9586]={
+ ["next_chapter"]=9587,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20081,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6627,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3285,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=331776,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=3285,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=326727,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=958,
+ ["unit"]=0
+ }
+ },
+ [9587]={
+ ["next_chapter"]=9588,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20084,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6628,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3318,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=335094,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=3318,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=326727,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=958,
+ ["unit"]=0
+ }
+ },
+ [9588]={
+ ["next_chapter"]=9589,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20087,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6629,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3351,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=338445,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=3351,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=326727,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=958,
+ ["unit"]=0
+ }
+ },
+ [9589]={
+ ["next_chapter"]=9590,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20090,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6630,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3384,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=341829,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=3384,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=326727,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=958,
+ ["unit"]=0
+ }
+ },
+ [9590]={
+ ["next_chapter"]=9591,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=20093,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6631,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3418,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=345247,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=3418,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=360910,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=959,
+ ["unit"]=0
+ }
+ },
+ [9591]={
+ ["next_chapter"]=9592,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20096,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6632,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3452,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=348700,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=3452,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=360910,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=959,
+ ["unit"]=0
+ }
+ },
+ [9592]={
+ ["next_chapter"]=9593,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20100,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6633,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3487,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=352187,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=3487,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=360910,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=959,
+ ["unit"]=0
+ }
+ },
+ [9593]={
+ ["next_chapter"]=9594,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20103,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6634,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3522,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=355709,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=3522,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=360910,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=959,
+ ["unit"]=0
+ }
+ },
+ [9594]={
+ ["next_chapter"]=9595,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20106,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6635,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3557,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=359266,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=3557,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=360910,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=959,
+ ["unit"]=0
+ }
+ },
+ [9595]={
+ ["next_chapter"]=9596,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20110,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6636,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3593,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=362858,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=3593,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=360910,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=959,
+ ["unit"]=0
+ }
+ },
+ [9596]={
+ ["next_chapter"]=9597,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20113,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6637,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3629,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=366487,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=3629,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=360910,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=959,
+ ["unit"]=0
+ }
+ },
+ [9597]={
+ ["next_chapter"]=9598,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20117,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6639,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3665,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=370152,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=3665,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=360910,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=959,
+ ["unit"]=0
+ }
+ },
+ [9598]={
+ ["next_chapter"]=9599,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20120,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6640,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3702,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=373853,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=3702,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=360910,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=959,
+ ["unit"]=0
+ }
+ },
+ [9599]={
+ ["next_chapter"]=9600,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20124,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6641,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3739,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=377592,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=3739,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=360910,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=959,
+ ["unit"]=0
+ }
+ },
+ [9600]={
+ ["next_chapter"]=9601,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=20128,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6642,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3776,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=381368,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=3776,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=398669,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=960,
+ ["unit"]=0
+ }
+ },
+ [9601]={
+ ["next_chapter"]=9602,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20132,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6644,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3814,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=385182,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=3814,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=398669,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=960,
+ ["unit"]=0
+ }
+ },
+ [9602]={
+ ["next_chapter"]=9603,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20136,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6645,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3852,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=389033,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=3852,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=398669,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=960,
+ ["unit"]=0
+ }
+ },
+ [9603]={
+ ["next_chapter"]=9604,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20140,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6646,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3890,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=392924,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=3890,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=398669,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=960,
+ ["unit"]=0
+ }
+ },
+ [9604]={
+ ["next_chapter"]=9605,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20144,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6648,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3929,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=396853,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=3929,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=398669,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=960,
+ ["unit"]=0
+ }
+ },
+ [9605]={
+ ["next_chapter"]=9606,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20148,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6649,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3969,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=400821,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=3969,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=398669,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=960,
+ ["unit"]=0
+ }
+ },
+ [9606]={
+ ["next_chapter"]=9607,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20152,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6650,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4008,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=404830,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=4008,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=398669,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=960,
+ ["unit"]=0
+ }
+ },
+ [9607]={
+ ["next_chapter"]=9608,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20157,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6652,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4048,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=408878,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=4048,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=398669,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=960,
+ ["unit"]=0
+ }
+ },
+ [9608]={
+ ["next_chapter"]=9609,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20161,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6653,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4089,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=412967,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=4089,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=398669,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=960,
+ ["unit"]=0
+ }
+ },
+ [9609]={
+ ["next_chapter"]=9610,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20166,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6655,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4130,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=417096,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=4130,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=398669,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=960,
+ ["unit"]=0
+ }
+ },
+ [9610]={
+ ["next_chapter"]=9611,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=20170,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6656,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4171,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=421267,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=4171,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=440379,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=961,
+ ["unit"]=0
+ }
+ },
+ [9611]={
+ ["next_chapter"]=9612,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20175,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6658,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4213,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=425480,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=4213,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=440379,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=961,
+ ["unit"]=0
+ }
+ },
+ [9612]={
+ ["next_chapter"]=9613,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20180,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6659,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4255,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=429735,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=4255,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=440379,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=961,
+ ["unit"]=0
+ }
+ },
+ [9613]={
+ ["next_chapter"]=9614,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20185,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6661,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4297,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=434032,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=4297,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=440379,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=961,
+ ["unit"]=0
+ }
+ },
+ [9614]={
+ ["next_chapter"]=9615,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20190,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6663,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4340,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=438373,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=4340,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=440379,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=961,
+ ["unit"]=0
+ }
+ },
+ [9615]={
+ ["next_chapter"]=9616,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20195,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6664,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4384,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=442756,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=4384,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=440379,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=961,
+ ["unit"]=0
+ }
+ },
+ [9616]={
+ ["next_chapter"]=9617,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20200,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6666,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4428,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=447184,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=4428,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=440379,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=961,
+ ["unit"]=0
+ }
+ },
+ [9617]={
+ ["next_chapter"]=9618,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20205,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6668,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4472,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=451656,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=4472,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=440379,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=961,
+ ["unit"]=0
+ }
+ },
+ [9618]={
+ ["next_chapter"]=9619,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20210,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6669,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4517,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=456172,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=4517,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=440379,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=961,
+ ["unit"]=0
+ }
+ },
+ [9619]={
+ ["next_chapter"]=9620,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20216,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6671,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4562,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=460734,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=4562,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=440379,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=961,
+ ["unit"]=0
+ }
+ },
+ [9620]={
+ ["next_chapter"]=9621,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=20221,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6673,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4607,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=465341,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=4607,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=486452,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=962,
+ ["unit"]=0
+ }
+ },
+ [9621]={
+ ["next_chapter"]=9622,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20227,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6675,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4653,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=469995,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=4653,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=486452,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=962,
+ ["unit"]=0
+ }
+ },
+ [9622]={
+ ["next_chapter"]=9623,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20232,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6677,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4700,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=474695,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=4700,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=486452,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=962,
+ ["unit"]=0
+ }
+ },
+ [9623]={
+ ["next_chapter"]=9624,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20238,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6679,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4747,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=479442,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=4747,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=486452,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=962,
+ ["unit"]=0
+ }
+ },
+ [9624]={
+ ["next_chapter"]=9625,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20244,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6681,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4794,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=484236,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=4794,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=486452,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=962,
+ ["unit"]=0
+ }
+ },
+ [9625]={
+ ["next_chapter"]=9626,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20250,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6683,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4842,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=489078,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=4842,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=486452,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=962,
+ ["unit"]=0
+ }
+ },
+ [9626]={
+ ["next_chapter"]=9627,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20256,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6684,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4891,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=493969,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=4891,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=486452,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=962,
+ ["unit"]=0
+ }
+ },
+ [9627]={
+ ["next_chapter"]=9628,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20262,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6687,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4940,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=498909,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=4940,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=486452,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=962,
+ ["unit"]=0
+ }
+ },
+ [9628]={
+ ["next_chapter"]=9629,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20268,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6689,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4989,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=503898,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=4989,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=486452,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=962,
+ ["unit"]=0
+ }
+ },
+ [9629]={
+ ["next_chapter"]=9630,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20275,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6691,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5039,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=508937,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=5039,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=486452,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=962,
+ ["unit"]=0
+ }
+ },
+ [9630]={
+ ["next_chapter"]=9631,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=20281,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6693,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5089,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=514026,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=5089,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=537346,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=963,
+ ["unit"]=0
+ }
+ },
+ [9631]={
+ ["next_chapter"]=9632,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20288,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6695,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5140,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=519166,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=5140,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=537346,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=963,
+ ["unit"]=0
+ }
+ },
+ [9632]={
+ ["next_chapter"]=9633,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20294,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6697,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5192,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=524358,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=5192,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=537346,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=963,
+ ["unit"]=0
+ }
+ },
+ [9633]={
+ ["next_chapter"]=9634,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20301,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6699,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5244,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=529602,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=5244,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=537346,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=963,
+ ["unit"]=0
+ }
+ },
+ [9634]={
+ ["next_chapter"]=9635,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20308,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6702,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5296,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=534898,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=5296,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=537346,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=963,
+ ["unit"]=0
+ }
+ },
+ [9635]={
+ ["next_chapter"]=9636,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20315,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6704,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5349,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=540247,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=5349,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=537346,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=963,
+ ["unit"]=0
+ }
+ },
+ [9636]={
+ ["next_chapter"]=9637,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20322,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6706,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5402,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=545649,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=5402,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=537346,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=963,
+ ["unit"]=0
+ }
+ },
+ [9637]={
+ ["next_chapter"]=9638,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20329,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6709,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5456,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=551106,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=5456,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=537346,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=963,
+ ["unit"]=0
+ }
+ },
+ [9638]={
+ ["next_chapter"]=9639,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20336,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6711,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5511,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=556617,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=5511,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=537346,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=963,
+ ["unit"]=0
+ }
+ },
+ [9639]={
+ ["next_chapter"]=9640,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20344,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6713,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5566,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=562183,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=5566,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=537346,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=963,
+ ["unit"]=0
+ }
+ },
+ [9640]={
+ ["next_chapter"]=9641,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=20351,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6716,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5622,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=567805,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=5622,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=593564,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=964,
+ ["unit"]=0
+ }
+ },
+ [9641]={
+ ["next_chapter"]=9642,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20359,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6718,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5678,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=573483,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=5678,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=593564,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=964,
+ ["unit"]=0
+ }
+ },
+ [9642]={
+ ["next_chapter"]=9643,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20367,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6721,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5735,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=579218,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=5735,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=593564,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=964,
+ ["unit"]=0
+ }
+ },
+ [9643]={
+ ["next_chapter"]=9644,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20374,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6724,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5792,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=585010,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=5792,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=593564,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=964,
+ ["unit"]=0
+ }
+ },
+ [9644]={
+ ["next_chapter"]=9645,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20382,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6726,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5850,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=590860,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=5850,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=593564,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=964,
+ ["unit"]=0
+ }
+ },
+ [9645]={
+ ["next_chapter"]=9646,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20390,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6729,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5909,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=596769,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=5909,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=593564,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=964,
+ ["unit"]=0
+ }
+ },
+ [9646]={
+ ["next_chapter"]=9647,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20398,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6731,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5968,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=602736,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=5968,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=593564,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=964,
+ ["unit"]=0
+ }
+ },
+ [9647]={
+ ["next_chapter"]=9648,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20407,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6734,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6027,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=608764,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=6027,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=593564,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=964,
+ ["unit"]=0
+ }
+ },
+ [9648]={
+ ["next_chapter"]=9649,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20415,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6737,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6088,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=614851,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=6088,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=593564,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=964,
+ ["unit"]=0
+ }
+ },
+ [9649]={
+ ["next_chapter"]=9650,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20423,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6740,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6149,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=621000,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=6149,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=593564,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=964,
+ ["unit"]=0
+ }
+ },
+ [9650]={
+ ["next_chapter"]=9651,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=20432,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6743,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6210,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=627210,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=6210,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=655664,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=965,
+ ["unit"]=0
+ }
+ },
+ [9651]={
+ ["next_chapter"]=9652,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20441,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6745,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6272,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=633482,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=6272,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=655664,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=965,
+ ["unit"]=0
+ }
+ },
+ [9652]={
+ ["next_chapter"]=9653,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20450,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6748,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6335,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=639817,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=6335,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=655664,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=965,
+ ["unit"]=0
+ }
+ },
+ [9653]={
+ ["next_chapter"]=9654,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20458,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6751,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6398,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=646215,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=6398,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=655664,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=965,
+ ["unit"]=0
+ }
+ },
+ [9654]={
+ ["next_chapter"]=9655,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20467,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6754,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6462,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=652677,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=6462,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=655664,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=965,
+ ["unit"]=0
+ }
+ },
+ [9655]={
+ ["next_chapter"]=9656,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20477,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6757,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6527,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=659204,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=6527,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=655664,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=965,
+ ["unit"]=0
+ }
+ },
+ [9656]={
+ ["next_chapter"]=9657,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20486,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6760,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6592,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=665796,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=6592,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=655664,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=965,
+ ["unit"]=0
+ }
+ },
+ [9657]={
+ ["next_chapter"]=9658,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20495,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6763,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6658,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=672454,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=6658,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=655664,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=965,
+ ["unit"]=0
+ }
+ },
+ [9658]={
+ ["next_chapter"]=9659,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20505,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6767,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6725,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=679178,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=6725,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=655664,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=965,
+ ["unit"]=0
+ }
+ },
+ [9659]={
+ ["next_chapter"]=9660,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20515,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6770,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6792,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=685970,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=6792,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=655664,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=965,
+ ["unit"]=0
+ }
+ },
+ [9660]={
+ ["next_chapter"]=9661,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=20524,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6773,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6860,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=692830,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=6860,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=724261,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=966,
+ ["unit"]=0
+ }
+ },
+ [9661]={
+ ["next_chapter"]=9662,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20534,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6776,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6928,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=699758,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=6928,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=724261,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=966,
+ ["unit"]=0
+ }
+ },
+ [9662]={
+ ["next_chapter"]=9663,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20544,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6780,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6998,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=706756,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=6998,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=724261,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=966,
+ ["unit"]=0
+ }
+ },
+ [9663]={
+ ["next_chapter"]=9664,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20554,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6783,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7068,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=713823,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=7068,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=724261,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=966,
+ ["unit"]=0
+ }
+ },
+ [9664]={
+ ["next_chapter"]=9665,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20565,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6786,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7138,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=720961,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=7138,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=724261,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=966,
+ ["unit"]=0
+ }
+ },
+ [9665]={
+ ["next_chapter"]=9666,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20575,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6790,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7210,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=728171,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=7210,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=724261,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=966,
+ ["unit"]=0
+ }
+ },
+ [9666]={
+ ["next_chapter"]=9667,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20586,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6793,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7282,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=735453,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=7282,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=724261,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=966,
+ ["unit"]=0
+ }
+ },
+ [9667]={
+ ["next_chapter"]=9668,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20596,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6797,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7355,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=742807,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=7355,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=724261,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=966,
+ ["unit"]=0
+ }
+ },
+ [9668]={
+ ["next_chapter"]=9669,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20607,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6800,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7428,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=750235,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=7428,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=724261,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=966,
+ ["unit"]=0
+ }
+ },
+ [9669]={
+ ["next_chapter"]=9670,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20618,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6804,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7502,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=757738,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=7502,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=724261,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=966,
+ ["unit"]=0
+ }
+ },
+ [9670]={
+ ["next_chapter"]=9671,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=20629,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6808,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7577,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=765315,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=7577,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=800035,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=967,
+ ["unit"]=0
+ }
+ },
+ [9671]={
+ ["next_chapter"]=9672,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20640,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6811,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7653,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=772968,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=7653,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=800035,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=967,
+ ["unit"]=0
+ }
+ },
+ [9672]={
+ ["next_chapter"]=9673,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20651,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6815,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7730,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=780698,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=7730,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=800035,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=967,
+ ["unit"]=0
+ }
+ },
+ [9673]={
+ ["next_chapter"]=9674,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20663,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6819,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7807,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=788505,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=7807,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=800035,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=967,
+ ["unit"]=0
+ }
+ },
+ [9674]={
+ ["next_chapter"]=9675,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20674,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6823,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7885,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=796390,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=7885,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=800035,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=967,
+ ["unit"]=0
+ }
+ },
+ [9675]={
+ ["next_chapter"]=9676,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20686,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6826,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7964,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=804354,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=7964,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=800035,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=967,
+ ["unit"]=0
+ }
+ },
+ [9676]={
+ ["next_chapter"]=9677,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20698,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6830,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8044,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=812397,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=8044,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=800035,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=967,
+ ["unit"]=0
+ }
+ },
+ [9677]={
+ ["next_chapter"]=9678,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20710,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6834,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8124,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=820521,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=8124,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=800035,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=967,
+ ["unit"]=0
+ }
+ },
+ [9678]={
+ ["next_chapter"]=9679,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20722,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6838,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8205,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=828727,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=8205,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=800035,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=967,
+ ["unit"]=0
+ }
+ },
+ [9679]={
+ ["next_chapter"]=9680,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20734,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6842,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8287,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=837014,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=8287,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=800035,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=967,
+ ["unit"]=0
+ }
+ },
+ [9680]={
+ ["next_chapter"]=9681,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=20746,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6846,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8370,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=845384,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=8370,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=883737,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=968,
+ ["unit"]=0
+ }
+ },
+ [9681]={
+ ["next_chapter"]=9682,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20759,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6850,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8454,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=853838,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=8454,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=883737,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=968,
+ ["unit"]=0
+ }
+ },
+ [9682]={
+ ["next_chapter"]=9683,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20772,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6855,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8538,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=862376,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=8538,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=883737,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=968,
+ ["unit"]=0
+ }
+ },
+ [9683]={
+ ["next_chapter"]=9684,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20784,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6859,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8624,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=871000,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=8624,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=883737,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=968,
+ ["unit"]=0
+ }
+ },
+ [9684]={
+ ["next_chapter"]=9685,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20797,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6863,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8710,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=879710,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=8710,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=883737,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=968,
+ ["unit"]=0
+ }
+ },
+ [9685]={
+ ["next_chapter"]=9686,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20810,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6867,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8797,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=888507,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=8797,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=883737,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=968,
+ ["unit"]=0
+ }
+ },
+ [9686]={
+ ["next_chapter"]=9687,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20824,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6872,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8885,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=897392,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=8885,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=883737,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=968,
+ ["unit"]=0
+ }
+ },
+ [9687]={
+ ["next_chapter"]=9688,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20837,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6876,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8974,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=906366,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=8974,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=883737,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=968,
+ ["unit"]=0
+ }
+ },
+ [9688]={
+ ["next_chapter"]=9689,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20851,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6881,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9064,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=915430,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=9064,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=883737,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=968,
+ ["unit"]=0
+ }
+ },
+ [9689]={
+ ["next_chapter"]=9690,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20864,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6885,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9154,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=924584,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=9154,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=883737,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=968,
+ ["unit"]=0
+ }
+ },
+ [9690]={
+ ["next_chapter"]=9691,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=20878,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6890,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9246,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=933830,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=9246,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=976195,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=969,
+ ["unit"]=0
+ }
+ },
+ [9691]={
+ ["next_chapter"]=9692,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20892,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6894,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9338,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=943168,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=9338,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=976195,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=969,
+ ["unit"]=0
+ }
+ },
+ [9692]={
+ ["next_chapter"]=9693,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20906,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6899,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9432,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=952600,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=9432,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=976195,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=969,
+ ["unit"]=0
+ }
+ },
+ [9693]={
+ ["next_chapter"]=9694,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20920,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6904,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9526,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=962126,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=9526,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=976195,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=969,
+ ["unit"]=0
+ }
+ },
+ [9694]={
+ ["next_chapter"]=9695,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20935,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6908,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9621,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=971747,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=9621,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=976195,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=969,
+ ["unit"]=0
+ }
+ },
+ [9695]={
+ ["next_chapter"]=9696,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20949,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6913,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9717,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=981464,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=9717,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=976195,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=969,
+ ["unit"]=0
+ }
+ },
+ [9696]={
+ ["next_chapter"]=9697,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20964,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6918,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9815,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=991279,
+ ["unit"]=13
+ },
+ ["idle_gold"]={
+ ["value"]=9815,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=976195,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=969,
+ ["unit"]=0
+ }
+ },
+ [9697]={
+ ["next_chapter"]=9698,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20979,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6923,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9913,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1001,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=9913,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=976195,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=969,
+ ["unit"]=0
+ }
+ },
+ [9698]={
+ ["next_chapter"]=9699,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20994,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6928,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10012,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1011,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=10012,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=976195,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=969,
+ ["unit"]=0
+ }
+ },
+ [9699]={
+ ["next_chapter"]=9700,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21009,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6933,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10112,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1021,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=10112,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=976195,
+ ["unit"]=13
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=969,
+ ["unit"]=0
+ }
+ },
+ [9700]={
+ ["next_chapter"]=9701,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=21024,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6938,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10213,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1032,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=10213,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1078,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=970,
+ ["unit"]=0
+ }
+ },
+ [9701]={
+ ["next_chapter"]=9702,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21039,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6943,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10315,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1042,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=10315,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1078,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=970,
+ ["unit"]=0
+ }
+ },
+ [9702]={
+ ["next_chapter"]=9703,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21055,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6948,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10418,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1052,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=10418,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1078,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=970,
+ ["unit"]=0
+ }
+ },
+ [9703]={
+ ["next_chapter"]=9704,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21071,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6953,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10523,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1063,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=10523,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1078,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=970,
+ ["unit"]=0
+ }
+ },
+ [9704]={
+ ["next_chapter"]=9705,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21087,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6959,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10628,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1073,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=10628,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1078,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=970,
+ ["unit"]=0
+ }
+ },
+ [9705]={
+ ["next_chapter"]=9706,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21103,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6964,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10734,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1084,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=10734,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1078,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=970,
+ ["unit"]=0
+ }
+ },
+ [9706]={
+ ["next_chapter"]=9707,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21119,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6969,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10841,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1095,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=10841,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1078,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=970,
+ ["unit"]=0
+ }
+ },
+ [9707]={
+ ["next_chapter"]=9708,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21135,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6975,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10950,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1106,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=10950,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1078,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=970,
+ ["unit"]=0
+ }
+ },
+ [9708]={
+ ["next_chapter"]=9709,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21152,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6980,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=11059,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1117,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=11059,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1078,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=970,
+ ["unit"]=0
+ }
+ },
+ [9709]={
+ ["next_chapter"]=9710,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21169,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6986,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=11170,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1128,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=11170,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1078,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=970,
+ ["unit"]=0
+ }
+ },
+ [9710]={
+ ["next_chapter"]=9711,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=21185,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6991,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=11282,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1139,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=11282,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1191,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=971,
+ ["unit"]=0
+ }
+ },
+ [9711]={
+ ["next_chapter"]=9712,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21202,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=6997,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=11394,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1151,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=11394,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1191,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=971,
+ ["unit"]=0
+ }
+ },
+ [9712]={
+ ["next_chapter"]=9713,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21220,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7002,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=11508,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1162,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=11508,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1191,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=971,
+ ["unit"]=0
+ }
+ },
+ [9713]={
+ ["next_chapter"]=9714,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21237,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7008,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=11624,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1174,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=11624,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1191,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=971,
+ ["unit"]=0
+ }
+ },
+ [9714]={
+ ["next_chapter"]=9715,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21254,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7014,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=11740,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1186,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=11740,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1191,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=971,
+ ["unit"]=0
+ }
+ },
+ [9715]={
+ ["next_chapter"]=9716,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21272,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7020,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=11857,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1198,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=11857,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1191,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=971,
+ ["unit"]=0
+ }
+ },
+ [9716]={
+ ["next_chapter"]=9717,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21290,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7026,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=11976,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1210,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=11976,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1191,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=971,
+ ["unit"]=0
+ }
+ },
+ [9717]={
+ ["next_chapter"]=9718,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21308,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7032,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=12095,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1222,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=12095,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1191,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=971,
+ ["unit"]=0
+ }
+ },
+ [9718]={
+ ["next_chapter"]=9719,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21326,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7038,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=12216,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1234,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=12216,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1191,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=971,
+ ["unit"]=0
+ }
+ },
+ [9719]={
+ ["next_chapter"]=9720,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21344,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7044,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=12339,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1246,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=12339,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1191,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=971,
+ ["unit"]=0
+ }
+ },
+ [9720]={
+ ["next_chapter"]=9721,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=21363,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7050,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=12462,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1259,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=12462,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1316,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=972,
+ ["unit"]=0
+ }
+ },
+ [9721]={
+ ["next_chapter"]=9722,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21382,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7056,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=12587,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1271,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=12587,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1316,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=972,
+ ["unit"]=0
+ }
+ },
+ [9722]={
+ ["next_chapter"]=9723,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21400,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7062,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=12712,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1284,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=12712,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1316,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=972,
+ ["unit"]=0
+ }
+ },
+ [9723]={
+ ["next_chapter"]=9724,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21419,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7068,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=12840,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1297,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=12840,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1316,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=972,
+ ["unit"]=0
+ }
+ },
+ [9724]={
+ ["next_chapter"]=9725,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21439,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7075,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=12968,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1310,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=12968,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1316,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=972,
+ ["unit"]=0
+ }
+ },
+ [9725]={
+ ["next_chapter"]=9726,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21458,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7081,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=13098,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1323,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=13098,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1316,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=972,
+ ["unit"]=0
+ }
+ },
+ [9726]={
+ ["next_chapter"]=9727,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21478,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7088,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=13229,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1336,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=13229,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1316,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=972,
+ ["unit"]=0
+ }
+ },
+ [9727]={
+ ["next_chapter"]=9728,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21497,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7094,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=13361,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1349,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=13361,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1316,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=972,
+ ["unit"]=0
+ }
+ },
+ [9728]={
+ ["next_chapter"]=9729,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21517,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7101,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=13495,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1363,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=13495,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1316,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=972,
+ ["unit"]=0
+ }
+ },
+ [9729]={
+ ["next_chapter"]=9730,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21537,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7107,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=13629,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1377,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=13629,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1316,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=972,
+ ["unit"]=0
+ }
+ },
+ [9730]={
+ ["next_chapter"]=9731,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=21557,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7114,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=13766,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1390,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=13766,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1453,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=973,
+ ["unit"]=0
+ }
+ },
+ [9731]={
+ ["next_chapter"]=9732,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21578,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7121,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=13903,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1404,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=13903,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1453,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=973,
+ ["unit"]=0
+ }
+ },
+ [9732]={
+ ["next_chapter"]=9733,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21598,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7127,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=14042,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1418,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=14042,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1453,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=973,
+ ["unit"]=0
+ }
+ },
+ [9733]={
+ ["next_chapter"]=9734,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21619,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7134,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=14183,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1432,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=14183,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1453,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=973,
+ ["unit"]=0
+ }
+ },
+ [9734]={
+ ["next_chapter"]=9735,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21640,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7141,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=14325,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1447,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=14325,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1453,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=973,
+ ["unit"]=0
+ }
+ },
+ [9735]={
+ ["next_chapter"]=9736,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21661,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7148,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=14468,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1461,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=14468,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1453,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=973,
+ ["unit"]=0
+ }
+ },
+ [9736]={
+ ["next_chapter"]=9737,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21682,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7155,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=14613,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1476,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=14613,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1453,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=973,
+ ["unit"]=0
+ }
+ },
+ [9737]={
+ ["next_chapter"]=9738,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21704,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7162,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=14759,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1491,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=14759,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1453,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=973,
+ ["unit"]=0
+ }
+ },
+ [9738]={
+ ["next_chapter"]=9739,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21726,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7169,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=14906,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1506,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=14906,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1453,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=973,
+ ["unit"]=0
+ }
+ },
+ [9739]={
+ ["next_chapter"]=9740,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21747,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7177,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=15055,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1521,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=15055,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1453,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=973,
+ ["unit"]=0
+ }
+ },
+ [9740]={
+ ["next_chapter"]=9741,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=21769,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7184,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=15206,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1536,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=15206,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1605,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=974,
+ ["unit"]=0
+ }
+ },
+ [9741]={
+ ["next_chapter"]=9742,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21792,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7191,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=15358,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1551,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=15358,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1605,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=974,
+ ["unit"]=0
+ }
+ },
+ [9742]={
+ ["next_chapter"]=9743,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21814,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7199,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=15512,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1567,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=15512,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1605,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=974,
+ ["unit"]=0
+ }
+ },
+ [9743]={
+ ["next_chapter"]=9744,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21837,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7206,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=15667,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1582,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=15667,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1605,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=974,
+ ["unit"]=0
+ }
+ },
+ [9744]={
+ ["next_chapter"]=9745,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21859,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7214,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=15823,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1598,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=15823,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1605,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=974,
+ ["unit"]=0
+ }
+ },
+ [9745]={
+ ["next_chapter"]=9746,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21882,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7221,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=15982,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1614,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=15982,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1605,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=974,
+ ["unit"]=0
+ }
+ },
+ [9746]={
+ ["next_chapter"]=9747,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21906,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7229,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=16141,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1630,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=16141,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1605,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=974,
+ ["unit"]=0
+ }
+ },
+ [9747]={
+ ["next_chapter"]=9748,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21929,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7237,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=16303,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1647,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=16303,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1605,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=974,
+ ["unit"]=0
+ }
+ },
+ [9748]={
+ ["next_chapter"]=9749,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21952,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7244,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=16466,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1663,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=16466,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1605,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=974,
+ ["unit"]=0
+ }
+ },
+ [9749]={
+ ["next_chapter"]=9750,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21976,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7252,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=16631,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1680,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=16631,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1605,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=974,
+ ["unit"]=0
+ }
+ },
+ [9750]={
+ ["next_chapter"]=9751,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=22000,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7260,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=16797,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1696,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=16797,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1773,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=975,
+ ["unit"]=0
+ }
+ },
+ [9751]={
+ ["next_chapter"]=9752,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22024,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7268,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=16965,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1713,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=16965,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1773,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=975,
+ ["unit"]=0
+ }
+ },
+ [9752]={
+ ["next_chapter"]=9753,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22048,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7276,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=17135,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1731,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=17135,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1773,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=975,
+ ["unit"]=0
+ }
+ },
+ [9753]={
+ ["next_chapter"]=9754,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22073,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7284,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=17306,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1748,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=17306,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1773,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=975,
+ ["unit"]=0
+ }
+ },
+ [9754]={
+ ["next_chapter"]=9755,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22098,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7292,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=17479,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1765,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=17479,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1773,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=975,
+ ["unit"]=0
+ }
+ },
+ [9755]={
+ ["next_chapter"]=9756,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22122,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7300,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=17654,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1783,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=17654,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1773,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=975,
+ ["unit"]=0
+ }
+ },
+ [9756]={
+ ["next_chapter"]=9757,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22147,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7309,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=17830,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1801,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=17830,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1773,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=975,
+ ["unit"]=0
+ }
+ },
+ [9757]={
+ ["next_chapter"]=9758,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22173,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7317,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=18009,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1819,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=18009,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1773,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=975,
+ ["unit"]=0
+ }
+ },
+ [9758]={
+ ["next_chapter"]=9759,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22198,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7325,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=18189,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1837,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=18189,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1773,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=975,
+ ["unit"]=0
+ }
+ },
+ [9759]={
+ ["next_chapter"]=9760,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22224,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7334,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=18371,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1855,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=18371,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1773,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=975,
+ ["unit"]=0
+ }
+ },
+ [9760]={
+ ["next_chapter"]=9761,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=22250,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7342,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=18554,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1874,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=18554,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1959,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=976,
+ ["unit"]=0
+ }
+ },
+ [9761]={
+ ["next_chapter"]=9762,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22276,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7351,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=18740,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1893,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=18740,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1959,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=976,
+ ["unit"]=0
+ }
+ },
+ [9762]={
+ ["next_chapter"]=9763,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22302,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7360,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=18927,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1912,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=18927,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1959,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=976,
+ ["unit"]=0
+ }
+ },
+ [9763]={
+ ["next_chapter"]=9764,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22329,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7368,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=19116,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1931,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=19116,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1959,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=976,
+ ["unit"]=0
+ }
+ },
+ [9764]={
+ ["next_chapter"]=9765,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22355,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7377,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=19308,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1950,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=19308,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1959,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=976,
+ ["unit"]=0
+ }
+ },
+ [9765]={
+ ["next_chapter"]=9766,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22382,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7386,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=19501,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1970,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=19501,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1959,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=976,
+ ["unit"]=0
+ }
+ },
+ [9766]={
+ ["next_chapter"]=9767,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22409,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7395,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=19696,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1989,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=19696,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1959,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=976,
+ ["unit"]=0
+ }
+ },
+ [9767]={
+ ["next_chapter"]=9768,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22436,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7404,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=19893,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2009,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=19893,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1959,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=976,
+ ["unit"]=0
+ }
+ },
+ [9768]={
+ ["next_chapter"]=9769,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22464,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7413,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=20092,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2029,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=20092,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1959,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=976,
+ ["unit"]=0
+ }
+ },
+ [9769]={
+ ["next_chapter"]=9770,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22492,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7422,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=20292,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2050,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=20292,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=1959,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=976,
+ ["unit"]=0
+ }
+ },
+ [9770]={
+ ["next_chapter"]=9771,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=22519,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7431,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=20495,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2070,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=20495,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=2164,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=977,
+ ["unit"]=0
+ }
+ },
+ [9771]={
+ ["next_chapter"]=9772,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22548,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7441,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=20700,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2091,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=20700,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=2164,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=977,
+ ["unit"]=0
+ }
+ },
+ [9772]={
+ ["next_chapter"]=9773,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22576,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7450,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=20907,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2112,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=20907,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=2164,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=977,
+ ["unit"]=0
+ }
+ },
+ [9773]={
+ ["next_chapter"]=9774,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22604,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7459,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=21116,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2133,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=21116,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=2164,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=977,
+ ["unit"]=0
+ }
+ },
+ [9774]={
+ ["next_chapter"]=9775,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22633,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7469,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=21328,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2154,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=21328,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=2164,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=977,
+ ["unit"]=0
+ }
+ },
+ [9775]={
+ ["next_chapter"]=9776,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22662,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7478,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=21541,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2176,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=21541,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=2164,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=977,
+ ["unit"]=0
+ }
+ },
+ [9776]={
+ ["next_chapter"]=9777,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22691,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7488,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=21756,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2197,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=21756,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=2164,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=977,
+ ["unit"]=0
+ }
+ },
+ [9777]={
+ ["next_chapter"]=9778,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22721,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7498,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=21974,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2219,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=21974,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=2164,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=977,
+ ["unit"]=0
+ }
+ },
+ [9778]={
+ ["next_chapter"]=9779,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22750,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7508,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=22194,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2242,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=22194,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=2164,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=977,
+ ["unit"]=0
+ }
+ },
+ [9779]={
+ ["next_chapter"]=9780,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22780,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7517,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=22416,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2264,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=22416,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=2164,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=977,
+ ["unit"]=0
+ }
+ },
+ [9780]={
+ ["next_chapter"]=9781,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=22810,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7527,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=22640,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2287,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=22640,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=2390,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=978,
+ ["unit"]=0
+ }
+ },
+ [9781]={
+ ["next_chapter"]=9782,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22840,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7537,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=22866,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2309,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=22866,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=2390,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=978,
+ ["unit"]=0
+ }
+ },
+ [9782]={
+ ["next_chapter"]=9783,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22870,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7547,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=23095,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2333,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=23095,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=2390,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=978,
+ ["unit"]=0
+ }
+ },
+ [9783]={
+ ["next_chapter"]=9784,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22901,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7557,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=23326,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2356,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=23326,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=2390,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=978,
+ ["unit"]=0
+ }
+ },
+ [9784]={
+ ["next_chapter"]=9785,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22932,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7568,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=23559,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2379,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=23559,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=2390,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=978,
+ ["unit"]=0
+ }
+ },
+ [9785]={
+ ["next_chapter"]=9786,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22963,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7578,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=23795,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2403,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=23795,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=2390,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=978,
+ ["unit"]=0
+ }
+ },
+ [9786]={
+ ["next_chapter"]=9787,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22994,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7588,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=24032,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2427,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=24032,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=2390,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=978,
+ ["unit"]=0
+ }
+ },
+ [9787]={
+ ["next_chapter"]=9788,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23026,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7599,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=24273,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2452,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=24273,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=2390,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=978,
+ ["unit"]=0
+ }
+ },
+ [9788]={
+ ["next_chapter"]=9789,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23058,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7609,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=24516,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2476,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=24516,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=2390,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=978,
+ ["unit"]=0
+ }
+ },
+ [9789]={
+ ["next_chapter"]=9790,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23090,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7620,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=24761,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2501,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=24761,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=2390,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=978,
+ ["unit"]=0
+ }
+ },
+ [9790]={
+ ["next_chapter"]=9791,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=23122,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7630,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=25008,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2526,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=25008,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=2640,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=979,
+ ["unit"]=0
+ }
+ },
+ [9791]={
+ ["next_chapter"]=9792,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23154,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7641,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=25258,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2551,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=25258,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=2640,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=979,
+ ["unit"]=0
+ }
+ },
+ [9792]={
+ ["next_chapter"]=9793,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23187,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7652,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=25511,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2577,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=25511,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=2640,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=979,
+ ["unit"]=0
+ }
+ },
+ [9793]={
+ ["next_chapter"]=9794,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23220,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7662,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=25766,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2602,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=25766,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=2640,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=979,
+ ["unit"]=0
+ }
+ },
+ [9794]={
+ ["next_chapter"]=9795,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23253,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7673,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=26024,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2628,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=26024,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=2640,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=979,
+ ["unit"]=0
+ }
+ },
+ [9795]={
+ ["next_chapter"]=9796,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23286,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7684,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=26284,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2655,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=26284,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=2640,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=979,
+ ["unit"]=0
+ }
+ },
+ [9796]={
+ ["next_chapter"]=9797,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23320,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7695,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=26547,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2681,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=26547,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=2640,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=979,
+ ["unit"]=0
+ }
+ },
+ [9797]={
+ ["next_chapter"]=9798,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23353,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7707,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=26812,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2708,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=26812,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=2640,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=979,
+ ["unit"]=0
+ }
+ },
+ [9798]={
+ ["next_chapter"]=9799,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23387,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7718,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=27080,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2735,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=27080,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=2640,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=979,
+ ["unit"]=0
+ }
+ },
+ [9799]={
+ ["next_chapter"]=9800,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23422,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7729,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=27351,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2762,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=27351,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=2640,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=979,
+ ["unit"]=0
+ }
+ },
+ [9800]={
+ ["next_chapter"]=9801,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=23456,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7740,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=27625,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2790,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=27625,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=2917,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=980,
+ ["unit"]=0
+ }
+ },
+ [9801]={
+ ["next_chapter"]=9802,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23491,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7752,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=27901,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2818,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=27901,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=2917,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=980,
+ ["unit"]=0
+ }
+ },
+ [9802]={
+ ["next_chapter"]=9803,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23526,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7763,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=28180,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2846,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=28180,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=2917,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=980,
+ ["unit"]=0
+ }
+ },
+ [9803]={
+ ["next_chapter"]=9804,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23561,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7775,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=28462,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2875,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=28462,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=2917,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=980,
+ ["unit"]=0
+ }
+ },
+ [9804]={
+ ["next_chapter"]=9805,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23596,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7787,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=28746,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2903,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=28746,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=2917,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=980,
+ ["unit"]=0
+ }
+ },
+ [9805]={
+ ["next_chapter"]=9806,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23632,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7798,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=29034,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2932,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=29034,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=2917,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=980,
+ ["unit"]=0
+ }
+ },
+ [9806]={
+ ["next_chapter"]=9807,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23668,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7810,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=29324,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2962,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=29324,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=2917,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=980,
+ ["unit"]=0
+ }
+ },
+ [9807]={
+ ["next_chapter"]=9808,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23704,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7822,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=29617,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2991,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=29617,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=2917,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=980,
+ ["unit"]=0
+ }
+ },
+ [9808]={
+ ["next_chapter"]=9809,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23740,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7834,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=29914,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3021,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=29914,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=2917,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=980,
+ ["unit"]=0
+ }
+ },
+ [9809]={
+ ["next_chapter"]=9810,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23776,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7846,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=30213,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3051,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=30213,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=2917,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=980,
+ ["unit"]=0
+ }
+ },
+ [9810]={
+ ["next_chapter"]=9811,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=23813,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7858,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=30515,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3082,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=30515,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3222,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=981,
+ ["unit"]=0
+ }
+ },
+ [9811]={
+ ["next_chapter"]=9812,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23850,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7871,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=30820,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3113,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=30820,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3222,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=981,
+ ["unit"]=0
+ }
+ },
+ [9812]={
+ ["next_chapter"]=9813,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23888,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7883,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=31128,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3144,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=31128,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3222,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=981,
+ ["unit"]=0
+ }
+ },
+ [9813]={
+ ["next_chapter"]=9814,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23925,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7895,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=31439,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3175,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=31439,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3222,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=981,
+ ["unit"]=0
+ }
+ },
+ [9814]={
+ ["next_chapter"]=9815,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23963,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7908,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=31754,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3207,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=31754,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3222,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=981,
+ ["unit"]=0
+ }
+ },
+ [9815]={
+ ["next_chapter"]=9816,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24001,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7920,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=32071,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3239,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=32071,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3222,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=981,
+ ["unit"]=0
+ }
+ },
+ [9816]={
+ ["next_chapter"]=9817,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24039,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7933,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=32392,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3272,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=32392,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3222,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=981,
+ ["unit"]=0
+ }
+ },
+ [9817]={
+ ["next_chapter"]=9818,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24077,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7946,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=32716,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3304,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=32716,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3222,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=981,
+ ["unit"]=0
+ }
+ },
+ [9818]={
+ ["next_chapter"]=9819,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24116,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7958,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=33043,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3337,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=33043,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3222,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=981,
+ ["unit"]=0
+ }
+ },
+ [9819]={
+ ["next_chapter"]=9820,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24155,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7971,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=33374,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3371,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=33374,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3222,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=981,
+ ["unit"]=0
+ }
+ },
+ [9820]={
+ ["next_chapter"]=9821,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=24194,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7984,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=33707,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3404,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=33707,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3559,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=982,
+ ["unit"]=0
+ }
+ },
+ [9821]={
+ ["next_chapter"]=9822,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24234,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=7997,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=34044,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3438,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=34044,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3559,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=982,
+ ["unit"]=0
+ }
+ },
+ [9822]={
+ ["next_chapter"]=9823,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24273,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8010,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=34385,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3473,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=34385,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3559,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=982,
+ ["unit"]=0
+ }
+ },
+ [9823]={
+ ["next_chapter"]=9824,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24313,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8023,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=34729,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3508,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=34729,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3559,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=982,
+ ["unit"]=0
+ }
+ },
+ [9824]={
+ ["next_chapter"]=9825,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24354,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8037,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=35076,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3543,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=35076,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3559,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=982,
+ ["unit"]=0
+ }
+ },
+ [9825]={
+ ["next_chapter"]=9826,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24394,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8050,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=35427,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3578,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=35427,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3559,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=982,
+ ["unit"]=0
+ }
+ },
+ [9826]={
+ ["next_chapter"]=9827,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24435,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8063,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=35781,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3614,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=35781,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3559,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=982,
+ ["unit"]=0
+ }
+ },
+ [9827]={
+ ["next_chapter"]=9828,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24476,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8077,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=36139,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3650,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=36139,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3559,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=982,
+ ["unit"]=0
+ }
+ },
+ [9828]={
+ ["next_chapter"]=9829,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24517,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8091,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=36500,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3687,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=36500,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3559,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=982,
+ ["unit"]=0
+ }
+ },
+ [9829]={
+ ["next_chapter"]=9830,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24558,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8104,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=36865,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3723,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=36865,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3559,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=982,
+ ["unit"]=0
+ }
+ },
+ [9830]={
+ ["next_chapter"]=9831,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=24600,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8118,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=37234,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3761,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=37234,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3931,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=983,
+ ["unit"]=0
+ }
+ },
+ [9831]={
+ ["next_chapter"]=9832,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24642,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8132,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=37606,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3798,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=37606,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3931,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=983,
+ ["unit"]=0
+ }
+ },
+ [9832]={
+ ["next_chapter"]=9833,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24684,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8146,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=37982,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3836,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=37982,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3931,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=983,
+ ["unit"]=0
+ }
+ },
+ [9833]={
+ ["next_chapter"]=9834,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24727,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8160,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=38362,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3875,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=38362,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3931,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=983,
+ ["unit"]=0
+ }
+ },
+ [9834]={
+ ["next_chapter"]=9835,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24769,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8174,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=38746,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3913,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=38746,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3931,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=983,
+ ["unit"]=0
+ }
+ },
+ [9835]={
+ ["next_chapter"]=9836,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24812,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8188,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=39133,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3952,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=39133,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3931,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=983,
+ ["unit"]=0
+ }
+ },
+ [9836]={
+ ["next_chapter"]=9837,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24855,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8202,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=39525,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3992,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=39525,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3931,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=983,
+ ["unit"]=0
+ }
+ },
+ [9837]={
+ ["next_chapter"]=9838,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24899,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8217,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=39920,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4032,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=39920,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3931,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=983,
+ ["unit"]=0
+ }
+ },
+ [9838]={
+ ["next_chapter"]=9839,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24943,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8231,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=40319,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4072,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=40319,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3931,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=983,
+ ["unit"]=0
+ }
+ },
+ [9839]={
+ ["next_chapter"]=9840,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24987,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8246,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=40722,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4113,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=40722,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=3931,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=983,
+ ["unit"]=0
+ }
+ },
+ [9840]={
+ ["next_chapter"]=9841,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=25031,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8260,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=41129,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4154,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=41129,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=4343,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=984,
+ ["unit"]=0
+ }
+ },
+ [9841]={
+ ["next_chapter"]=9842,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25075,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8275,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=41541,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4196,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=41541,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=4343,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=984,
+ ["unit"]=0
+ }
+ },
+ [9842]={
+ ["next_chapter"]=9843,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25120,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8290,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=41956,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4238,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=41956,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=4343,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=984,
+ ["unit"]=0
+ }
+ },
+ [9843]={
+ ["next_chapter"]=9844,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25165,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8305,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=42376,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4280,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=42376,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=4343,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=984,
+ ["unit"]=0
+ }
+ },
+ [9844]={
+ ["next_chapter"]=9845,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25211,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8319,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=42799,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4323,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=42799,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=4343,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=984,
+ ["unit"]=0
+ }
+ },
+ [9845]={
+ ["next_chapter"]=9846,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25256,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8335,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=43227,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4366,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=43227,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=4343,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=984,
+ ["unit"]=0
+ }
+ },
+ [9846]={
+ ["next_chapter"]=9847,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25302,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8350,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=43660,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4410,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=43660,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=4343,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=984,
+ ["unit"]=0
+ }
+ },
+ [9847]={
+ ["next_chapter"]=9848,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25348,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8365,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=44096,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4454,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=44096,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=4343,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=984,
+ ["unit"]=0
+ }
+ },
+ [9848]={
+ ["next_chapter"]=9849,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25394,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8380,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=44537,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4498,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=44537,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=4343,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=984,
+ ["unit"]=0
+ }
+ },
+ [9849]={
+ ["next_chapter"]=9850,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25441,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8396,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=44983,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4543,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=44983,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=4343,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=984,
+ ["unit"]=0
+ }
+ },
+ [9850]={
+ ["next_chapter"]=9851,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=25488,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8411,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=45432,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4589,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=45432,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=4797,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=985,
+ ["unit"]=0
+ }
+ },
+ [9851]={
+ ["next_chapter"]=9852,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25535,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8427,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=45887,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4635,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=45887,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=4797,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=985,
+ ["unit"]=0
+ }
+ },
+ [9852]={
+ ["next_chapter"]=9853,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25583,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8442,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=46346,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4681,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=46346,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=4797,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=985,
+ ["unit"]=0
+ }
+ },
+ [9853]={
+ ["next_chapter"]=9854,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25630,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8458,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=46809,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4728,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=46809,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=4797,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=985,
+ ["unit"]=0
+ }
+ },
+ [9854]={
+ ["next_chapter"]=9855,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25678,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8474,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=47277,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4775,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=47277,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=4797,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=985,
+ ["unit"]=0
+ }
+ },
+ [9855]={
+ ["next_chapter"]=9856,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25727,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8490,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=47750,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4823,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=47750,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=4797,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=985,
+ ["unit"]=0
+ }
+ },
+ [9856]={
+ ["next_chapter"]=9857,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25775,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8506,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=48227,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4871,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=48227,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=4797,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=985,
+ ["unit"]=0
+ }
+ },
+ [9857]={
+ ["next_chapter"]=9858,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25824,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8522,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=48710,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4920,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=48710,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=4797,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=985,
+ ["unit"]=0
+ }
+ },
+ [9858]={
+ ["next_chapter"]=9859,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25873,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8538,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=49197,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4969,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=49197,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=4797,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=985,
+ ["unit"]=0
+ }
+ },
+ [9859]={
+ ["next_chapter"]=9860,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25922,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8554,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=49689,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5019,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=49689,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=4797,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=985,
+ ["unit"]=0
+ }
+ },
+ [9860]={
+ ["next_chapter"]=9861,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=25972,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8571,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=50186,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5069,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=50186,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=5299,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=986,
+ ["unit"]=0
+ }
+ },
+ [9861]={
+ ["next_chapter"]=9862,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26022,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8587,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=50688,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5119,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=50688,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=5299,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=986,
+ ["unit"]=0
+ }
+ },
+ [9862]={
+ ["next_chapter"]=9863,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26072,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8604,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=51194,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5171,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=51194,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=5299,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=986,
+ ["unit"]=0
+ }
+ },
+ [9863]={
+ ["next_chapter"]=9864,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26123,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8620,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=51706,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5222,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=51706,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=5299,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=986,
+ ["unit"]=0
+ }
+ },
+ [9864]={
+ ["next_chapter"]=9865,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26173,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8637,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=52223,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5275,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=52223,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=5299,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=986,
+ ["unit"]=0
+ }
+ },
+ [9865]={
+ ["next_chapter"]=9866,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26224,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8654,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=52746,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5327,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=52746,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=5299,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=986,
+ ["unit"]=0
+ }
+ },
+ [9866]={
+ ["next_chapter"]=9867,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26276,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8671,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=53273,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5381,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=53273,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=5299,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=986,
+ ["unit"]=0
+ }
+ },
+ [9867]={
+ ["next_chapter"]=9868,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26327,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8688,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=53806,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5434,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=53806,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=5299,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=986,
+ ["unit"]=0
+ }
+ },
+ [9868]={
+ ["next_chapter"]=9869,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26379,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8705,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=54344,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5489,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=54344,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=5299,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=986,
+ ["unit"]=0
+ }
+ },
+ [9869]={
+ ["next_chapter"]=9870,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26431,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8722,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=54887,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5544,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=54887,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=5299,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=986,
+ ["unit"]=0
+ }
+ },
+ [9870]={
+ ["next_chapter"]=9871,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=26484,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8740,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=55436,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5599,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=55436,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=5853,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=987,
+ ["unit"]=0
+ }
+ },
+ [9871]={
+ ["next_chapter"]=9872,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26536,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8757,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=55991,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5655,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=55991,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=5853,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=987,
+ ["unit"]=0
+ }
+ },
+ [9872]={
+ ["next_chapter"]=9873,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26589,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8774,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=56550,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5712,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=56550,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=5853,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=987,
+ ["unit"]=0
+ }
+ },
+ [9873]={
+ ["next_chapter"]=9874,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26643,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8792,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=57116,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5769,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=57116,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=5853,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=987,
+ ["unit"]=0
+ }
+ },
+ [9874]={
+ ["next_chapter"]=9875,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26696,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8810,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=57687,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5826,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=57687,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=5853,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=987,
+ ["unit"]=0
+ }
+ },
+ [9875]={
+ ["next_chapter"]=9876,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26750,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8828,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=58264,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5885,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=58264,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=5853,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=987,
+ ["unit"]=0
+ }
+ },
+ [9876]={
+ ["next_chapter"]=9877,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26804,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8845,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=58847,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5944,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=58847,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=5853,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=987,
+ ["unit"]=0
+ }
+ },
+ [9877]={
+ ["next_chapter"]=9878,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26859,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8863,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=59435,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6003,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=59435,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=5853,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=987,
+ ["unit"]=0
+ }
+ },
+ [9878]={
+ ["next_chapter"]=9879,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26913,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8881,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=60029,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6063,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=60029,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=5853,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=987,
+ ["unit"]=0
+ }
+ },
+ [9879]={
+ ["next_chapter"]=9880,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26968,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8900,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=60630,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6124,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=60630,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=5853,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=987,
+ ["unit"]=0
+ }
+ },
+ [9880]={
+ ["next_chapter"]=9881,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=27024,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8918,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=61236,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6185,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=61236,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=6465,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=988,
+ ["unit"]=0
+ }
+ },
+ [9881]={
+ ["next_chapter"]=9882,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27079,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8936,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=61848,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6247,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=61848,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=6465,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=988,
+ ["unit"]=0
+ }
+ },
+ [9882]={
+ ["next_chapter"]=9883,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27135,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8955,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=62467,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6309,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=62467,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=6465,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=988,
+ ["unit"]=0
+ }
+ },
+ [9883]={
+ ["next_chapter"]=9884,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27191,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8973,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=63092,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6372,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=63092,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=6465,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=988,
+ ["unit"]=0
+ }
+ },
+ [9884]={
+ ["next_chapter"]=9885,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27248,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=8992,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=63723,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6436,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=63723,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=6465,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=988,
+ ["unit"]=0
+ }
+ },
+ [9885]={
+ ["next_chapter"]=9886,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27305,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=9010,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=64360,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6500,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=64360,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=6465,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=988,
+ ["unit"]=0
+ }
+ },
+ [9886]={
+ ["next_chapter"]=9887,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27362,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=9029,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=65003,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6565,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=65003,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=6465,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=988,
+ ["unit"]=0
+ }
+ },
+ [9887]={
+ ["next_chapter"]=9888,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27419,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=9048,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=65653,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6631,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=65653,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=6465,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=988,
+ ["unit"]=0
+ }
+ },
+ [9888]={
+ ["next_chapter"]=9889,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27477,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=9067,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=66310,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6697,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=66310,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=6465,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=988,
+ ["unit"]=0
+ }
+ },
+ [9889]={
+ ["next_chapter"]=9890,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27535,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=9086,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=66973,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6764,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=66973,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=6465,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=988,
+ ["unit"]=0
+ }
+ },
+ [9890]={
+ ["next_chapter"]=9891,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=27593,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=9106,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=67643,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6832,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=67643,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=7142,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=989,
+ ["unit"]=0
+ }
+ },
+ [9891]={
+ ["next_chapter"]=9892,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27651,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=9125,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=68319,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6900,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=68319,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=7142,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=989,
+ ["unit"]=0
+ }
+ },
+ [9892]={
+ ["next_chapter"]=9893,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27710,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=9144,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=69002,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6969,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=69002,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=7142,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=989,
+ ["unit"]=0
+ }
+ },
+ [9893]={
+ ["next_chapter"]=9894,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27769,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=9164,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=69692,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7039,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=69692,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=7142,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=989,
+ ["unit"]=0
+ }
+ },
+ [9894]={
+ ["next_chapter"]=9895,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27829,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=9184,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=70389,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7109,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=70389,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=7142,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=989,
+ ["unit"]=0
+ }
+ },
+ [9895]={
+ ["next_chapter"]=9896,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27889,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=9203,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=71093,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7180,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=71093,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=7142,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=989,
+ ["unit"]=0
+ }
+ },
+ [9896]={
+ ["next_chapter"]=9897,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27949,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=9223,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=71804,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7252,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=71804,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=7142,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=989,
+ ["unit"]=0
+ }
+ },
+ [9897]={
+ ["next_chapter"]=9898,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28009,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=9243,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=72522,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7325,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=72522,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=7142,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=989,
+ ["unit"]=0
+ }
+ },
+ [9898]={
+ ["next_chapter"]=9899,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28070,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=9263,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=73247,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7398,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=73247,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=7142,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=989,
+ ["unit"]=0
+ }
+ },
+ [9899]={
+ ["next_chapter"]=9900,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28131,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=9283,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=73980,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7472,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=73980,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=7142,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=989,
+ ["unit"]=0
+ }
+ },
+ [9900]={
+ ["next_chapter"]=9901,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=28192,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=9303,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=74720,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7547,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=74720,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=7889,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=990,
+ ["unit"]=0
+ }
+ },
+ [9901]={
+ ["next_chapter"]=9902,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28254,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=9324,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=75467,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7622,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=75467,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=7889,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=990,
+ ["unit"]=0
+ }
+ },
+ [9902]={
+ ["next_chapter"]=9903,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28315,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=9344,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=76222,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7698,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=76222,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=7889,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=990,
+ ["unit"]=0
+ }
+ },
+ [9903]={
+ ["next_chapter"]=9904,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28378,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=9365,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=76984,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7775,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=76984,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=7889,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=990,
+ ["unit"]=0
+ }
+ },
+ [9904]={
+ ["next_chapter"]=9905,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28440,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=9385,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=77754,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7853,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=77754,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=7889,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=990,
+ ["unit"]=0
+ }
+ },
+ [9905]={
+ ["next_chapter"]=9906,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28503,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=9406,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=78531,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7932,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=78531,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=7889,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=990,
+ ["unit"]=0
+ }
+ },
+ [9906]={
+ ["next_chapter"]=9907,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28566,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=9427,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=79316,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8011,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=79316,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=7889,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=990,
+ ["unit"]=0
+ }
+ },
+ [9907]={
+ ["next_chapter"]=9908,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28630,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=9448,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=80110,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8091,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=80110,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=7889,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=990,
+ ["unit"]=0
+ }
+ },
+ [9908]={
+ ["next_chapter"]=9909,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28693,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=9469,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=80911,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8172,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=80911,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=7889,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=990,
+ ["unit"]=0
+ }
+ },
+ [9909]={
+ ["next_chapter"]=9910,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28757,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=9490,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=81720,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8254,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=81720,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=7889,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=990,
+ ["unit"]=0
+ }
+ },
+ [9910]={
+ ["next_chapter"]=9911,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=28822,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=9511,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=82537,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8336,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=82537,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=8714,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=991,
+ ["unit"]=0
+ }
+ },
+ [9911]={
+ ["next_chapter"]=9912,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28887,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=9533,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=83362,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8420,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=83362,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=8714,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=991,
+ ["unit"]=0
+ }
+ },
+ [9912]={
+ ["next_chapter"]=9913,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28952,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=9554,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=84196,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8504,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=84196,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=8714,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=991,
+ ["unit"]=0
+ }
+ },
+ [9913]={
+ ["next_chapter"]=9914,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29017,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=9576,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=85038,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8589,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=85038,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=8714,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=991,
+ ["unit"]=0
+ }
+ },
+ [9914]={
+ ["next_chapter"]=9915,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29083,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=9597,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=85888,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8675,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=85888,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=8714,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=991,
+ ["unit"]=0
+ }
+ },
+ [9915]={
+ ["next_chapter"]=9916,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29149,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=9619,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=86747,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8761,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=86747,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=8714,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=991,
+ ["unit"]=0
+ }
+ },
+ [9916]={
+ ["next_chapter"]=9917,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29215,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=9641,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=87615,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8849,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=87615,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=8714,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=991,
+ ["unit"]=0
+ }
+ },
+ [9917]={
+ ["next_chapter"]=9918,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29281,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=9663,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=88491,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8938,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=88491,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=8714,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=991,
+ ["unit"]=0
+ }
+ },
+ [9918]={
+ ["next_chapter"]=9919,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29348,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=9685,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=89376,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9027,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=89376,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=8714,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=991,
+ ["unit"]=0
+ }
+ },
+ [9919]={
+ ["next_chapter"]=9920,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29416,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=9707,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=90269,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9117,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=90269,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=8714,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=991,
+ ["unit"]=0
+ }
+ },
+ [9920]={
+ ["next_chapter"]=9921,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=29483,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=9729,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=91172,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9208,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=91172,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=9626,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=992,
+ ["unit"]=0
+ }
+ },
+ [9921]={
+ ["next_chapter"]=9922,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29551,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=9752,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=92084,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9300,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=92084,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=9626,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=992,
+ ["unit"]=0
+ }
+ },
+ [9922]={
+ ["next_chapter"]=9923,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29619,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=9774,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=93005,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9393,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=93005,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=9626,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=992,
+ ["unit"]=0
+ }
+ },
+ [9923]={
+ ["next_chapter"]=9924,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29688,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=9797,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=93935,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9487,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=93935,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=9626,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=992,
+ ["unit"]=0
+ }
+ },
+ [9924]={
+ ["next_chapter"]=9925,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29757,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=9820,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=94874,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9582,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=94874,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=9626,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=992,
+ ["unit"]=0
+ }
+ },
+ [9925]={
+ ["next_chapter"]=9926,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29826,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=9843,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=95823,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9678,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=95823,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=9626,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=992,
+ ["unit"]=0
+ }
+ },
+ [9926]={
+ ["next_chapter"]=9927,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29896,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=9866,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=96781,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9775,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=96781,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=9626,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=992,
+ ["unit"]=0
+ }
+ },
+ [9927]={
+ ["next_chapter"]=9928,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29965,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=9889,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=97749,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9873,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=97749,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=9626,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=992,
+ ["unit"]=0
+ }
+ },
+ [9928]={
+ ["next_chapter"]=9929,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30036,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=9912,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=98726,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9971,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=98726,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=9626,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=992,
+ ["unit"]=0
+ }
+ },
+ [9929]={
+ ["next_chapter"]=9930,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30106,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=9935,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=99714,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10071,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=99714,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=9626,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=992,
+ ["unit"]=0
+ }
+ },
+ [9930]={
+ ["next_chapter"]=9931,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=30177,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=9958,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=100711,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10172,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=100711,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=10633,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=993,
+ ["unit"]=0
+ }
+ },
+ [9931]={
+ ["next_chapter"]=9932,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30248,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=9982,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=101718,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10274,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=101718,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=10633,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=993,
+ ["unit"]=0
+ }
+ },
+ [9932]={
+ ["next_chapter"]=9933,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30320,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=10005,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=102735,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10376,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=102735,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=10633,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=993,
+ ["unit"]=0
+ }
+ },
+ [9933]={
+ ["next_chapter"]=9934,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30391,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=10029,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=103762,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10480,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=103762,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=10633,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=993,
+ ["unit"]=0
+ }
+ },
+ [9934]={
+ ["next_chapter"]=9935,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30464,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=10053,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=104800,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10585,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=104800,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=10633,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=993,
+ ["unit"]=0
+ }
+ },
+ [9935]={
+ ["next_chapter"]=9936,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30536,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=10077,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=105848,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10691,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=105848,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=10633,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=993,
+ ["unit"]=0
+ }
+ },
+ [9936]={
+ ["next_chapter"]=9937,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30609,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=10101,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=106907,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10798,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=106907,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=10633,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=993,
+ ["unit"]=0
+ }
+ },
+ [9937]={
+ ["next_chapter"]=9938,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30682,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=10125,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=107976,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10906,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=107976,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=10633,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=993,
+ ["unit"]=0
+ }
+ },
+ [9938]={
+ ["next_chapter"]=9939,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30756,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=10149,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=109055,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11015,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=109055,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=10633,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=993,
+ ["unit"]=0
+ }
+ },
+ [9939]={
+ ["next_chapter"]=9940,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30829,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=10174,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=110146,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11125,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=110146,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=10633,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=993,
+ ["unit"]=0
+ }
+ },
+ [9940]={
+ ["next_chapter"]=9941,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=30904,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=10198,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=111247,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11236,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=111247,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=11746,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=994,
+ ["unit"]=0
+ }
+ },
+ [9941]={
+ ["next_chapter"]=9942,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30978,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=10223,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=112360,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11348,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=112360,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=11746,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=994,
+ ["unit"]=0
+ }
+ },
+ [9942]={
+ ["next_chapter"]=9943,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=31053,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=10247,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=113483,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11462,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=113483,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=11746,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=994,
+ ["unit"]=0
+ }
+ },
+ [9943]={
+ ["next_chapter"]=9944,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=31128,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=10272,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=114618,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11576,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=114618,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=11746,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=994,
+ ["unit"]=0
+ }
+ },
+ [9944]={
+ ["next_chapter"]=9945,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=31204,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=10297,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=115764,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11692,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=115764,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=11746,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=994,
+ ["unit"]=0
+ }
+ },
+ [9945]={
+ ["next_chapter"]=9946,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=31280,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=10322,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=116922,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11809,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=116922,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=11746,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=994,
+ ["unit"]=0
+ }
+ },
+ [9946]={
+ ["next_chapter"]=9947,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=31356,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=10347,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=118091,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11927,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=118091,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=11746,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=994,
+ ["unit"]=0
+ }
+ },
+ [9947]={
+ ["next_chapter"]=9948,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=31432,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=10373,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=119272,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12046,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=119272,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=11746,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=994,
+ ["unit"]=0
+ }
+ },
+ [9948]={
+ ["next_chapter"]=9949,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=31509,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=10398,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=120465,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12167,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=120465,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=11746,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=994,
+ ["unit"]=0
+ }
+ },
+ [9949]={
+ ["next_chapter"]=9950,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=31586,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=10424,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=121670,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12289,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=121670,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=11746,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=994,
+ ["unit"]=0
+ }
+ },
+ [9950]={
+ ["next_chapter"]=9951,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=31664,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=10449,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=122886,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12412,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=122886,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=12975,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=995,
+ ["unit"]=0
+ }
+ },
+ [9951]={
+ ["next_chapter"]=9952,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=31742,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=10475,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=124115,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12536,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=124115,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=12975,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=995,
+ ["unit"]=0
+ }
+ },
+ [9952]={
+ ["next_chapter"]=9953,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=31820,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=10501,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=125356,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12661,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=125356,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=12975,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=995,
+ ["unit"]=0
+ }
+ },
+ [9953]={
+ ["next_chapter"]=9954,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=31899,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=10527,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=126610,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12788,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=126610,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=12975,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=995,
+ ["unit"]=0
+ }
+ },
+ [9954]={
+ ["next_chapter"]=9955,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=31978,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=10553,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=127876,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12915,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=127876,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=12975,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=995,
+ ["unit"]=0
+ }
+ },
+ [9955]={
+ ["next_chapter"]=9956,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=32057,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=10579,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=129155,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13045,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=129155,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=12975,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=995,
+ ["unit"]=0
+ }
+ },
+ [9956]={
+ ["next_chapter"]=9957,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=32137,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=10605,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=130446,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13175,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=130446,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=12975,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=995,
+ ["unit"]=0
+ }
+ },
+ [9957]={
+ ["next_chapter"]=9958,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=32217,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=10632,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=131751,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13307,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=131751,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=12975,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=995,
+ ["unit"]=0
+ }
+ },
+ [9958]={
+ ["next_chapter"]=9959,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=32297,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=10658,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=133068,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13440,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=133068,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=12975,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=995,
+ ["unit"]=0
+ }
+ },
+ [9959]={
+ ["next_chapter"]=9960,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=32378,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=10685,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=134399,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13574,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=134399,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=12975,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=995,
+ ["unit"]=0
+ }
+ },
+ [9960]={
+ ["next_chapter"]=9961,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=32459,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=10711,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=135743,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13710,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=135743,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=14332,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=996,
+ ["unit"]=0
+ }
+ },
+ [9961]={
+ ["next_chapter"]=9962,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=32540,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=10738,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=137100,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13847,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=137100,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=14332,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=996,
+ ["unit"]=0
+ }
+ },
+ [9962]={
+ ["next_chapter"]=9963,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=32622,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=10765,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=138471,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13986,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=138471,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=14332,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=996,
+ ["unit"]=0
+ }
+ },
+ [9963]={
+ ["next_chapter"]=9964,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=32704,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=10792,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=139856,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14125,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=139856,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=14332,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=996,
+ ["unit"]=0
+ }
+ },
+ [9964]={
+ ["next_chapter"]=9965,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=32787,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=10820,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=141255,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14267,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=141255,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=14332,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=996,
+ ["unit"]=0
+ }
+ },
+ [9965]={
+ ["next_chapter"]=9966,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=32870,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=10847,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=142667,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14409,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=142667,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=14332,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=996,
+ ["unit"]=0
+ }
+ },
+ [9966]={
+ ["next_chapter"]=9967,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=32953,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=10874,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=144094,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14553,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=144094,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=14332,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=996,
+ ["unit"]=0
+ }
+ },
+ [9967]={
+ ["next_chapter"]=9968,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=33036,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=10902,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=145535,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14699,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=145535,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=14332,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=996,
+ ["unit"]=0
+ }
+ },
+ [9968]={
+ ["next_chapter"]=9969,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=33120,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=10930,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=146990,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14846,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=146990,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=14332,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=996,
+ ["unit"]=0
+ }
+ },
+ [9969]={
+ ["next_chapter"]=9970,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=33205,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=10958,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=148460,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14994,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=148460,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=14332,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=996,
+ ["unit"]=0
+ }
+ },
+ [9970]={
+ ["next_chapter"]=9971,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=33289,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=10985,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=149945,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15144,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=149945,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=15831,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=997,
+ ["unit"]=0
+ }
+ },
+ [9971]={
+ ["next_chapter"]=9972,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=33374,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=11014,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=151444,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15296,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=151444,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=15831,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=997,
+ ["unit"]=0
+ }
+ },
+ [9972]={
+ ["next_chapter"]=9973,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=33460,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=11042,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=152959,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15449,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=152959,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=15831,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=997,
+ ["unit"]=0
+ }
+ },
+ [9973]={
+ ["next_chapter"]=9974,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=33545,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=11070,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=154488,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15603,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=154488,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=15831,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=997,
+ ["unit"]=0
+ }
+ },
+ [9974]={
+ ["next_chapter"]=9975,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=33632,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=11098,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=156033,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15759,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=156033,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=15831,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=997,
+ ["unit"]=0
+ }
+ },
+ [9975]={
+ ["next_chapter"]=9976,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=33718,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=11127,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=157593,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15917,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=157593,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=15831,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=997,
+ ["unit"]=0
+ }
+ },
+ [9976]={
+ ["next_chapter"]=9977,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=33805,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=11156,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=159169,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16076,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=159169,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=15831,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=997,
+ ["unit"]=0
+ }
+ },
+ [9977]={
+ ["next_chapter"]=9978,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=33892,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=11184,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=160761,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16237,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=160761,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=15831,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=997,
+ ["unit"]=0
+ }
+ },
+ [9978]={
+ ["next_chapter"]=9979,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=33980,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=11213,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=162369,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16399,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=162369,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=15831,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=997,
+ ["unit"]=0
+ }
+ },
+ [9979]={
+ ["next_chapter"]=9980,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=34067,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=11242,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=163992,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16563,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=163992,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=15831,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=997,
+ ["unit"]=0
+ }
+ },
+ [9980]={
+ ["next_chapter"]=9981,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=34156,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=11271,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=165632,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16729,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=165632,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=17488,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=998,
+ ["unit"]=0
+ }
+ },
+ [9981]={
+ ["next_chapter"]=9982,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=34244,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=11301,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=167289,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16896,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=167289,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=17488,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=998,
+ ["unit"]=0
+ }
+ },
+ [9982]={
+ ["next_chapter"]=9983,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=34333,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=11330,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=168961,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17065,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=168961,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=17488,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=998,
+ ["unit"]=0
+ }
+ },
+ [9983]={
+ ["next_chapter"]=9984,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=34423,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=11360,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=170651,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17236,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=170651,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=17488,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=998,
+ ["unit"]=0
+ }
+ },
+ [9984]={
+ ["next_chapter"]=9985,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=34513,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=11389,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=172358,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17408,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=172358,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=17488,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=998,
+ ["unit"]=0
+ }
+ },
+ [9985]={
+ ["next_chapter"]=9986,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=34603,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=11419,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=174081,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17582,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=174081,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=17488,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=998,
+ ["unit"]=0
+ }
+ },
+ [9986]={
+ ["next_chapter"]=9987,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=34693,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=11449,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=175822,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17758,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=175822,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=17488,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=998,
+ ["unit"]=0
+ }
+ },
+ [9987]={
+ ["next_chapter"]=9988,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=34784,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=11479,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=177580,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17936,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=177580,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=17488,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=998,
+ ["unit"]=0
+ }
+ },
+ [9988]={
+ ["next_chapter"]=9989,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=34875,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=11509,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=179356,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18115,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=179356,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=17488,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=998,
+ ["unit"]=0
+ }
+ },
+ [9989]={
+ ["next_chapter"]=9990,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=34967,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=11539,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=181149,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18296,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=181149,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=17488,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=998,
+ ["unit"]=0
+ }
+ },
+ [9990]={
+ ["next_chapter"]=9991,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=35059,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=11569,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=182961,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18479,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=182961,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=19317,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=999,
+ ["unit"]=0
+ }
+ },
+ [9991]={
+ ["next_chapter"]=9992,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=35151,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=11600,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=184791,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18664,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=184791,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=19317,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=999,
+ ["unit"]=0
+ }
+ },
+ [9992]={
+ ["next_chapter"]=9993,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=35244,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=11631,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=186638,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18850,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=186638,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=19317,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=999,
+ ["unit"]=0
+ }
+ },
+ [9993]={
+ ["next_chapter"]=9994,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=35337,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=11661,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=188505,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19039,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=188505,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=19317,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=999,
+ ["unit"]=0
+ }
+ },
+ [9994]={
+ ["next_chapter"]=9995,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=35431,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=11692,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=190390,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19229,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=190390,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=19317,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=999,
+ ["unit"]=0
+ }
+ },
+ [9995]={
+ ["next_chapter"]=9996,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=35525,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=11723,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=192294,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19422,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=192294,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=19317,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=999,
+ ["unit"]=0
+ }
+ },
+ [9996]={
+ ["next_chapter"]=9997,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=35619,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=11754,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=194217,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19616,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=194217,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=19317,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=999,
+ ["unit"]=0
+ }
+ },
+ [9997]={
+ ["next_chapter"]=9998,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=35714,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=11786,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=196159,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19812,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=196159,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=19317,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=999,
+ ["unit"]=0
+ }
+ },
+ [9998]={
+ ["next_chapter"]=9999,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=35809,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=11817,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=198121,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20010,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=198121,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=19317,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=999,
+ ["unit"]=0
+ }
+ },
+ [9999]={
+ ["next_chapter"]=10000,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=35904,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=11848,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=200102,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20210,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=200102,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=19317,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=999,
+ ["unit"]=0
+ }
+ },
+ [10000]={
+ ["next_chapter"]=10001,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=36000,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=11880,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=202103,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20412,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=202103,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=21338,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1000,
+ ["unit"]=0
+ }
+ }
+}
+local config = {
+data=chapter2,count=5000
+}
+return config
\ No newline at end of file
diff --git a/lua/app/config/chapter2.lua.meta b/lua/app/config/chapter2.lua.meta
new file mode 100644
index 00000000..bbf74613
--- /dev/null
+++ b/lua/app/config/chapter2.lua.meta
@@ -0,0 +1,10 @@
+fileFormatVersion: 2
+guid: 785dd02b9f129eb488783ac22e798f7c
+ScriptedImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 2
+ userData:
+ assetBundleName:
+ assetBundleVariant:
+ script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
diff --git a/lua/app/config/chapter3.lua b/lua/app/config/chapter3.lua
new file mode 100644
index 00000000..2572d91a
--- /dev/null
+++ b/lua/app/config/chapter3.lua
@@ -0,0 +1,175506 @@
+local chapter3 = {
+ [10001]={
+ ["next_chapter"]=10002,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=36096,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=11912,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=204124,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20617,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=204124,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=21338,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1000,
+ ["unit"]=0
+ }
+ },
+ [10002]={
+ ["next_chapter"]=10003,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=36193,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=11944,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=206165,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20823,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=206165,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=21338,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1000,
+ ["unit"]=0
+ }
+ },
+ [10003]={
+ ["next_chapter"]=10004,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=36290,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=11976,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=208227,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21031,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=208227,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=21338,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1000,
+ ["unit"]=0
+ }
+ },
+ [10004]={
+ ["next_chapter"]=10005,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=36387,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=12008,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=210309,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21241,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=210309,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=21338,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1000,
+ ["unit"]=0
+ }
+ },
+ [10005]={
+ ["next_chapter"]=10006,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=36485,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=12040,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=212412,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21454,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=212412,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=21338,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1000,
+ ["unit"]=0
+ }
+ },
+ [10006]={
+ ["next_chapter"]=10007,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=36583,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=12072,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=214536,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21668,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=214536,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=21338,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1000,
+ ["unit"]=0
+ }
+ },
+ [10007]={
+ ["next_chapter"]=10008,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=36681,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=12105,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=216681,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21885,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=216681,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=21338,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1000,
+ ["unit"]=0
+ }
+ },
+ [10008]={
+ ["next_chapter"]=10009,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=36780,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=12138,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=218848,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22104,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=218848,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=21338,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1000,
+ ["unit"]=0
+ }
+ },
+ [10009]={
+ ["next_chapter"]=10010,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=36880,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=12170,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=221037,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22325,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=221037,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=21338,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1000,
+ ["unit"]=0
+ }
+ },
+ [10010]={
+ ["next_chapter"]=10011,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=36979,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=12203,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=223247,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22548,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=223247,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=23571,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1001,
+ ["unit"]=0
+ }
+ },
+ [10011]={
+ ["next_chapter"]=10012,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=37079,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=12236,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=225480,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22773,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=225480,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=23571,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1001,
+ ["unit"]=0
+ }
+ },
+ [10012]={
+ ["next_chapter"]=10013,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=37180,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=12269,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=227734,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23001,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=227734,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=23571,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1001,
+ ["unit"]=0
+ }
+ },
+ [10013]={
+ ["next_chapter"]=10014,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=37281,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=12303,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=230012,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23231,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=230012,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=23571,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1001,
+ ["unit"]=0
+ }
+ },
+ [10014]={
+ ["next_chapter"]=10015,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=37382,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=12336,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=232312,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23464,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=232312,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=23571,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1001,
+ ["unit"]=0
+ }
+ },
+ [10015]={
+ ["next_chapter"]=10016,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=37484,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=12370,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=234635,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23698,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=234635,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=23571,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1001,
+ ["unit"]=0
+ }
+ },
+ [10016]={
+ ["next_chapter"]=10017,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=37586,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=12403,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=236981,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23935,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=236981,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=23571,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1001,
+ ["unit"]=0
+ }
+ },
+ [10017]={
+ ["next_chapter"]=10018,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=37688,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=12437,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=239351,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24174,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=239351,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=23571,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1001,
+ ["unit"]=0
+ }
+ },
+ [10018]={
+ ["next_chapter"]=10019,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=37791,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=12471,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=241745,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24416,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=241745,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=23571,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1001,
+ ["unit"]=0
+ }
+ },
+ [10019]={
+ ["next_chapter"]=10020,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=37894,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=12505,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=244162,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24660,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=244162,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=23571,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1001,
+ ["unit"]=0
+ }
+ },
+ [10020]={
+ ["next_chapter"]=10021,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=37998,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=12539,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=246604,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24907,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=246604,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=26037,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1002,
+ ["unit"]=0
+ }
+ },
+ [10021]={
+ ["next_chapter"]=10022,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=38102,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=12574,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=249070,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25156,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=249070,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=26037,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1002,
+ ["unit"]=0
+ }
+ },
+ [10022]={
+ ["next_chapter"]=10023,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=38206,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=12608,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=251560,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25408,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=251560,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=26037,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1002,
+ ["unit"]=0
+ }
+ },
+ [10023]={
+ ["next_chapter"]=10024,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=38311,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=12643,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=254076,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25662,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=254076,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=26037,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1002,
+ ["unit"]=0
+ }
+ },
+ [10024]={
+ ["next_chapter"]=10025,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=38416,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=12677,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=256617,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25918,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=256617,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=26037,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1002,
+ ["unit"]=0
+ }
+ },
+ [10025]={
+ ["next_chapter"]=10026,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=38522,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=12712,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=259183,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26177,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=259183,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=26037,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1002,
+ ["unit"]=0
+ }
+ },
+ [10026]={
+ ["next_chapter"]=10027,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=38628,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=12747,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=261775,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26439,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=261775,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=26037,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1002,
+ ["unit"]=0
+ }
+ },
+ [10027]={
+ ["next_chapter"]=10028,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=38734,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=12782,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=264393,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26704,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=264393,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=26037,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1002,
+ ["unit"]=0
+ }
+ },
+ [10028]={
+ ["next_chapter"]=10029,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=38841,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=12818,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=267037,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26971,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=267037,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=26037,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1002,
+ ["unit"]=0
+ }
+ },
+ [10029]={
+ ["next_chapter"]=10030,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=38949,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=12853,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=269707,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27240,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=269707,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=26037,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1002,
+ ["unit"]=0
+ }
+ },
+ [10030]={
+ ["next_chapter"]=10031,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=39056,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=12889,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=272404,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27513,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=272404,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=28761,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1003,
+ ["unit"]=0
+ }
+ },
+ [10031]={
+ ["next_chapter"]=10032,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=39164,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=12924,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=275128,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27788,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=275128,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=28761,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1003,
+ ["unit"]=0
+ }
+ },
+ [10032]={
+ ["next_chapter"]=10033,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=39273,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=12960,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=277879,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28066,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=277879,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=28761,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1003,
+ ["unit"]=0
+ }
+ },
+ [10033]={
+ ["next_chapter"]=10034,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=39382,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=12996,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=280658,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28346,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=280658,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=28761,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1003,
+ ["unit"]=0
+ }
+ },
+ [10034]={
+ ["next_chapter"]=10035,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=39491,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=13032,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=283465,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28630,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=283465,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=28761,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1003,
+ ["unit"]=0
+ }
+ },
+ [10035]={
+ ["next_chapter"]=10036,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=39601,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=13068,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=286299,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28916,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=286299,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=28761,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1003,
+ ["unit"]=0
+ }
+ },
+ [10036]={
+ ["next_chapter"]=10037,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=39711,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=13105,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=289162,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29205,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=289162,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=28761,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1003,
+ ["unit"]=0
+ }
+ },
+ [10037]={
+ ["next_chapter"]=10038,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=39821,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=13141,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=292054,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29497,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=292054,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=28761,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1003,
+ ["unit"]=0
+ }
+ },
+ [10038]={
+ ["next_chapter"]=10039,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=39932,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=13178,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=294974,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29792,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=294974,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=28761,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1003,
+ ["unit"]=0
+ }
+ },
+ [10039]={
+ ["next_chapter"]=10040,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=40044,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=13214,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=297924,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30090,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=297924,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=28761,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1003,
+ ["unit"]=0
+ }
+ },
+ [10040]={
+ ["next_chapter"]=10041,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=40155,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=13251,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=300903,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30391,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=300903,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=31770,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1004,
+ ["unit"]=0
+ }
+ },
+ [10041]={
+ ["next_chapter"]=10042,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=40268,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=13288,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=303912,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30695,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=303912,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=31770,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1004,
+ ["unit"]=0
+ }
+ },
+ [10042]={
+ ["next_chapter"]=10043,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=40380,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=13325,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=306952,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31002,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=306952,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=31770,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1004,
+ ["unit"]=0
+ }
+ },
+ [10043]={
+ ["next_chapter"]=10044,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=40493,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=13363,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=310021,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31312,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=310021,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=31770,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1004,
+ ["unit"]=0
+ }
+ },
+ [10044]={
+ ["next_chapter"]=10045,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=40607,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=13400,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=313121,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31625,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=313121,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=31770,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1004,
+ ["unit"]=0
+ }
+ },
+ [10045]={
+ ["next_chapter"]=10046,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=40720,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=13438,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=316253,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31942,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=316253,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=31770,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1004,
+ ["unit"]=0
+ }
+ },
+ [10046]={
+ ["next_chapter"]=10047,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=40835,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=13475,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=319415,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32261,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=319415,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=31770,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1004,
+ ["unit"]=0
+ }
+ },
+ [10047]={
+ ["next_chapter"]=10048,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=40949,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=13513,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=322609,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32584,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=322609,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=31770,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1004,
+ ["unit"]=0
+ }
+ },
+ [10048]={
+ ["next_chapter"]=10049,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=41065,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=13551,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=325835,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32909,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=325835,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=31770,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1004,
+ ["unit"]=0
+ }
+ },
+ [10049]={
+ ["next_chapter"]=10050,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=41180,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=13589,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=329094,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33238,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=329094,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=31770,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1004,
+ ["unit"]=0
+ }
+ },
+ [10050]={
+ ["next_chapter"]=10051,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=41296,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=13628,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=332385,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33571,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=332385,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=35094,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1005,
+ ["unit"]=0
+ }
+ },
+ [10051]={
+ ["next_chapter"]=10052,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=41412,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=13666,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=335708,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33907,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=335708,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=35094,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1005,
+ ["unit"]=0
+ }
+ },
+ [10052]={
+ ["next_chapter"]=10053,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=41529,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=13705,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=339066,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34246,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=339066,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=35094,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1005,
+ ["unit"]=0
+ }
+ },
+ [10053]={
+ ["next_chapter"]=10054,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=41646,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=13743,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=342456,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34588,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=342456,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=35094,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1005,
+ ["unit"]=0
+ }
+ },
+ [10054]={
+ ["next_chapter"]=10055,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=41764,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=13782,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=345881,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34934,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=345881,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=35094,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1005,
+ ["unit"]=0
+ }
+ },
+ [10055]={
+ ["next_chapter"]=10056,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=41882,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=13821,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=349340,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35283,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=349340,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=35094,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1005,
+ ["unit"]=0
+ }
+ },
+ [10056]={
+ ["next_chapter"]=10057,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=42001,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=13860,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=352833,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35636,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=352833,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=35094,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1005,
+ ["unit"]=0
+ }
+ },
+ [10057]={
+ ["next_chapter"]=10058,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=42120,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=13899,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=356361,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35992,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=356361,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=35094,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1005,
+ ["unit"]=0
+ }
+ },
+ [10058]={
+ ["next_chapter"]=10059,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=42239,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=13939,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=359925,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36352,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=359925,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=35094,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1005,
+ ["unit"]=0
+ }
+ },
+ [10059]={
+ ["next_chapter"]=10060,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=42359,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=13978,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=363524,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36716,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=363524,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=35094,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1005,
+ ["unit"]=0
+ }
+ },
+ [10060]={
+ ["next_chapter"]=10061,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=42479,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=14018,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=367159,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37083,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=367159,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=38765,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1006,
+ ["unit"]=0
+ }
+ },
+ [10061]={
+ ["next_chapter"]=10062,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=42599,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=14058,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=370831,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37454,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=370831,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=38765,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1006,
+ ["unit"]=0
+ }
+ },
+ [10062]={
+ ["next_chapter"]=10063,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=42721,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=14098,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=374539,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37828,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=374539,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=38765,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1006,
+ ["unit"]=0
+ }
+ },
+ [10063]={
+ ["next_chapter"]=10064,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=42842,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=14138,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=378285,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=38207,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=378285,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=38765,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1006,
+ ["unit"]=0
+ }
+ },
+ [10064]={
+ ["next_chapter"]=10065,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=42964,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=14178,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=382068,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=38589,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=382068,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=38765,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1006,
+ ["unit"]=0
+ }
+ },
+ [10065]={
+ ["next_chapter"]=10066,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=43086,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=14218,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=385888,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=38975,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=385888,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=38765,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1006,
+ ["unit"]=0
+ }
+ },
+ [10066]={
+ ["next_chapter"]=10067,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=43209,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=14259,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=389747,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39364,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=389747,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=38765,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1006,
+ ["unit"]=0
+ }
+ },
+ [10067]={
+ ["next_chapter"]=10068,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=43332,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=14300,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=393645,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39758,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=393645,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=38765,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1006,
+ ["unit"]=0
+ }
+ },
+ [10068]={
+ ["next_chapter"]=10069,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=43456,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=14340,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=397581,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=40156,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=397581,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=38765,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1006,
+ ["unit"]=0
+ }
+ },
+ [10069]={
+ ["next_chapter"]=10070,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=43580,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=14381,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=401557,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=40557,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=401557,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=38765,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1006,
+ ["unit"]=0
+ }
+ },
+ [10070]={
+ ["next_chapter"]=10071,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=43705,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=14423,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=405572,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=40963,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=405572,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=42821,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1007,
+ ["unit"]=0
+ }
+ },
+ [10071]={
+ ["next_chapter"]=10072,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=43830,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=14464,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=409628,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41372,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=409628,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=42821,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1007,
+ ["unit"]=0
+ }
+ },
+ [10072]={
+ ["next_chapter"]=10073,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=43955,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=14505,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=413724,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41786,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=413724,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=42821,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1007,
+ ["unit"]=0
+ }
+ },
+ [10073]={
+ ["next_chapter"]=10074,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=44081,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=14547,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=417862,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=42204,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=417862,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=42821,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1007,
+ ["unit"]=0
+ }
+ },
+ [10074]={
+ ["next_chapter"]=10075,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=44207,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=14588,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=422040,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=42626,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=422040,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=42821,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1007,
+ ["unit"]=0
+ }
+ },
+ [10075]={
+ ["next_chapter"]=10076,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=44334,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=14630,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=426261,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=43052,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=426261,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=42821,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1007,
+ ["unit"]=0
+ }
+ },
+ [10076]={
+ ["next_chapter"]=10077,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=44461,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=14672,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=430523,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=43483,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=430523,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=42821,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1007,
+ ["unit"]=0
+ }
+ },
+ [10077]={
+ ["next_chapter"]=10078,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=44589,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=14714,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=434828,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=43918,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=434828,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=42821,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1007,
+ ["unit"]=0
+ }
+ },
+ [10078]={
+ ["next_chapter"]=10079,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=44717,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=14757,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=439177,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=44357,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=439177,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=42821,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1007,
+ ["unit"]=0
+ }
+ },
+ [10079]={
+ ["next_chapter"]=10080,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=44845,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=14799,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=443569,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=44800,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=443569,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=42821,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1007,
+ ["unit"]=0
+ }
+ },
+ [10080]={
+ ["next_chapter"]=10081,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=44974,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=14842,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=448004,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=45248,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=448004,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=47301,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1008,
+ ["unit"]=0
+ }
+ },
+ [10081]={
+ ["next_chapter"]=10082,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=45104,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=14884,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=452484,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=45701,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=452484,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=47301,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1008,
+ ["unit"]=0
+ }
+ },
+ [10082]={
+ ["next_chapter"]=10083,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=45234,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=14927,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=457009,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=46158,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=457009,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=47301,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1008,
+ ["unit"]=0
+ }
+ },
+ [10083]={
+ ["next_chapter"]=10084,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=45364,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=14970,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=461579,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=46619,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=461579,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=47301,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1008,
+ ["unit"]=0
+ }
+ },
+ [10084]={
+ ["next_chapter"]=10085,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=45495,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=15013,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=466195,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=47086,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=466195,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=47301,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1008,
+ ["unit"]=0
+ }
+ },
+ [10085]={
+ ["next_chapter"]=10086,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=45626,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=15057,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=470857,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=47557,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=470857,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=47301,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1008,
+ ["unit"]=0
+ }
+ },
+ [10086]={
+ ["next_chapter"]=10087,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=45757,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=15100,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=475566,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=48032,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=475566,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=47301,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1008,
+ ["unit"]=0
+ }
+ },
+ [10087]={
+ ["next_chapter"]=10088,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=45890,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=15144,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=480321,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=48512,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=480321,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=47301,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1008,
+ ["unit"]=0
+ }
+ },
+ [10088]={
+ ["next_chapter"]=10089,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=46022,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=15187,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=485124,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=48998,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=485124,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=47301,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1008,
+ ["unit"]=0
+ }
+ },
+ [10089]={
+ ["next_chapter"]=10090,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=46155,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=15231,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=489976,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=49488,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=489976,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=47301,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1008,
+ ["unit"]=0
+ }
+ },
+ [10090]={
+ ["next_chapter"]=10091,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=46289,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=15275,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=494875,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=49982,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=494875,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=52250,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1009,
+ ["unit"]=0
+ }
+ },
+ [10091]={
+ ["next_chapter"]=10092,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=46422,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=15319,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=499824,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=50482,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=499824,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=52250,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1009,
+ ["unit"]=0
+ }
+ },
+ [10092]={
+ ["next_chapter"]=10093,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=46557,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=15364,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=504822,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=50987,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=504822,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=52250,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1009,
+ ["unit"]=0
+ }
+ },
+ [10093]={
+ ["next_chapter"]=10094,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=46692,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=15408,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=509871,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=51497,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=509871,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=52250,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1009,
+ ["unit"]=0
+ }
+ },
+ [10094]={
+ ["next_chapter"]=10095,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=46827,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=15453,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=514969,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=52012,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=514969,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=52250,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1009,
+ ["unit"]=0
+ }
+ },
+ [10095]={
+ ["next_chapter"]=10096,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=46963,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=15498,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=520119,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=52532,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=520119,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=52250,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1009,
+ ["unit"]=0
+ }
+ },
+ [10096]={
+ ["next_chapter"]=10097,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=47099,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=15543,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=525320,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=53057,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=525320,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=52250,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1009,
+ ["unit"]=0
+ }
+ },
+ [10097]={
+ ["next_chapter"]=10098,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=47235,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=15588,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=530573,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=53588,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=530573,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=52250,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1009,
+ ["unit"]=0
+ }
+ },
+ [10098]={
+ ["next_chapter"]=10099,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=47372,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=15633,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=535879,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=54124,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=535879,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=52250,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1009,
+ ["unit"]=0
+ }
+ },
+ [10099]={
+ ["next_chapter"]=10100,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=47510,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=15678,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=541238,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=54665,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=541238,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=52250,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1009,
+ ["unit"]=0
+ }
+ },
+ [10100]={
+ ["next_chapter"]=10101,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=47648,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=15724,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=546650,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=55212,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=546650,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=57,
+ ["grasp_gold_reward"]={
+ ["value"]=57716,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1010,
+ ["unit"]=0
+ }
+ },
+ [10101]={
+ ["next_chapter"]=10102,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=47786,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=15770,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=552117,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=55764,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=552117,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=57716,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1010,
+ ["unit"]=0
+ }
+ },
+ [10102]={
+ ["next_chapter"]=10103,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=47925,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=15815,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=557638,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=56321,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=557638,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=57716,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1010,
+ ["unit"]=0
+ }
+ },
+ [10103]={
+ ["next_chapter"]=10104,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=48065,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=15861,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=563214,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=56885,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=563214,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=57716,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1010,
+ ["unit"]=0
+ }
+ },
+ [10104]={
+ ["next_chapter"]=10105,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=48205,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=15908,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=568846,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=57453,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=568846,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=57716,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1010,
+ ["unit"]=0
+ }
+ },
+ [10105]={
+ ["next_chapter"]=10106,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=48345,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=15954,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=574535,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=58028,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=574535,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=57716,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1010,
+ ["unit"]=0
+ }
+ },
+ [10106]={
+ ["next_chapter"]=10107,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=48486,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=16000,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=580280,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=58608,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=580280,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=57716,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1010,
+ ["unit"]=0
+ }
+ },
+ [10107]={
+ ["next_chapter"]=10108,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=48627,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=16047,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=586083,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=59194,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=586083,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=57716,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1010,
+ ["unit"]=0
+ }
+ },
+ [10108]={
+ ["next_chapter"]=10109,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=48769,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=16094,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=591944,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=59786,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=591944,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=57716,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1010,
+ ["unit"]=0
+ }
+ },
+ [10109]={
+ ["next_chapter"]=10110,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=48911,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=16141,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=597863,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=60384,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=597863,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=57716,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1010,
+ ["unit"]=0
+ }
+ },
+ [10110]={
+ ["next_chapter"]=10111,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=49054,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=16188,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=603842,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=60988,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=603842,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=63755,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1011,
+ ["unit"]=0
+ }
+ },
+ [10111]={
+ ["next_chapter"]=10112,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=49197,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=16235,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=609880,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=61598,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=609880,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=63755,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1011,
+ ["unit"]=0
+ }
+ },
+ [10112]={
+ ["next_chapter"]=10113,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=49340,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=16282,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=615979,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=62214,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=615979,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=63755,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1011,
+ ["unit"]=0
+ }
+ },
+ [10113]={
+ ["next_chapter"]=10114,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=49484,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=16330,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=622139,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=62836,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=622139,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=63755,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1011,
+ ["unit"]=0
+ }
+ },
+ [10114]={
+ ["next_chapter"]=10115,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=49629,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=16378,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=628360,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=63464,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=628360,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=63755,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1011,
+ ["unit"]=0
+ }
+ },
+ [10115]={
+ ["next_chapter"]=10116,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=49774,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=16425,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=634644,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=64099,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=634644,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=63755,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1011,
+ ["unit"]=0
+ }
+ },
+ [10116]={
+ ["next_chapter"]=10117,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=49919,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=16473,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=640990,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=64740,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=640990,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=63755,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1011,
+ ["unit"]=0
+ }
+ },
+ [10117]={
+ ["next_chapter"]=10118,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=50065,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=16522,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=647400,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=65387,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=647400,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=63755,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1011,
+ ["unit"]=0
+ }
+ },
+ [10118]={
+ ["next_chapter"]=10119,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=50212,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=16570,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=653874,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=66041,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=653874,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=63755,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1011,
+ ["unit"]=0
+ }
+ },
+ [10119]={
+ ["next_chapter"]=10120,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=50359,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=16618,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=660413,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=66702,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=660413,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=63755,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1011,
+ ["unit"]=0
+ }
+ },
+ [10120]={
+ ["next_chapter"]=10121,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=50506,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=16667,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=667017,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=67369,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=667017,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=70425,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1012,
+ ["unit"]=0
+ }
+ },
+ [10121]={
+ ["next_chapter"]=10122,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=50654,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=16716,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=673687,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=68042,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=673687,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=70425,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1012,
+ ["unit"]=0
+ }
+ },
+ [10122]={
+ ["next_chapter"]=10123,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=50802,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=16765,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=680424,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=68723,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=680424,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=70425,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1012,
+ ["unit"]=0
+ }
+ },
+ [10123]={
+ ["next_chapter"]=10124,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=50951,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=16814,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=687229,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=69410,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=687229,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=70425,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1012,
+ ["unit"]=0
+ }
+ },
+ [10124]={
+ ["next_chapter"]=10125,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=51100,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=16863,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=694101,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=70104,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=694101,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=70425,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1012,
+ ["unit"]=0
+ }
+ },
+ [10125]={
+ ["next_chapter"]=10126,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=51250,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=16913,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=701042,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=70805,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=701042,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=70425,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1012,
+ ["unit"]=0
+ }
+ },
+ [10126]={
+ ["next_chapter"]=10127,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=51400,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=16962,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=708052,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=71513,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=708052,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=70425,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1012,
+ ["unit"]=0
+ }
+ },
+ [10127]={
+ ["next_chapter"]=10128,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=51551,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=17012,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=715133,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=72228,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=715133,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=70425,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1012,
+ ["unit"]=0
+ }
+ },
+ [10128]={
+ ["next_chapter"]=10129,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=51702,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=17062,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=722284,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=72951,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=722284,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=70425,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1012,
+ ["unit"]=0
+ }
+ },
+ [10129]={
+ ["next_chapter"]=10130,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=51854,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=17112,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=729507,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=73680,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=729507,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=70425,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1012,
+ ["unit"]=0
+ }
+ },
+ [10130]={
+ ["next_chapter"]=10131,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=52006,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=17162,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=736802,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=74417,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=736802,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=77793,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1013,
+ ["unit"]=0
+ }
+ },
+ [10131]={
+ ["next_chapter"]=10132,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=52159,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=17212,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=744170,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=75161,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=744170,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=77793,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1013,
+ ["unit"]=0
+ }
+ },
+ [10132]={
+ ["next_chapter"]=10133,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=52312,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=17263,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=751612,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=75913,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=751612,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=77793,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1013,
+ ["unit"]=0
+ }
+ },
+ [10133]={
+ ["next_chapter"]=10134,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=52465,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=17314,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=759128,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=76672,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=759128,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=77793,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1013,
+ ["unit"]=0
+ }
+ },
+ [10134]={
+ ["next_chapter"]=10135,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=52620,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=17364,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=766719,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=77439,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=766719,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=77793,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1013,
+ ["unit"]=0
+ }
+ },
+ [10135]={
+ ["next_chapter"]=10136,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=52774,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=17415,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=774386,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=78213,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=774386,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=77793,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1013,
+ ["unit"]=0
+ }
+ },
+ [10136]={
+ ["next_chapter"]=10137,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=52929,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=17467,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=782130,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=78995,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=782130,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=77793,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1013,
+ ["unit"]=0
+ }
+ },
+ [10137]={
+ ["next_chapter"]=10138,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=53085,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=17518,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=789951,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=79785,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=789951,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=77793,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1013,
+ ["unit"]=0
+ }
+ },
+ [10138]={
+ ["next_chapter"]=10139,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=53241,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=17569,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=797851,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=80583,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=797851,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=77793,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1013,
+ ["unit"]=0
+ }
+ },
+ [10139]={
+ ["next_chapter"]=10140,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=53397,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=17621,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=805830,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=81389,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=805830,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=77793,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1013,
+ ["unit"]=0
+ }
+ },
+ [10140]={
+ ["next_chapter"]=10141,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=53554,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=17673,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=813888,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=82203,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=813888,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=85932,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1014,
+ ["unit"]=0
+ }
+ },
+ [10141]={
+ ["next_chapter"]=10142,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=53712,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=17725,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=822027,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=83025,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=822027,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=85932,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1014,
+ ["unit"]=0
+ }
+ },
+ [10142]={
+ ["next_chapter"]=10143,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=53870,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=17777,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=830247,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=83855,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=830247,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=85932,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1014,
+ ["unit"]=0
+ }
+ },
+ [10143]={
+ ["next_chapter"]=10144,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=54029,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=17829,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=838549,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=84693,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=838549,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=85932,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1014,
+ ["unit"]=0
+ }
+ },
+ [10144]={
+ ["next_chapter"]=10145,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=54188,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=17882,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=846935,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=85540,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=846935,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=85932,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1014,
+ ["unit"]=0
+ }
+ },
+ [10145]={
+ ["next_chapter"]=10146,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=54347,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=17935,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=855404,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=86396,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=855404,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=85932,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1014,
+ ["unit"]=0
+ }
+ },
+ [10146]={
+ ["next_chapter"]=10147,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=54507,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=17987,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=863958,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=87260,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=863958,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=85932,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1014,
+ ["unit"]=0
+ }
+ },
+ [10147]={
+ ["next_chapter"]=10148,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=54668,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=18040,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=872598,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=88132,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=872598,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=85932,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1014,
+ ["unit"]=0
+ }
+ },
+ [10148]={
+ ["next_chapter"]=10149,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=54829,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=18093,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=881324,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=89014,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=881324,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=85932,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1014,
+ ["unit"]=0
+ }
+ },
+ [10149]={
+ ["next_chapter"]=10150,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=54990,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=18147,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=890137,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=89904,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=890137,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=85932,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1014,
+ ["unit"]=0
+ }
+ },
+ [10150]={
+ ["next_chapter"]=10151,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=55152,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=18200,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=899038,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=90803,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=899038,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=94922,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1015,
+ ["unit"]=0
+ }
+ },
+ [10151]={
+ ["next_chapter"]=10152,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=55314,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=18254,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=908029,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=91711,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=908029,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=94922,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1015,
+ ["unit"]=0
+ }
+ },
+ [10152]={
+ ["next_chapter"]=10153,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=55477,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=18308,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=917109,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=92628,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=917109,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=94922,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1015,
+ ["unit"]=0
+ }
+ },
+ [10153]={
+ ["next_chapter"]=10154,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=55641,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=18362,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=926280,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=93554,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=926280,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=94922,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1015,
+ ["unit"]=0
+ }
+ },
+ [10154]={
+ ["next_chapter"]=10155,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=55805,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=18416,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=935543,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=94490,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=935543,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=94922,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1015,
+ ["unit"]=0
+ }
+ },
+ [10155]={
+ ["next_chapter"]=10156,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=55969,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=18470,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=944898,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=95435,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=944898,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=94922,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1015,
+ ["unit"]=0
+ }
+ },
+ [10156]={
+ ["next_chapter"]=10157,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=56134,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=18524,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=954347,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=96389,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=954347,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=94922,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1015,
+ ["unit"]=0
+ }
+ },
+ [10157]={
+ ["next_chapter"]=10158,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=56300,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=18579,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=963891,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=97353,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=963891,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=94922,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1015,
+ ["unit"]=0
+ }
+ },
+ [10158]={
+ ["next_chapter"]=10159,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=56466,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=18634,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=973530,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=98327,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=973530,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=94922,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1015,
+ ["unit"]=0
+ }
+ },
+ [10159]={
+ ["next_chapter"]=10160,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=56632,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=18689,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=983265,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=99310,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=983265,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=94922,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1015,
+ ["unit"]=0
+ }
+ },
+ [10160]={
+ ["next_chapter"]=10161,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=56799,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=18744,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=993098,
+ ["unit"]=13
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=100303,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=993098,
+ ["unit"]=13
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=104853,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1016,
+ ["unit"]=0
+ }
+ },
+ [10161]={
+ ["next_chapter"]=10162,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=56967,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=18799,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1003,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=101306,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1003,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=104853,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1016,
+ ["unit"]=0
+ }
+ },
+ [10162]={
+ ["next_chapter"]=10163,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=57135,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=18855,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1013,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=102319,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1013,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=104853,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1016,
+ ["unit"]=0
+ }
+ },
+ [10163]={
+ ["next_chapter"]=10164,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=57304,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=18910,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1023,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=103342,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1023,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=104853,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1016,
+ ["unit"]=0
+ }
+ },
+ [10164]={
+ ["next_chapter"]=10165,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=57473,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=18966,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1033,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=104376,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1033,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=104853,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1016,
+ ["unit"]=0
+ }
+ },
+ [10165]={
+ ["next_chapter"]=10166,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=57642,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=19022,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1044,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=105419,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1044,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=104853,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1016,
+ ["unit"]=0
+ }
+ },
+ [10166]={
+ ["next_chapter"]=10167,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=57812,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=19078,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1054,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=106474,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1054,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=104853,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1016,
+ ["unit"]=0
+ }
+ },
+ [10167]={
+ ["next_chapter"]=10168,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=57983,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=19134,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1065,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=107538,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1065,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=104853,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1016,
+ ["unit"]=0
+ }
+ },
+ [10168]={
+ ["next_chapter"]=10169,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=58154,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=19191,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1075,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=108614,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1075,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=104853,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1016,
+ ["unit"]=0
+ }
+ },
+ [10169]={
+ ["next_chapter"]=10170,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=58326,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=19247,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1086,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=109700,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1086,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=104853,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1016,
+ ["unit"]=0
+ }
+ },
+ [10170]={
+ ["next_chapter"]=10171,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=58498,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=19304,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1097,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=110797,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1097,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=115823,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1017,
+ ["unit"]=0
+ }
+ },
+ [10171]={
+ ["next_chapter"]=10172,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=58670,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=19361,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1108,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=111905,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1108,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=115823,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1017,
+ ["unit"]=0
+ }
+ },
+ [10172]={
+ ["next_chapter"]=10173,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=58843,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=19418,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1119,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=113024,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1119,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=115823,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1017,
+ ["unit"]=0
+ }
+ },
+ [10173]={
+ ["next_chapter"]=10174,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=59017,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=19476,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1130,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=114154,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1130,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=115823,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1017,
+ ["unit"]=0
+ }
+ },
+ [10174]={
+ ["next_chapter"]=10175,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=59191,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=19533,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1142,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=115296,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1142,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=115823,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1017,
+ ["unit"]=0
+ }
+ },
+ [10175]={
+ ["next_chapter"]=10176,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=59366,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=19591,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1153,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=116449,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1153,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=115823,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1017,
+ ["unit"]=0
+ }
+ },
+ [10176]={
+ ["next_chapter"]=10177,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=59541,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=19649,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1164,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=117613,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1164,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=115823,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1017,
+ ["unit"]=0
+ }
+ },
+ [10177]={
+ ["next_chapter"]=10178,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=59717,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=19707,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1176,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=118789,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1176,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=115823,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1017,
+ ["unit"]=0
+ }
+ },
+ [10178]={
+ ["next_chapter"]=10179,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=59893,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=19765,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1188,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=119977,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1188,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=115823,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1017,
+ ["unit"]=0
+ }
+ },
+ [10179]={
+ ["next_chapter"]=10180,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60070,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=19823,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1200,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=121177,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1200,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=115823,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1017,
+ ["unit"]=0
+ }
+ },
+ [10180]={
+ ["next_chapter"]=10181,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=60247,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=19882,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1212,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=122389,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1212,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=127941,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1018,
+ ["unit"]=0
+ }
+ },
+ [10181]={
+ ["next_chapter"]=10182,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60425,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=19940,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1224,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=123612,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1224,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=127941,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1018,
+ ["unit"]=0
+ }
+ },
+ [10182]={
+ ["next_chapter"]=10183,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60603,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=19999,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1236,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=124849,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1236,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=127941,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1018,
+ ["unit"]=0
+ }
+ },
+ [10183]={
+ ["next_chapter"]=10184,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60782,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=20058,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1248,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=126097,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1248,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=127941,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1018,
+ ["unit"]=0
+ }
+ },
+ [10184]={
+ ["next_chapter"]=10185,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=60962,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=20117,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1261,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=127358,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1261,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=127941,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1018,
+ ["unit"]=0
+ }
+ },
+ [10185]={
+ ["next_chapter"]=10186,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=61142,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=20177,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1274,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=128632,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1274,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=127941,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1018,
+ ["unit"]=0
+ }
+ },
+ [10186]={
+ ["next_chapter"]=10187,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=61322,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=20236,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1286,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=129918,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1286,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=127941,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1018,
+ ["unit"]=0
+ }
+ },
+ [10187]={
+ ["next_chapter"]=10188,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=61503,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=20296,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1299,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=131217,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1299,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=127941,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1018,
+ ["unit"]=0
+ }
+ },
+ [10188]={
+ ["next_chapter"]=10189,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=61685,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=20356,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1312,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=132529,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1312,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=127941,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1018,
+ ["unit"]=0
+ }
+ },
+ [10189]={
+ ["next_chapter"]=10190,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=61867,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=20416,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1325,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=133855,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1325,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=127941,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1018,
+ ["unit"]=0
+ }
+ },
+ [10190]={
+ ["next_chapter"]=10191,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=62049,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=20476,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1339,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=135193,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1339,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=141326,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1019,
+ ["unit"]=0
+ }
+ },
+ [10191]={
+ ["next_chapter"]=10192,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=62232,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=20537,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1352,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=136545,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1352,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=141326,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1019,
+ ["unit"]=0
+ }
+ },
+ [10192]={
+ ["next_chapter"]=10193,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=62416,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=20597,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1365,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=137911,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1365,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=141326,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1019,
+ ["unit"]=0
+ }
+ },
+ [10193]={
+ ["next_chapter"]=10194,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=62600,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=20658,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1379,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=139290,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1379,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=141326,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1019,
+ ["unit"]=0
+ }
+ },
+ [10194]={
+ ["next_chapter"]=10195,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=62785,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=20719,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1393,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=140683,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1393,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=141326,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1019,
+ ["unit"]=0
+ }
+ },
+ [10195]={
+ ["next_chapter"]=10196,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=62970,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=20780,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1407,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=142089,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1407,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=141326,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1019,
+ ["unit"]=0
+ }
+ },
+ [10196]={
+ ["next_chapter"]=10197,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=63156,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=20841,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1421,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=143510,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1421,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=141326,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1019,
+ ["unit"]=0
+ }
+ },
+ [10197]={
+ ["next_chapter"]=10198,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=63342,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=20903,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1435,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=144945,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1435,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=141326,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1019,
+ ["unit"]=0
+ }
+ },
+ [10198]={
+ ["next_chapter"]=10199,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=63529,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=20964,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1449,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=146395,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1449,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=141326,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1019,
+ ["unit"]=0
+ }
+ },
+ [10199]={
+ ["next_chapter"]=10200,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=63716,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=21026,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1464,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=147859,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1464,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=141326,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1019,
+ ["unit"]=0
+ }
+ },
+ [10200]={
+ ["next_chapter"]=10201,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=63904,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=21088,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1479,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=149337,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1479,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=156112,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1020,
+ ["unit"]=0
+ }
+ },
+ [10201]={
+ ["next_chapter"]=10202,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=64092,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=21151,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1493,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=150831,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1493,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=156112,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1020,
+ ["unit"]=0
+ }
+ },
+ [10202]={
+ ["next_chapter"]=10203,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=64281,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=21213,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1508,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=152339,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1508,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=156112,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1020,
+ ["unit"]=0
+ }
+ },
+ [10203]={
+ ["next_chapter"]=10204,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=64471,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=21275,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1523,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=153862,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1523,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=156112,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1020,
+ ["unit"]=0
+ }
+ },
+ [10204]={
+ ["next_chapter"]=10205,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=64661,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=21338,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1539,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=155401,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1539,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=156112,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1020,
+ ["unit"]=0
+ }
+ },
+ [10205]={
+ ["next_chapter"]=10206,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=64852,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=21401,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1554,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=156955,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1554,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=156112,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1020,
+ ["unit"]=0
+ }
+ },
+ [10206]={
+ ["next_chapter"]=10207,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=65043,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=21464,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1570,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=158525,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1570,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=156112,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1020,
+ ["unit"]=0
+ }
+ },
+ [10207]={
+ ["next_chapter"]=10208,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=65234,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=21527,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1585,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=160110,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1585,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=156112,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1020,
+ ["unit"]=0
+ }
+ },
+ [10208]={
+ ["next_chapter"]=10209,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=65427,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=21591,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1601,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=161711,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1601,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=156112,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1020,
+ ["unit"]=0
+ }
+ },
+ [10209]={
+ ["next_chapter"]=10210,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=65619,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=21654,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1617,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=163328,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1617,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=156112,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1020,
+ ["unit"]=0
+ }
+ },
+ [10210]={
+ ["next_chapter"]=10211,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=65813,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=21718,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1633,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=164961,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1633,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=172445,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1021,
+ ["unit"]=0
+ }
+ },
+ [10211]={
+ ["next_chapter"]=10212,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=66006,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=21782,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1650,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=166611,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1650,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=172445,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1021,
+ ["unit"]=0
+ }
+ },
+ [10212]={
+ ["next_chapter"]=10213,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=66201,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=21846,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1666,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=168277,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1666,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=172445,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1021,
+ ["unit"]=0
+ }
+ },
+ [10213]={
+ ["next_chapter"]=10214,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=66396,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=21911,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1683,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=169960,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1683,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=172445,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1021,
+ ["unit"]=0
+ }
+ },
+ [10214]={
+ ["next_chapter"]=10215,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=66591,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=21975,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1700,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=171659,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1700,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=172445,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1021,
+ ["unit"]=0
+ }
+ },
+ [10215]={
+ ["next_chapter"]=10216,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=66787,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=22040,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1717,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=173376,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1717,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=172445,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1021,
+ ["unit"]=0
+ }
+ },
+ [10216]={
+ ["next_chapter"]=10217,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=66984,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=22105,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1734,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=175110,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1734,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=172445,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1021,
+ ["unit"]=0
+ }
+ },
+ [10217]={
+ ["next_chapter"]=10218,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=67181,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=22170,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1751,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=176861,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1751,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=172445,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1021,
+ ["unit"]=0
+ }
+ },
+ [10218]={
+ ["next_chapter"]=10219,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=67379,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=22235,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1769,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=178629,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1769,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=172445,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1021,
+ ["unit"]=0
+ }
+ },
+ [10219]={
+ ["next_chapter"]=10220,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=67577,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=22300,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1786,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=180416,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1786,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=172445,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1021,
+ ["unit"]=0
+ }
+ },
+ [10220]={
+ ["next_chapter"]=10221,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=67776,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=22366,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1804,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=182220,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1804,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=190487,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1022,
+ ["unit"]=0
+ }
+ },
+ [10221]={
+ ["next_chapter"]=10222,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=67975,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=22432,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1822,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=184042,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1822,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=190487,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1022,
+ ["unit"]=0
+ }
+ },
+ [10222]={
+ ["next_chapter"]=10223,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=68175,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=22498,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1840,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=185883,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1840,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=190487,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1022,
+ ["unit"]=0
+ }
+ },
+ [10223]={
+ ["next_chapter"]=10224,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=68375,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=22564,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1859,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=187741,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1859,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=190487,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1022,
+ ["unit"]=0
+ }
+ },
+ [10224]={
+ ["next_chapter"]=10225,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=68576,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=22630,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1877,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=189619,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1877,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=190487,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1022,
+ ["unit"]=0
+ }
+ },
+ [10225]={
+ ["next_chapter"]=10226,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=68778,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=22697,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1896,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=191515,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1896,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=190487,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1022,
+ ["unit"]=0
+ }
+ },
+ [10226]={
+ ["next_chapter"]=10227,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=68980,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=22763,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1915,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=193430,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1915,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=190487,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1022,
+ ["unit"]=0
+ }
+ },
+ [10227]={
+ ["next_chapter"]=10228,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=69183,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=22830,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1934,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=195364,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1934,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=190487,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1022,
+ ["unit"]=0
+ }
+ },
+ [10228]={
+ ["next_chapter"]=10229,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=69386,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=22897,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1954,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=197318,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1954,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=190487,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1022,
+ ["unit"]=0
+ }
+ },
+ [10229]={
+ ["next_chapter"]=10230,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=69590,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=22965,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1973,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=199291,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1973,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=190487,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1022,
+ ["unit"]=0
+ }
+ },
+ [10230]={
+ ["next_chapter"]=10231,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=69794,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=23032,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1993,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=201284,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=1993,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=210416,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1023,
+ ["unit"]=0
+ }
+ },
+ [10231]={
+ ["next_chapter"]=10232,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=69999,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=23100,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2013,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=203297,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=2013,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=210416,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1023,
+ ["unit"]=0
+ }
+ },
+ [10232]={
+ ["next_chapter"]=10233,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=70205,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=23168,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2033,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=205330,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=2033,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=210416,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1023,
+ ["unit"]=0
+ }
+ },
+ [10233]={
+ ["next_chapter"]=10234,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=70411,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=23235,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2053,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=207383,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=2053,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=210416,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1023,
+ ["unit"]=0
+ }
+ },
+ [10234]={
+ ["next_chapter"]=10235,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=70617,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=23304,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2074,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=209457,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=2074,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=210416,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1023,
+ ["unit"]=0
+ }
+ },
+ [10235]={
+ ["next_chapter"]=10236,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=70824,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=23372,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2095,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=211552,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=2095,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=210416,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1023,
+ ["unit"]=0
+ }
+ },
+ [10236]={
+ ["next_chapter"]=10237,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=71032,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=23441,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2116,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=213667,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=2116,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=210416,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1023,
+ ["unit"]=0
+ }
+ },
+ [10237]={
+ ["next_chapter"]=10238,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=71240,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=23509,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2137,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=215804,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=2137,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=210416,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1023,
+ ["unit"]=0
+ }
+ },
+ [10238]={
+ ["next_chapter"]=10239,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=71449,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=23578,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2158,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=217962,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=2158,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=210416,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1023,
+ ["unit"]=0
+ }
+ },
+ [10239]={
+ ["next_chapter"]=10240,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=71659,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=23647,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2180,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=220141,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=2180,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=210416,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1023,
+ ["unit"]=0
+ }
+ },
+ [10240]={
+ ["next_chapter"]=10241,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=71869,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=23717,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2201,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=222343,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=2201,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=232430,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1024,
+ ["unit"]=0
+ }
+ },
+ [10241]={
+ ["next_chapter"]=10242,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=72079,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=23786,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2223,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=224566,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=2223,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=232430,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1024,
+ ["unit"]=0
+ }
+ },
+ [10242]={
+ ["next_chapter"]=10243,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=72290,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=23856,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2246,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=226812,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=2246,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=232430,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1024,
+ ["unit"]=0
+ }
+ },
+ [10243]={
+ ["next_chapter"]=10244,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=72502,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=23926,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2268,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=229080,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=2268,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=232430,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1024,
+ ["unit"]=0
+ }
+ },
+ [10244]={
+ ["next_chapter"]=10245,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=72714,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=23996,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2291,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=231371,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=2291,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=232430,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1024,
+ ["unit"]=0
+ }
+ },
+ [10245]={
+ ["next_chapter"]=10246,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=72927,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=24066,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2314,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=233685,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=2314,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=232430,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1024,
+ ["unit"]=0
+ }
+ },
+ [10246]={
+ ["next_chapter"]=10247,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=73141,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=24136,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2337,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=236021,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=2337,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=232430,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1024,
+ ["unit"]=0
+ }
+ },
+ [10247]={
+ ["next_chapter"]=10248,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=73355,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=24207,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2360,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=238382,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=2360,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=232430,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1024,
+ ["unit"]=0
+ }
+ },
+ [10248]={
+ ["next_chapter"]=10249,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=73569,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=24278,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2384,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=240766,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=2384,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=232430,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1024,
+ ["unit"]=0
+ }
+ },
+ [10249]={
+ ["next_chapter"]=10250,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=73784,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=24349,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2408,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=243173,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=2408,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=232430,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1024,
+ ["unit"]=0
+ }
+ },
+ [10250]={
+ ["next_chapter"]=10251,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=74000,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=24420,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2432,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=245605,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=2432,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=256747,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1025,
+ ["unit"]=0
+ }
+ },
+ [10251]={
+ ["next_chapter"]=10252,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=74216,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=24491,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2456,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=248061,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=2456,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=256747,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1025,
+ ["unit"]=0
+ }
+ },
+ [10252]={
+ ["next_chapter"]=10253,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=74433,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=24563,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2481,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=250542,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=2481,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=256747,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1025,
+ ["unit"]=0
+ }
+ },
+ [10253]={
+ ["next_chapter"]=10254,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=74651,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=24635,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2505,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=253047,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=2505,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=256747,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1025,
+ ["unit"]=0
+ }
+ },
+ [10254]={
+ ["next_chapter"]=10255,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=74869,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=24707,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2530,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=255577,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=2530,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=256747,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1025,
+ ["unit"]=0
+ }
+ },
+ [10255]={
+ ["next_chapter"]=10256,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=75087,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=24779,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2556,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=258133,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=2556,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=256747,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1025,
+ ["unit"]=0
+ }
+ },
+ [10256]={
+ ["next_chapter"]=10257,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=75306,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=24851,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2581,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=260715,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=2581,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=256747,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1025,
+ ["unit"]=0
+ }
+ },
+ [10257]={
+ ["next_chapter"]=10258,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=75526,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=24924,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2607,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=263322,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=2607,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=256747,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1025,
+ ["unit"]=0
+ }
+ },
+ [10258]={
+ ["next_chapter"]=10259,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=75746,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=24996,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2633,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=265955,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=2633,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=256747,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1025,
+ ["unit"]=0
+ }
+ },
+ [10259]={
+ ["next_chapter"]=10260,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=75967,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=25069,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2660,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=268614,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=2660,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=256747,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1025,
+ ["unit"]=0
+ }
+ },
+ [10260]={
+ ["next_chapter"]=10261,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=76189,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=25142,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2686,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=271301,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=2686,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=283609,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1026,
+ ["unit"]=0
+ }
+ },
+ [10261]={
+ ["next_chapter"]=10262,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=76411,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=25216,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2713,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=274014,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=2713,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=283609,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1026,
+ ["unit"]=0
+ }
+ },
+ [10262]={
+ ["next_chapter"]=10263,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=76634,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=25289,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2740,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=276754,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=2740,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=283609,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1026,
+ ["unit"]=0
+ }
+ },
+ [10263]={
+ ["next_chapter"]=10264,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=76857,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=25363,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2768,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=279521,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=2768,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=283609,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1026,
+ ["unit"]=0
+ }
+ },
+ [10264]={
+ ["next_chapter"]=10265,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=77081,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=25437,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2795,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=282317,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=2795,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=283609,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1026,
+ ["unit"]=0
+ }
+ },
+ [10265]={
+ ["next_chapter"]=10266,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=77305,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=25511,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2823,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=285140,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=2823,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=283609,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1026,
+ ["unit"]=0
+ }
+ },
+ [10266]={
+ ["next_chapter"]=10267,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=77530,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=25585,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2851,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=287991,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=2851,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=283609,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1026,
+ ["unit"]=0
+ }
+ },
+ [10267]={
+ ["next_chapter"]=10268,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=77756,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=25659,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2880,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=290871,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=2880,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=283609,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1026,
+ ["unit"]=0
+ }
+ },
+ [10268]={
+ ["next_chapter"]=10269,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=77982,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=25734,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2909,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=293780,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=2909,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=283609,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1026,
+ ["unit"]=0
+ }
+ },
+ [10269]={
+ ["next_chapter"]=10270,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=78209,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=25809,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2938,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=296717,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=2938,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=283609,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1026,
+ ["unit"]=0
+ }
+ },
+ [10270]={
+ ["next_chapter"]=10271,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=78436,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=25884,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2967,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=299685,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=2967,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=313280,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1027,
+ ["unit"]=0
+ }
+ },
+ [10271]={
+ ["next_chapter"]=10272,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=78664,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=25959,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2997,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=302682,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=2997,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=313280,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1027,
+ ["unit"]=0
+ }
+ },
+ [10272]={
+ ["next_chapter"]=10273,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=78893,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=26035,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3027,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=305708,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=3027,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=313280,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1027,
+ ["unit"]=0
+ }
+ },
+ [10273]={
+ ["next_chapter"]=10274,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=79122,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=26110,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3057,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=308765,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=3057,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=313280,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1027,
+ ["unit"]=0
+ }
+ },
+ [10274]={
+ ["next_chapter"]=10275,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=79352,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=26186,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3088,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=311853,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=3088,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=313280,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1027,
+ ["unit"]=0
+ }
+ },
+ [10275]={
+ ["next_chapter"]=10276,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=79582,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=26262,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3119,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=314972,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=3119,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=313280,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1027,
+ ["unit"]=0
+ }
+ },
+ [10276]={
+ ["next_chapter"]=10277,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=79813,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=26338,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3150,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=318121,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=3150,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=313280,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1027,
+ ["unit"]=0
+ }
+ },
+ [10277]={
+ ["next_chapter"]=10278,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=80044,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=26415,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3181,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=321303,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=3181,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=313280,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1027,
+ ["unit"]=0
+ }
+ },
+ [10278]={
+ ["next_chapter"]=10279,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=80277,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=26491,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3213,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=324516,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=3213,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=313280,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1027,
+ ["unit"]=0
+ }
+ },
+ [10279]={
+ ["next_chapter"]=10280,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=80509,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=26568,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3245,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=327761,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=3245,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=313280,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1027,
+ ["unit"]=0
+ }
+ },
+ [10280]={
+ ["next_chapter"]=10281,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=80743,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=26645,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3278,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=331038,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=3278,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=346057,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1028,
+ ["unit"]=0
+ }
+ },
+ [10281]={
+ ["next_chapter"]=10282,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=80977,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=26722,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3310,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=334349,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=3310,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=346057,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1028,
+ ["unit"]=0
+ }
+ },
+ [10282]={
+ ["next_chapter"]=10283,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=81211,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=26800,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3343,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=337692,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=3343,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=346057,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1028,
+ ["unit"]=0
+ }
+ },
+ [10283]={
+ ["next_chapter"]=10284,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=81446,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=26877,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3377,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=341069,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=3377,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=346057,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1028,
+ ["unit"]=0
+ }
+ },
+ [10284]={
+ ["next_chapter"]=10285,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=81682,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=26955,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3411,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=344480,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=3411,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=346057,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1028,
+ ["unit"]=0
+ }
+ },
+ [10285]={
+ ["next_chapter"]=10286,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=81918,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=27033,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3445,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=347925,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=3445,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=346057,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1028,
+ ["unit"]=0
+ }
+ },
+ [10286]={
+ ["next_chapter"]=10287,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=82155,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=27111,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3479,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=351404,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=3479,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=346057,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1028,
+ ["unit"]=0
+ }
+ },
+ [10287]={
+ ["next_chapter"]=10288,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=82393,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=27190,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3514,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=354918,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=3514,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=346057,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1028,
+ ["unit"]=0
+ }
+ },
+ [10288]={
+ ["next_chapter"]=10289,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=82631,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=27268,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3549,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=358467,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=3549,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=346057,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1028,
+ ["unit"]=0
+ }
+ },
+ [10289]={
+ ["next_chapter"]=10290,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=82870,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=27347,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3585,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=362052,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=3585,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=346057,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1028,
+ ["unit"]=0
+ }
+ },
+ [10290]={
+ ["next_chapter"]=10291,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=83109,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=27426,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3621,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=365672,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=3621,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=382262,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1029,
+ ["unit"]=0
+ }
+ },
+ [10291]={
+ ["next_chapter"]=10292,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=83349,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=27505,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3657,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=369329,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=3657,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=382262,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1029,
+ ["unit"]=0
+ }
+ },
+ [10292]={
+ ["next_chapter"]=10293,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=83590,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=27585,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3693,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=373022,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=3693,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=382262,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1029,
+ ["unit"]=0
+ }
+ },
+ [10293]={
+ ["next_chapter"]=10294,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=83831,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=27664,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3730,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=376752,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=3730,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=382262,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1029,
+ ["unit"]=0
+ }
+ },
+ [10294]={
+ ["next_chapter"]=10295,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=84072,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=27744,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3768,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=380520,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=3768,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=382262,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1029,
+ ["unit"]=0
+ }
+ },
+ [10295]={
+ ["next_chapter"]=10296,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=84315,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=27824,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3805,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=384325,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=3805,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=382262,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1029,
+ ["unit"]=0
+ }
+ },
+ [10296]={
+ ["next_chapter"]=10297,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=84558,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=27904,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3843,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=388168,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=3843,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=382262,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1029,
+ ["unit"]=0
+ }
+ },
+ [10297]={
+ ["next_chapter"]=10298,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=84801,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=27984,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3882,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=392050,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=3882,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=382262,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1029,
+ ["unit"]=0
+ }
+ },
+ [10298]={
+ ["next_chapter"]=10299,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=85046,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=28065,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3921,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=395971,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=3921,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=382262,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1029,
+ ["unit"]=0
+ }
+ },
+ [10299]={
+ ["next_chapter"]=10300,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=85291,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=28146,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3960,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=399930,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=3960,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=382262,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1029,
+ ["unit"]=0
+ }
+ },
+ [10300]={
+ ["next_chapter"]=10301,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=85536,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=28227,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3999,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=403930,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=3999,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=422255,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1030,
+ ["unit"]=0
+ }
+ },
+ [10301]={
+ ["next_chapter"]=10302,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=85782,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=28308,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4039,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=407969,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=4039,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=422255,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1030,
+ ["unit"]=0
+ }
+ },
+ [10302]={
+ ["next_chapter"]=10303,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=86029,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=28389,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4080,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=412049,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=4080,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=422255,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1030,
+ ["unit"]=0
+ }
+ },
+ [10303]={
+ ["next_chapter"]=10304,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=86276,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=28471,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4120,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=416169,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=4120,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=422255,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1030,
+ ["unit"]=0
+ }
+ },
+ [10304]={
+ ["next_chapter"]=10305,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=86524,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=28553,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4162,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=420331,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=4162,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=422255,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1030,
+ ["unit"]=0
+ }
+ },
+ [10305]={
+ ["next_chapter"]=10306,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=86772,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=28635,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4203,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=424534,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=4203,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=422255,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1030,
+ ["unit"]=0
+ }
+ },
+ [10306]={
+ ["next_chapter"]=10307,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=87022,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=28717,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4245,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=428779,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=4245,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=422255,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1030,
+ ["unit"]=0
+ }
+ },
+ [10307]={
+ ["next_chapter"]=10308,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=87271,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=28800,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4288,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=433067,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=4288,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=422255,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1030,
+ ["unit"]=0
+ }
+ },
+ [10308]={
+ ["next_chapter"]=10309,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=87522,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=28882,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4331,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=437398,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=4331,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=422255,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1030,
+ ["unit"]=0
+ }
+ },
+ [10309]={
+ ["next_chapter"]=10310,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=87773,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=28965,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4374,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=441772,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=4374,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=422255,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1030,
+ ["unit"]=0
+ }
+ },
+ [10310]={
+ ["next_chapter"]=10311,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=88024,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=29048,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4418,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=446190,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=4418,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=466432,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1031,
+ ["unit"]=0
+ }
+ },
+ [10311]={
+ ["next_chapter"]=10312,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=88277,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=29131,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4462,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=450652,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=4462,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=466432,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1031,
+ ["unit"]=0
+ }
+ },
+ [10312]={
+ ["next_chapter"]=10313,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=88530,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=29215,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4507,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=455158,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=4507,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=466432,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1031,
+ ["unit"]=0
+ }
+ },
+ [10313]={
+ ["next_chapter"]=10314,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=88783,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=29298,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4552,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=459710,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=4552,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=466432,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1031,
+ ["unit"]=0
+ }
+ },
+ [10314]={
+ ["next_chapter"]=10315,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=89037,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=29382,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4597,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=464307,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=4597,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=466432,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1031,
+ ["unit"]=0
+ }
+ },
+ [10315]={
+ ["next_chapter"]=10316,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=89292,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=29466,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4643,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=468950,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=4643,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=466432,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1031,
+ ["unit"]=0
+ }
+ },
+ [10316]={
+ ["next_chapter"]=10317,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=89547,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=29551,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4689,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=473639,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=4689,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=466432,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1031,
+ ["unit"]=0
+ }
+ },
+ [10317]={
+ ["next_chapter"]=10318,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=89803,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=29635,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4736,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=478376,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=4736,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=466432,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1031,
+ ["unit"]=0
+ }
+ },
+ [10318]={
+ ["next_chapter"]=10319,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=90060,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=29720,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4784,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=483159,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=4784,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=466432,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1031,
+ ["unit"]=0
+ }
+ },
+ [10319]={
+ ["next_chapter"]=10320,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=90317,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=29805,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4832,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=487991,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=4832,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=466432,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1031,
+ ["unit"]=0
+ }
+ },
+ [10320]={
+ ["next_chapter"]=10321,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=90575,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=29890,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4880,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=492871,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=4880,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=515231,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1032,
+ ["unit"]=0
+ }
+ },
+ [10321]={
+ ["next_chapter"]=10322,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=90834,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=29975,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4929,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=497800,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=4929,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=515231,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1032,
+ ["unit"]=0
+ }
+ },
+ [10322]={
+ ["next_chapter"]=10323,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=91093,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=30061,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4978,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=502778,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=4978,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=515231,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1032,
+ ["unit"]=0
+ }
+ },
+ [10323]={
+ ["next_chapter"]=10324,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=91353,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=30146,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5028,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=507805,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=5028,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=515231,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1032,
+ ["unit"]=0
+ }
+ },
+ [10324]={
+ ["next_chapter"]=10325,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=91613,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=30232,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5078,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=512883,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=5078,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=515231,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1032,
+ ["unit"]=0
+ }
+ },
+ [10325]={
+ ["next_chapter"]=10326,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=91874,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=30318,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5129,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=518012,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=5129,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=515231,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1032,
+ ["unit"]=0
+ }
+ },
+ [10326]={
+ ["next_chapter"]=10327,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=92136,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=30405,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5180,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=523192,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=5180,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=515231,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1032,
+ ["unit"]=0
+ }
+ },
+ [10327]={
+ ["next_chapter"]=10328,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=92398,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=30491,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5232,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=528424,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=5232,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=515231,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1032,
+ ["unit"]=0
+ }
+ },
+ [10328]={
+ ["next_chapter"]=10329,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=92661,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=30578,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5284,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=533709,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=5284,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=515231,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1032,
+ ["unit"]=0
+ }
+ },
+ [10329]={
+ ["next_chapter"]=10330,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=92925,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=30665,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5337,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=539046,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=5337,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=515231,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1032,
+ ["unit"]=0
+ }
+ },
+ [10330]={
+ ["next_chapter"]=10331,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=93189,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=30752,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5390,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=544436,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=5390,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=569136,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1033,
+ ["unit"]=0
+ }
+ },
+ [10331]={
+ ["next_chapter"]=10332,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=93454,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=30840,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5444,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=549880,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=5444,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=569136,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1033,
+ ["unit"]=0
+ }
+ },
+ [10332]={
+ ["next_chapter"]=10333,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=93719,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=30927,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5499,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=555379,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=5499,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=569136,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1033,
+ ["unit"]=0
+ }
+ },
+ [10333]={
+ ["next_chapter"]=10334,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=93985,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=31015,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5554,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=560933,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=5554,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=569136,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1033,
+ ["unit"]=0
+ }
+ },
+ [10334]={
+ ["next_chapter"]=10335,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=94252,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=31103,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5609,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=566542,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=5609,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=569136,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1033,
+ ["unit"]=0
+ }
+ },
+ [10335]={
+ ["next_chapter"]=10336,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=94519,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=31191,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5665,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=572208,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=5665,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=569136,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1033,
+ ["unit"]=0
+ }
+ },
+ [10336]={
+ ["next_chapter"]=10337,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=94787,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=31280,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5722,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=577930,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=5722,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=569136,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1033,
+ ["unit"]=0
+ }
+ },
+ [10337]={
+ ["next_chapter"]=10338,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=95056,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=31369,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5779,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=583709,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=5779,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=569136,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1033,
+ ["unit"]=0
+ }
+ },
+ [10338]={
+ ["next_chapter"]=10339,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=95326,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=31457,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5837,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=589546,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=5837,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=569136,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1033,
+ ["unit"]=0
+ }
+ },
+ [10339]={
+ ["next_chapter"]=10340,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=95595,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=31547,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5895,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=595442,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=5895,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=569136,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1033,
+ ["unit"]=0
+ }
+ },
+ [10340]={
+ ["next_chapter"]=10341,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=95866,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=31636,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5954,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=601396,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=5954,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=628680,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1034,
+ ["unit"]=0
+ }
+ },
+ [10341]={
+ ["next_chapter"]=10342,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=96137,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=31725,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6014,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=607410,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=6014,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=628680,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1034,
+ ["unit"]=0
+ }
+ },
+ [10342]={
+ ["next_chapter"]=10343,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=96409,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=31815,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6074,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=613484,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=6074,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=628680,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1034,
+ ["unit"]=0
+ }
+ },
+ [10343]={
+ ["next_chapter"]=10344,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=96682,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=31905,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6135,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=619619,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=6135,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=628680,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1034,
+ ["unit"]=0
+ }
+ },
+ [10344]={
+ ["next_chapter"]=10345,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=96955,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=31995,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6196,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=625815,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=6196,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=628680,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1034,
+ ["unit"]=0
+ }
+ },
+ [10345]={
+ ["next_chapter"]=10346,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=97229,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=32086,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6258,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=632073,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=6258,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=628680,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1034,
+ ["unit"]=0
+ }
+ },
+ [10346]={
+ ["next_chapter"]=10347,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=97503,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=32176,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6321,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=638394,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=6321,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=628680,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1034,
+ ["unit"]=0
+ }
+ },
+ [10347]={
+ ["next_chapter"]=10348,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=97779,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=32267,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6384,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=644778,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=6384,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=628680,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1034,
+ ["unit"]=0
+ }
+ },
+ [10348]={
+ ["next_chapter"]=10349,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=98054,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=32358,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6448,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=651226,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=6448,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=628680,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1034,
+ ["unit"]=0
+ }
+ },
+ [10349]={
+ ["next_chapter"]=10350,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=98331,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=32449,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6512,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=657738,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=6512,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=628680,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1034,
+ ["unit"]=0
+ }
+ },
+ [10350]={
+ ["next_chapter"]=10351,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=98608,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=32541,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6577,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=664316,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=6577,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=694454,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1035,
+ ["unit"]=0
+ }
+ },
+ [10351]={
+ ["next_chapter"]=10352,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=98886,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=32632,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6643,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=670959,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=6643,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=694454,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1035,
+ ["unit"]=0
+ }
+ },
+ [10352]={
+ ["next_chapter"]=10353,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=99164,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=32724,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6710,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=677668,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=6710,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=694454,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1035,
+ ["unit"]=0
+ }
+ },
+ [10353]={
+ ["next_chapter"]=10354,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=99443,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=32816,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6777,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=684445,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=6777,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=694454,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1035,
+ ["unit"]=0
+ }
+ },
+ [10354]={
+ ["next_chapter"]=10355,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=99723,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=32909,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6844,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=691289,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=6844,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=694454,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1035,
+ ["unit"]=0
+ }
+ },
+ [10355]={
+ ["next_chapter"]=10356,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=100003,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=33001,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6913,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=698202,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=6913,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=694454,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1035,
+ ["unit"]=0
+ }
+ },
+ [10356]={
+ ["next_chapter"]=10357,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=100284,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=33094,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6982,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=705184,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=6982,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=694454,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1035,
+ ["unit"]=0
+ }
+ },
+ [10357]={
+ ["next_chapter"]=10358,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=100566,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=33187,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7052,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=712236,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=7052,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=694454,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1035,
+ ["unit"]=0
+ }
+ },
+ [10358]={
+ ["next_chapter"]=10359,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=100848,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=33280,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7122,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=719359,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=7122,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=694454,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1035,
+ ["unit"]=0
+ }
+ },
+ [10359]={
+ ["next_chapter"]=10360,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=101131,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=33373,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7194,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=726552,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=7194,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=694454,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1035,
+ ["unit"]=0
+ }
+ },
+ [10360]={
+ ["next_chapter"]=10361,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=101415,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=33467,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7266,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=733818,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=7266,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=767109,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1036,
+ ["unit"]=0
+ }
+ },
+ [10361]={
+ ["next_chapter"]=10362,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=101700,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=33561,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7338,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=741156,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=7338,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=767109,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1036,
+ ["unit"]=0
+ }
+ },
+ [10362]={
+ ["next_chapter"]=10363,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=101985,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=33655,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7412,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=748567,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=7412,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=767109,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1036,
+ ["unit"]=0
+ }
+ },
+ [10363]={
+ ["next_chapter"]=10364,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=102270,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=33749,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7486,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=756053,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=7486,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=767109,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1036,
+ ["unit"]=0
+ }
+ },
+ [10364]={
+ ["next_chapter"]=10365,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=102556,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=33844,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7561,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=763614,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=7561,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=767109,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1036,
+ ["unit"]=0
+ }
+ },
+ [10365]={
+ ["next_chapter"]=10366,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=102843,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=33938,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7636,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=771250,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=7636,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=767109,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1036,
+ ["unit"]=0
+ }
+ },
+ [10366]={
+ ["next_chapter"]=10367,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=103131,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=34033,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7712,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=778962,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=7712,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=767109,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1036,
+ ["unit"]=0
+ }
+ },
+ [10367]={
+ ["next_chapter"]=10368,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=103419,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=34128,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7790,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=786752,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=7790,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=767109,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1036,
+ ["unit"]=0
+ }
+ },
+ [10368]={
+ ["next_chapter"]=10369,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=103708,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=34224,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7868,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=794619,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=7868,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=767109,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1036,
+ ["unit"]=0
+ }
+ },
+ [10369]={
+ ["next_chapter"]=10370,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=103998,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=34319,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7946,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=802566,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=7946,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=767109,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1036,
+ ["unit"]=0
+ }
+ },
+ [10370]={
+ ["next_chapter"]=10371,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=104288,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=34415,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8026,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=810591,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=8026,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=847365,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1037,
+ ["unit"]=0
+ }
+ },
+ [10371]={
+ ["next_chapter"]=10372,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=104579,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=34511,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8106,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=818697,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=8106,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=847365,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1037,
+ ["unit"]=0
+ }
+ },
+ [10372]={
+ ["next_chapter"]=10373,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=104871,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=34607,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8187,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=826884,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=8187,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=847365,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1037,
+ ["unit"]=0
+ }
+ },
+ [10373]={
+ ["next_chapter"]=10374,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=105163,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=34704,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8269,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=835153,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=8269,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=847365,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1037,
+ ["unit"]=0
+ }
+ },
+ [10374]={
+ ["next_chapter"]=10375,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=105456,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=34801,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8352,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=843504,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=8352,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=847365,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1037,
+ ["unit"]=0
+ }
+ },
+ [10375]={
+ ["next_chapter"]=10376,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=105750,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=34898,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8435,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=851939,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=8435,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=847365,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1037,
+ ["unit"]=0
+ }
+ },
+ [10376]={
+ ["next_chapter"]=10377,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=106044,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=34995,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8519,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=860459,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=8519,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=847365,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1037,
+ ["unit"]=0
+ }
+ },
+ [10377]={
+ ["next_chapter"]=10378,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=106339,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=35092,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8605,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=869063,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=8605,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=847365,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1037,
+ ["unit"]=0
+ }
+ },
+ [10378]={
+ ["next_chapter"]=10379,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=106635,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=35190,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8691,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=877754,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=8691,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=847365,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1037,
+ ["unit"]=0
+ }
+ },
+ [10379]={
+ ["next_chapter"]=10380,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=106931,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=35287,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8778,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=886532,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=8778,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=847365,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1037,
+ ["unit"]=0
+ }
+ },
+ [10380]={
+ ["next_chapter"]=10381,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=107228,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=35385,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8865,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=895397,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=8865,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=936019,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1038,
+ ["unit"]=0
+ }
+ },
+ [10381]={
+ ["next_chapter"]=10382,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=107526,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=35484,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8954,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=904351,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=8954,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=936019,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1038,
+ ["unit"]=0
+ }
+ },
+ [10382]={
+ ["next_chapter"]=10383,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=107825,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=35582,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9044,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=913394,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=9044,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=936019,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1038,
+ ["unit"]=0
+ }
+ },
+ [10383]={
+ ["next_chapter"]=10384,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=108124,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=35681,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9134,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=922528,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=9134,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=936019,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1038,
+ ["unit"]=0
+ }
+ },
+ [10384]={
+ ["next_chapter"]=10385,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=108423,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=35780,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9225,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=931754,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=9225,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=936019,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1038,
+ ["unit"]=0
+ }
+ },
+ [10385]={
+ ["next_chapter"]=10386,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=108724,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=35879,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9318,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=941071,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=9318,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=936019,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1038,
+ ["unit"]=0
+ }
+ },
+ [10386]={
+ ["next_chapter"]=10387,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=109025,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=35978,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9411,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=950482,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=9411,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=936019,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1038,
+ ["unit"]=0
+ }
+ },
+ [10387]={
+ ["next_chapter"]=10388,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=109327,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=36078,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9505,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=959987,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=9505,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=936019,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1038,
+ ["unit"]=0
+ }
+ },
+ [10388]={
+ ["next_chapter"]=10389,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=109629,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=36178,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9600,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=969587,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=9600,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=936019,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1038,
+ ["unit"]=0
+ }
+ },
+ [10389]={
+ ["next_chapter"]=10390,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=109932,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=36278,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9696,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=979282,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=9696,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=936019,
+ ["unit"]=14
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1038,
+ ["unit"]=0
+ }
+ },
+ [10390]={
+ ["next_chapter"]=10391,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=110236,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=36378,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9793,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=989075,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=9793,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1034,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1039,
+ ["unit"]=0
+ }
+ },
+ [10391]={
+ ["next_chapter"]=10392,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=110541,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=36478,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9891,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=998966,
+ ["unit"]=14
+ },
+ ["idle_gold"]={
+ ["value"]=9891,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1034,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1039,
+ ["unit"]=0
+ }
+ },
+ [10392]={
+ ["next_chapter"]=10393,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=110846,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=36579,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9990,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1009,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=9990,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1034,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1039,
+ ["unit"]=0
+ }
+ },
+ [10393]={
+ ["next_chapter"]=10394,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=111152,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=36680,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10090,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1019,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=10090,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1034,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1039,
+ ["unit"]=0
+ }
+ },
+ [10394]={
+ ["next_chapter"]=10395,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=111458,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=36781,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10190,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1029,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=10190,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1034,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1039,
+ ["unit"]=0
+ }
+ },
+ [10395]={
+ ["next_chapter"]=10396,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=111765,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=36883,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10292,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1040,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=10292,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1034,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1039,
+ ["unit"]=0
+ }
+ },
+ [10396]={
+ ["next_chapter"]=10397,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=112073,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=36984,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10395,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1050,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=10395,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1034,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1039,
+ ["unit"]=0
+ }
+ },
+ [10397]={
+ ["next_chapter"]=10398,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=112382,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=37086,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10499,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1060,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=10499,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1034,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1039,
+ ["unit"]=0
+ }
+ },
+ [10398]={
+ ["next_chapter"]=10399,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=112691,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=37188,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10604,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1071,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=10604,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1034,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1039,
+ ["unit"]=0
+ }
+ },
+ [10399]={
+ ["next_chapter"]=10400,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=113001,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=37290,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10710,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1082,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=10710,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1034,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1039,
+ ["unit"]=0
+ }
+ },
+ [10400]={
+ ["next_chapter"]=10401,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=113312,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=37393,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10817,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1093,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=10817,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1142,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1040,
+ ["unit"]=0
+ }
+ },
+ [10401]={
+ ["next_chapter"]=10402,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=113623,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=37496,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10926,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1103,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=10926,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1142,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1040,
+ ["unit"]=0
+ }
+ },
+ [10402]={
+ ["next_chapter"]=10403,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=113935,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=37599,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=11035,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1115,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=11035,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1142,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1040,
+ ["unit"]=0
+ }
+ },
+ [10403]={
+ ["next_chapter"]=10404,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=114248,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=37702,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=11145,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1126,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=11145,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1142,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1040,
+ ["unit"]=0
+ }
+ },
+ [10404]={
+ ["next_chapter"]=10405,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=114562,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=37805,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=11257,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1137,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=11257,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1142,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1040,
+ ["unit"]=0
+ }
+ },
+ [10405]={
+ ["next_chapter"]=10406,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=114876,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=37909,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=11369,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1148,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=11369,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1142,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1040,
+ ["unit"]=0
+ }
+ },
+ [10406]={
+ ["next_chapter"]=10407,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=115191,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=38013,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=11483,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1160,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=11483,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1142,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1040,
+ ["unit"]=0
+ }
+ },
+ [10407]={
+ ["next_chapter"]=10408,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=115506,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=38117,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=11598,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1171,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=11598,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1142,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1040,
+ ["unit"]=0
+ }
+ },
+ [10408]={
+ ["next_chapter"]=10409,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=115823,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=38221,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=11714,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1183,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=11714,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1142,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1040,
+ ["unit"]=0
+ }
+ },
+ [10409]={
+ ["next_chapter"]=10410,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=116139,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=38326,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=11831,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1195,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=11831,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1142,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1040,
+ ["unit"]=0
+ }
+ },
+ [10410]={
+ ["next_chapter"]=10411,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=116457,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=38431,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=11949,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1207,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=11949,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1262,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1041,
+ ["unit"]=0
+ }
+ },
+ [10411]={
+ ["next_chapter"]=10412,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=116775,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=38536,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=12069,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1219,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=12069,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1262,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1041,
+ ["unit"]=0
+ }
+ },
+ [10412]={
+ ["next_chapter"]=10413,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=117094,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=38641,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=12189,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1231,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=12189,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1262,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1041,
+ ["unit"]=0
+ }
+ },
+ [10413]={
+ ["next_chapter"]=10414,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=117414,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=38747,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=12311,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1243,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=12311,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1262,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1041,
+ ["unit"]=0
+ }
+ },
+ [10414]={
+ ["next_chapter"]=10415,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=117735,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=38852,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=12434,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1256,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=12434,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1262,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1041,
+ ["unit"]=0
+ }
+ },
+ [10415]={
+ ["next_chapter"]=10416,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=118056,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=38958,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=12559,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1268,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=12559,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1262,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1041,
+ ["unit"]=0
+ }
+ },
+ [10416]={
+ ["next_chapter"]=10417,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=118378,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=39065,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=12684,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1281,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=12684,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1262,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1041,
+ ["unit"]=0
+ }
+ },
+ [10417]={
+ ["next_chapter"]=10418,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=118700,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=39171,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=12811,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1294,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=12811,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1262,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1041,
+ ["unit"]=0
+ }
+ },
+ [10418]={
+ ["next_chapter"]=10419,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=119023,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=39278,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=12939,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1307,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=12939,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1262,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1041,
+ ["unit"]=0
+ }
+ },
+ [10419]={
+ ["next_chapter"]=10420,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=119347,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=39385,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=13069,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1320,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=13069,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1262,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1041,
+ ["unit"]=0
+ }
+ },
+ [10420]={
+ ["next_chapter"]=10421,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=119672,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=39492,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=13199,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1333,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=13199,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1394,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1042,
+ ["unit"]=0
+ }
+ },
+ [10421]={
+ ["next_chapter"]=10422,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=119997,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=39599,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=13331,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1346,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=13331,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1394,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1042,
+ ["unit"]=0
+ }
+ },
+ [10422]={
+ ["next_chapter"]=10423,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120324,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=39707,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=13465,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1360,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=13465,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1394,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1042,
+ ["unit"]=0
+ }
+ },
+ [10423]={
+ ["next_chapter"]=10424,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120650,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=39815,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=13599,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1374,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=13599,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1394,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1042,
+ ["unit"]=0
+ }
+ },
+ [10424]={
+ ["next_chapter"]=10425,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=120978,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=39923,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=13735,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1387,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=13735,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1394,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1042,
+ ["unit"]=0
+ }
+ },
+ [10425]={
+ ["next_chapter"]=10426,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=121306,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=40031,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=13873,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1401,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=13873,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1394,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1042,
+ ["unit"]=0
+ }
+ },
+ [10426]={
+ ["next_chapter"]=10427,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=121635,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=40140,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=14011,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1415,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=14011,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1394,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1042,
+ ["unit"]=0
+ }
+ },
+ [10427]={
+ ["next_chapter"]=10428,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=121965,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=40248,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=14151,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1429,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=14151,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1394,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1042,
+ ["unit"]=0
+ }
+ },
+ [10428]={
+ ["next_chapter"]=10429,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=122295,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=40357,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=14293,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1444,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=14293,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1394,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1042,
+ ["unit"]=0
+ }
+ },
+ [10429]={
+ ["next_chapter"]=10430,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=122626,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=40467,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=14436,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1458,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=14436,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1394,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1042,
+ ["unit"]=0
+ }
+ },
+ [10430]={
+ ["next_chapter"]=10431,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=122958,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=40576,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=14580,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1473,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=14580,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1539,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1043,
+ ["unit"]=0
+ }
+ },
+ [10431]={
+ ["next_chapter"]=10432,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=123290,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=40686,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=14726,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1487,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=14726,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1539,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1043,
+ ["unit"]=0
+ }
+ },
+ [10432]={
+ ["next_chapter"]=10433,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=123623,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=40796,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=14873,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1502,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=14873,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1539,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1043,
+ ["unit"]=0
+ }
+ },
+ [10433]={
+ ["next_chapter"]=10434,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=123957,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=40906,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=15022,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1517,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=15022,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1539,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1043,
+ ["unit"]=0
+ }
+ },
+ [10434]={
+ ["next_chapter"]=10435,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=124292,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=41016,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=15172,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1532,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=15172,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1539,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1043,
+ ["unit"]=0
+ }
+ },
+ [10435]={
+ ["next_chapter"]=10436,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=124627,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=41127,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=15324,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1548,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=15324,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1539,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1043,
+ ["unit"]=0
+ }
+ },
+ [10436]={
+ ["next_chapter"]=10437,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=124963,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=41238,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=15477,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1563,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=15477,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1539,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1043,
+ ["unit"]=0
+ }
+ },
+ [10437]={
+ ["next_chapter"]=10438,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=125300,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=41349,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=15632,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1579,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=15632,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1539,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1043,
+ ["unit"]=0
+ }
+ },
+ [10438]={
+ ["next_chapter"]=10439,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=125638,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=41460,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=15788,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1595,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=15788,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1539,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1043,
+ ["unit"]=0
+ }
+ },
+ [10439]={
+ ["next_chapter"]=10440,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=125976,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=41572,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=15946,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1611,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=15946,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1539,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1043,
+ ["unit"]=0
+ }
+ },
+ [10440]={
+ ["next_chapter"]=10441,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=126315,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=41684,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=16106,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1627,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=16106,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1700,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1044,
+ ["unit"]=0
+ }
+ },
+ [10441]={
+ ["next_chapter"]=10442,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=126654,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=41796,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=16267,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1643,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=16267,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1700,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1044,
+ ["unit"]=0
+ }
+ },
+ [10442]={
+ ["next_chapter"]=10443,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=126995,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=41908,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=16429,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1659,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=16429,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1700,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1044,
+ ["unit"]=0
+ }
+ },
+ [10443]={
+ ["next_chapter"]=10444,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=127336,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=42021,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=16594,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1676,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=16594,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1700,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1044,
+ ["unit"]=0
+ }
+ },
+ [10444]={
+ ["next_chapter"]=10445,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=127678,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=42134,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=16760,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1693,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=16760,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1700,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1044,
+ ["unit"]=0
+ }
+ },
+ [10445]={
+ ["next_chapter"]=10446,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=128020,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=42247,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=16927,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1710,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=16927,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1700,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1044,
+ ["unit"]=0
+ }
+ },
+ [10446]={
+ ["next_chapter"]=10447,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=128364,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=42360,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=17096,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1727,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=17096,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1700,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1044,
+ ["unit"]=0
+ }
+ },
+ [10447]={
+ ["next_chapter"]=10448,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=128708,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=42474,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=17267,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1744,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=17267,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1700,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1044,
+ ["unit"]=0
+ }
+ },
+ [10448]={
+ ["next_chapter"]=10449,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=129052,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=42587,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=17440,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1761,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=17440,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1700,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1044,
+ ["unit"]=0
+ }
+ },
+ [10449]={
+ ["next_chapter"]=10450,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=129398,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=42701,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=17614,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1779,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=17614,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1700,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1044,
+ ["unit"]=0
+ }
+ },
+ [10450]={
+ ["next_chapter"]=10451,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=129744,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=42816,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=17791,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1797,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=17791,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1878,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1045,
+ ["unit"]=0
+ }
+ },
+ [10451]={
+ ["next_chapter"]=10452,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=130091,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=42930,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=17968,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1815,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=17968,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1878,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1045,
+ ["unit"]=0
+ }
+ },
+ [10452]={
+ ["next_chapter"]=10453,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=130439,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=43045,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=18148,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1833,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=18148,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1878,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1045,
+ ["unit"]=0
+ }
+ },
+ [10453]={
+ ["next_chapter"]=10454,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=130787,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=43160,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=18330,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1851,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=18330,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1878,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1045,
+ ["unit"]=0
+ }
+ },
+ [10454]={
+ ["next_chapter"]=10455,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=131136,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=43275,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=18513,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1870,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=18513,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1878,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1045,
+ ["unit"]=0
+ }
+ },
+ [10455]={
+ ["next_chapter"]=10456,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=131486,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=43390,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=18698,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1889,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=18698,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1878,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1045,
+ ["unit"]=0
+ }
+ },
+ [10456]={
+ ["next_chapter"]=10457,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=131837,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=43506,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=18885,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1907,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=18885,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1878,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1045,
+ ["unit"]=0
+ }
+ },
+ [10457]={
+ ["next_chapter"]=10458,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=132188,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=43622,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=19074,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1926,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=19074,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1878,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1045,
+ ["unit"]=0
+ }
+ },
+ [10458]={
+ ["next_chapter"]=10459,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=132540,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=43738,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=19265,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1946,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=19265,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1878,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1045,
+ ["unit"]=0
+ }
+ },
+ [10459]={
+ ["next_chapter"]=10460,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=132893,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=43855,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=19457,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1965,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=19457,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1878,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1045,
+ ["unit"]=0
+ }
+ },
+ [10460]={
+ ["next_chapter"]=10461,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=133246,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=43971,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=19652,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1985,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=19652,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=2075,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1046,
+ ["unit"]=0
+ }
+ },
+ [10461]={
+ ["next_chapter"]=10462,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=133600,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=44088,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=19848,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2005,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=19848,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=2075,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1046,
+ ["unit"]=0
+ }
+ },
+ [10462]={
+ ["next_chapter"]=10463,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=133955,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=44205,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=20047,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2025,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=20047,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=2075,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1046,
+ ["unit"]=0
+ }
+ },
+ [10463]={
+ ["next_chapter"]=10464,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=134311,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=44323,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=20247,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2045,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=20247,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=2075,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1046,
+ ["unit"]=0
+ }
+ },
+ [10464]={
+ ["next_chapter"]=10465,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=134668,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=44440,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=20450,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2065,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=20450,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=2075,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1046,
+ ["unit"]=0
+ }
+ },
+ [10465]={
+ ["next_chapter"]=10466,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=135025,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=44558,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=20654,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2086,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=20654,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=2075,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1046,
+ ["unit"]=0
+ }
+ },
+ [10466]={
+ ["next_chapter"]=10467,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=135383,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=44676,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=20861,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2107,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=20861,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=2075,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1046,
+ ["unit"]=0
+ }
+ },
+ [10467]={
+ ["next_chapter"]=10468,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=135742,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=44795,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=21069,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2128,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=21069,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=2075,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1046,
+ ["unit"]=0
+ }
+ },
+ [10468]={
+ ["next_chapter"]=10469,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=136101,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=44913,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=21280,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2149,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=21280,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=2075,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1046,
+ ["unit"]=0
+ }
+ },
+ [10469]={
+ ["next_chapter"]=10470,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=136461,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=45032,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=21493,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2171,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=21493,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=2075,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1046,
+ ["unit"]=0
+ }
+ },
+ [10470]={
+ ["next_chapter"]=10471,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=136822,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=45151,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=21708,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2192,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=21708,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=2292,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1047,
+ ["unit"]=0
+ }
+ },
+ [10471]={
+ ["next_chapter"]=10472,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=137184,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=45271,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=21925,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2214,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=21925,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=2292,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1047,
+ ["unit"]=0
+ }
+ },
+ [10472]={
+ ["next_chapter"]=10473,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=137546,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=45390,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=22144,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2237,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=22144,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=2292,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1047,
+ ["unit"]=0
+ }
+ },
+ [10473]={
+ ["next_chapter"]=10474,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=137909,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=45510,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=22366,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2259,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=22366,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=2292,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1047,
+ ["unit"]=0
+ }
+ },
+ [10474]={
+ ["next_chapter"]=10475,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=138273,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=45630,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=22589,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2282,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=22589,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=2292,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1047,
+ ["unit"]=0
+ }
+ },
+ [10475]={
+ ["next_chapter"]=10476,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=138638,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=45751,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=22815,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2304,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=22815,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=2292,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1047,
+ ["unit"]=0
+ }
+ },
+ [10476]={
+ ["next_chapter"]=10477,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=139003,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=45871,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=23043,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2327,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=23043,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=2292,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1047,
+ ["unit"]=0
+ }
+ },
+ [10477]={
+ ["next_chapter"]=10478,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=139370,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=45992,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=23274,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2351,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=23274,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=2292,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1047,
+ ["unit"]=0
+ }
+ },
+ [10478]={
+ ["next_chapter"]=10479,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=139736,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=46113,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=23507,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2374,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=23507,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=2292,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1047,
+ ["unit"]=0
+ }
+ },
+ [10479]={
+ ["next_chapter"]=10480,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=140104,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=46234,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=23742,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2398,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=23742,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=2292,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1047,
+ ["unit"]=0
+ }
+ },
+ [10480]={
+ ["next_chapter"]=10481,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=140473,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=46356,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=23979,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2422,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=23979,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=2532,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1048,
+ ["unit"]=0
+ }
+ },
+ [10481]={
+ ["next_chapter"]=10482,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=140842,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=46478,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=24219,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2446,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=24219,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=2532,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1048,
+ ["unit"]=0
+ }
+ },
+ [10482]={
+ ["next_chapter"]=10483,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=141212,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=46600,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=24461,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2471,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=24461,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=2532,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1048,
+ ["unit"]=0
+ }
+ },
+ [10483]={
+ ["next_chapter"]=10484,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=141582,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=46722,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=24706,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2495,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=24706,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=2532,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1048,
+ ["unit"]=0
+ }
+ },
+ [10484]={
+ ["next_chapter"]=10485,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=141954,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=46845,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=24953,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2520,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=24953,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=2532,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1048,
+ ["unit"]=0
+ }
+ },
+ [10485]={
+ ["next_chapter"]=10486,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=142326,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=46968,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=25202,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2545,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=25202,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=2532,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1048,
+ ["unit"]=0
+ }
+ },
+ [10486]={
+ ["next_chapter"]=10487,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=142699,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=47091,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=25454,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2571,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=25454,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=2532,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1048,
+ ["unit"]=0
+ }
+ },
+ [10487]={
+ ["next_chapter"]=10488,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=143073,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=47214,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=25709,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2597,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=25709,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=2532,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1048,
+ ["unit"]=0
+ }
+ },
+ [10488]={
+ ["next_chapter"]=10489,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=143447,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=47338,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=25966,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2623,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=25966,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=2532,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1048,
+ ["unit"]=0
+ }
+ },
+ [10489]={
+ ["next_chapter"]=10490,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=143822,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=47461,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=26226,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2649,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=26226,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=2532,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1048,
+ ["unit"]=0
+ }
+ },
+ [10490]={
+ ["next_chapter"]=10491,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=144198,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=47585,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=26488,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2675,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=26488,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=2797,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1049,
+ ["unit"]=0
+ }
+ },
+ [10491]={
+ ["next_chapter"]=10492,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=144575,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=47710,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=26753,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2702,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=26753,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=2797,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1049,
+ ["unit"]=0
+ }
+ },
+ [10492]={
+ ["next_chapter"]=10493,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=144953,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=47834,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=27020,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2729,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=27020,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=2797,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1049,
+ ["unit"]=0
+ }
+ },
+ [10493]={
+ ["next_chapter"]=10494,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=145331,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=47959,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=27290,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2756,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=27290,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=2797,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1049,
+ ["unit"]=0
+ }
+ },
+ [10494]={
+ ["next_chapter"]=10495,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=145710,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=48084,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=27563,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2784,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=27563,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=2797,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1049,
+ ["unit"]=0
+ }
+ },
+ [10495]={
+ ["next_chapter"]=10496,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=146090,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=48210,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=27839,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2812,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=27839,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=2797,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1049,
+ ["unit"]=0
+ }
+ },
+ [10496]={
+ ["next_chapter"]=10497,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=146470,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=48335,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=28117,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2840,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=28117,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=2797,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1049,
+ ["unit"]=0
+ }
+ },
+ [10497]={
+ ["next_chapter"]=10498,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=146851,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=48461,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=28398,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2868,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=28398,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=2797,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1049,
+ ["unit"]=0
+ }
+ },
+ [10498]={
+ ["next_chapter"]=10499,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=147234,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=48587,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=28682,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2897,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=28682,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=2797,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1049,
+ ["unit"]=0
+ }
+ },
+ [10499]={
+ ["next_chapter"]=10500,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=147616,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=48713,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=28969,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2926,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=28969,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=2797,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1049,
+ ["unit"]=0
+ }
+ },
+ [10500]={
+ ["next_chapter"]=10501,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=148000,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=48840,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=29259,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2955,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=29259,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=3089,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1050,
+ ["unit"]=0
+ }
+ },
+ [10501]={
+ ["next_chapter"]=10502,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=148384,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=48967,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=29552,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2985,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=29552,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=3089,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1050,
+ ["unit"]=0
+ }
+ },
+ [10502]={
+ ["next_chapter"]=10503,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=148770,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=49094,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=29847,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3015,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=29847,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=3089,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1050,
+ ["unit"]=0
+ }
+ },
+ [10503]={
+ ["next_chapter"]=10504,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=149155,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=49221,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=30146,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3045,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=30146,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=3089,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1050,
+ ["unit"]=0
+ }
+ },
+ [10504]={
+ ["next_chapter"]=10505,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=149542,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=49349,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=30447,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3075,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=30447,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=3089,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1050,
+ ["unit"]=0
+ }
+ },
+ [10505]={
+ ["next_chapter"]=10506,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=149930,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=49477,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=30751,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3106,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=30751,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=3089,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1050,
+ ["unit"]=0
+ }
+ },
+ [10506]={
+ ["next_chapter"]=10507,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150318,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=49605,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=31059,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3137,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=31059,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=3089,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1050,
+ ["unit"]=0
+ }
+ },
+ [10507]={
+ ["next_chapter"]=10508,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=150707,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=49733,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=31370,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3168,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=31370,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=3089,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1050,
+ ["unit"]=0
+ }
+ },
+ [10508]={
+ ["next_chapter"]=10509,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=151097,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=49862,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=31683,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3200,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=31683,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=3089,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1050,
+ ["unit"]=0
+ }
+ },
+ [10509]={
+ ["next_chapter"]=10510,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=151487,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=49991,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=32000,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3232,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=32000,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=3089,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1050,
+ ["unit"]=0
+ }
+ },
+ [10510]={
+ ["next_chapter"]=10511,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=151879,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=50120,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=32320,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3264,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=32320,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=3412,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1051,
+ ["unit"]=0
+ }
+ },
+ [10511]={
+ ["next_chapter"]=10512,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=152271,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=50249,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=32643,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3297,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=32643,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=3412,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1051,
+ ["unit"]=0
+ }
+ },
+ [10512]={
+ ["next_chapter"]=10513,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=152664,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=50379,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=32970,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3330,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=32970,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=3412,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1051,
+ ["unit"]=0
+ }
+ },
+ [10513]={
+ ["next_chapter"]=10514,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=153057,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=50509,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=33299,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3363,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=33299,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=3412,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1051,
+ ["unit"]=0
+ }
+ },
+ [10514]={
+ ["next_chapter"]=10515,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=153452,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=50639,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=33632,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3397,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=33632,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=3412,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1051,
+ ["unit"]=0
+ }
+ },
+ [10515]={
+ ["next_chapter"]=10516,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=153847,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=50769,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=33969,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3431,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=33969,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=3412,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1051,
+ ["unit"]=0
+ }
+ },
+ [10516]={
+ ["next_chapter"]=10517,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=154243,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=50900,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=34308,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3465,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=34308,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=3412,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1051,
+ ["unit"]=0
+ }
+ },
+ [10517]={
+ ["next_chapter"]=10518,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=154640,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=51031,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=34652,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3500,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=34652,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=3412,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1051,
+ ["unit"]=0
+ }
+ },
+ [10518]={
+ ["next_chapter"]=10519,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=155037,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=51162,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=34998,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3535,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=34998,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=3412,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1051,
+ ["unit"]=0
+ }
+ },
+ [10519]={
+ ["next_chapter"]=10520,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=155436,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=51294,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=35348,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3570,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=35348,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=3412,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1051,
+ ["unit"]=0
+ }
+ },
+ [10520]={
+ ["next_chapter"]=10521,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=155835,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=51425,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=35702,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3606,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=35702,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=3769,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1052,
+ ["unit"]=0
+ }
+ },
+ [10521]={
+ ["next_chapter"]=10522,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=156235,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=51557,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=36059,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3642,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=36059,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=3769,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1052,
+ ["unit"]=0
+ }
+ },
+ [10522]={
+ ["next_chapter"]=10523,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=156635,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=51690,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=36419,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3678,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=36419,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=3769,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1052,
+ ["unit"]=0
+ }
+ },
+ [10523]={
+ ["next_chapter"]=10524,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=157037,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=51822,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=36783,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3715,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=36783,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=3769,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1052,
+ ["unit"]=0
+ }
+ },
+ [10524]={
+ ["next_chapter"]=10525,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=157439,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=51955,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=37151,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3752,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=37151,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=3769,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1052,
+ ["unit"]=0
+ }
+ },
+ [10525]={
+ ["next_chapter"]=10526,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=157842,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=52088,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=37523,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3790,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=37523,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=3769,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1052,
+ ["unit"]=0
+ }
+ },
+ [10526]={
+ ["next_chapter"]=10527,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=158246,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=52221,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=37898,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3828,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=37898,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=3769,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1052,
+ ["unit"]=0
+ }
+ },
+ [10527]={
+ ["next_chapter"]=10528,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=158650,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=52355,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=38277,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3866,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=38277,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=3769,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1052,
+ ["unit"]=0
+ }
+ },
+ [10528]={
+ ["next_chapter"]=10529,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=159056,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=52488,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=38660,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3905,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=38660,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=3769,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1052,
+ ["unit"]=0
+ }
+ },
+ [10529]={
+ ["next_chapter"]=10530,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=159462,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=52622,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=39046,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3944,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=39046,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=3769,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1052,
+ ["unit"]=0
+ }
+ },
+ [10530]={
+ ["next_chapter"]=10531,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=159869,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=52757,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=39437,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3983,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=39437,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=4164,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1053,
+ ["unit"]=0
+ }
+ },
+ [10531]={
+ ["next_chapter"]=10532,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=160277,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=52891,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=39831,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4023,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=39831,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=4164,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1053,
+ ["unit"]=0
+ }
+ },
+ [10532]={
+ ["next_chapter"]=10533,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=160685,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=53026,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=40229,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4063,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=40229,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=4164,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1053,
+ ["unit"]=0
+ }
+ },
+ [10533]={
+ ["next_chapter"]=10534,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=161095,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=53161,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=40632,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4104,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=40632,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=4164,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1053,
+ ["unit"]=0
+ }
+ },
+ [10534]={
+ ["next_chapter"]=10535,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=161505,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=53297,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=41038,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4145,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=41038,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=4164,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1053,
+ ["unit"]=0
+ }
+ },
+ [10535]={
+ ["next_chapter"]=10536,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=161916,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=53432,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=41448,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4186,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=41448,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=4164,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1053,
+ ["unit"]=0
+ }
+ },
+ [10536]={
+ ["next_chapter"]=10537,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=162328,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=53568,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=41863,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4228,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=41863,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=4164,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1053,
+ ["unit"]=0
+ }
+ },
+ [10537]={
+ ["next_chapter"]=10538,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=162740,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=53704,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=42281,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4270,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=42281,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=4164,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1053,
+ ["unit"]=0
+ }
+ },
+ [10538]={
+ ["next_chapter"]=10539,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=163154,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=53841,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=42704,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4313,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=42704,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=4164,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1053,
+ ["unit"]=0
+ }
+ },
+ [10539]={
+ ["next_chapter"]=10540,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=163568,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=53977,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=43131,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4356,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=43131,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=4164,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1053,
+ ["unit"]=0
+ }
+ },
+ [10540]={
+ ["next_chapter"]=10541,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=163983,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=54114,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=43563,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4400,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=43563,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=4599,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1054,
+ ["unit"]=0
+ }
+ },
+ [10541]={
+ ["next_chapter"]=10542,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=164398,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=54251,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=43998,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4444,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=43998,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=4599,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1054,
+ ["unit"]=0
+ }
+ },
+ [10542]={
+ ["next_chapter"]=10543,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=164815,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=54389,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=44438,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4488,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=44438,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=4599,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1054,
+ ["unit"]=0
+ }
+ },
+ [10543]={
+ ["next_chapter"]=10544,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=165232,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=54527,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=44883,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4533,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=44883,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=4599,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1054,
+ ["unit"]=0
+ }
+ },
+ [10544]={
+ ["next_chapter"]=10545,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=165650,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=54665,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=45331,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4578,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=45331,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=4599,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1054,
+ ["unit"]=0
+ }
+ },
+ [10545]={
+ ["next_chapter"]=10546,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=166069,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=54803,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=45785,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4624,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=45785,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=4599,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1054,
+ ["unit"]=0
+ }
+ },
+ [10546]={
+ ["next_chapter"]=10547,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=166489,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=54941,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=46243,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4671,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=46243,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=4599,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1054,
+ ["unit"]=0
+ }
+ },
+ [10547]={
+ ["next_chapter"]=10548,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=166910,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=55080,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=46705,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4717,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=46705,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=4599,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1054,
+ ["unit"]=0
+ }
+ },
+ [10548]={
+ ["next_chapter"]=10549,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=167331,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=55219,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=47172,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4764,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=47172,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=4599,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1054,
+ ["unit"]=0
+ }
+ },
+ [10549]={
+ ["next_chapter"]=10550,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=167753,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=55359,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=47644,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4812,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=47644,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=4599,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1054,
+ ["unit"]=0
+ }
+ },
+ [10550]={
+ ["next_chapter"]=10551,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=168176,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=55498,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=48120,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4860,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=48120,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=5081,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1055,
+ ["unit"]=0
+ }
+ },
+ [10551]={
+ ["next_chapter"]=10552,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=168600,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=55638,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=48601,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4909,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=48601,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=5081,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1055,
+ ["unit"]=0
+ }
+ },
+ [10552]={
+ ["next_chapter"]=10553,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=169024,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=55778,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=49087,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4958,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=49087,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=5081,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1055,
+ ["unit"]=0
+ }
+ },
+ [10553]={
+ ["next_chapter"]=10554,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=169450,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=55918,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=49578,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5007,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=49578,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=5081,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1055,
+ ["unit"]=0
+ }
+ },
+ [10554]={
+ ["next_chapter"]=10555,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=169876,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=56059,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=50074,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5057,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=50074,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=5081,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1055,
+ ["unit"]=0
+ }
+ },
+ [10555]={
+ ["next_chapter"]=10556,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=170303,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=56200,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=50575,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5108,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=50575,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=5081,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1055,
+ ["unit"]=0
+ }
+ },
+ [10556]={
+ ["next_chapter"]=10557,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=170731,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=56341,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=51081,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5159,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=51081,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=5081,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1055,
+ ["unit"]=0
+ }
+ },
+ [10557]={
+ ["next_chapter"]=10558,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=171159,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=56483,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=51591,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5211,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=51591,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=5081,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1055,
+ ["unit"]=0
+ }
+ },
+ [10558]={
+ ["next_chapter"]=10559,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=171589,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=56624,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=52107,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5263,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=52107,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=5081,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1055,
+ ["unit"]=0
+ }
+ },
+ [10559]={
+ ["next_chapter"]=10560,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=172019,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=56766,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=52628,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5315,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=52628,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=5081,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1055,
+ ["unit"]=0
+ }
+ },
+ [10560]={
+ ["next_chapter"]=10561,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=172450,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=56909,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=53155,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5369,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=53155,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=5612,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1056,
+ ["unit"]=0
+ }
+ },
+ [10561]={
+ ["next_chapter"]=10562,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=172882,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=57051,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=53686,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5422,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=53686,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=5612,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1056,
+ ["unit"]=0
+ }
+ },
+ [10562]={
+ ["next_chapter"]=10563,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=173315,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=57194,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=54223,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5477,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=54223,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=5612,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1056,
+ ["unit"]=0
+ }
+ },
+ [10563]={
+ ["next_chapter"]=10564,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=173748,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=57337,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=54765,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5531,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=54765,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=5612,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1056,
+ ["unit"]=0
+ }
+ },
+ [10564]={
+ ["next_chapter"]=10565,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=174182,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=57480,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=55313,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5587,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=55313,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=5612,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1056,
+ ["unit"]=0
+ }
+ },
+ [10565]={
+ ["next_chapter"]=10566,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=174618,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=57624,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=55866,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5642,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=55866,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=5612,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1056,
+ ["unit"]=0
+ }
+ },
+ [10566]={
+ ["next_chapter"]=10567,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=175054,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=57768,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=56425,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5699,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=56425,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=5612,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1056,
+ ["unit"]=0
+ }
+ },
+ [10567]={
+ ["next_chapter"]=10568,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=175490,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=57912,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=56989,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5756,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=56989,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=5612,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1056,
+ ["unit"]=0
+ }
+ },
+ [10568]={
+ ["next_chapter"]=10569,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=175928,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=58056,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=57559,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5813,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=57559,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=5612,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1056,
+ ["unit"]=0
+ }
+ },
+ [10569]={
+ ["next_chapter"]=10570,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=176366,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=58201,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=58134,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5872,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=58134,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=5612,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1056,
+ ["unit"]=0
+ }
+ },
+ [10570]={
+ ["next_chapter"]=10571,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=176806,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=58346,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=58716,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5930,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=58716,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=6199,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1057,
+ ["unit"]=0
+ }
+ },
+ [10571]={
+ ["next_chapter"]=10572,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=177246,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=58491,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=59303,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5990,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=59303,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=6199,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1057,
+ ["unit"]=0
+ }
+ },
+ [10572]={
+ ["next_chapter"]=10573,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=177686,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=58637,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=59896,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6049,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=59896,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=6199,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1057,
+ ["unit"]=0
+ }
+ },
+ [10573]={
+ ["next_chapter"]=10574,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=178128,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=58782,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=60495,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6110,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=60495,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=6199,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1057,
+ ["unit"]=0
+ }
+ },
+ [10574]={
+ ["next_chapter"]=10575,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=178571,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=58928,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=61100,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6171,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=61100,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=6199,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1057,
+ ["unit"]=0
+ }
+ },
+ [10575]={
+ ["next_chapter"]=10576,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=179014,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=59075,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=61711,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6233,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=61711,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=6199,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1057,
+ ["unit"]=0
+ }
+ },
+ [10576]={
+ ["next_chapter"]=10577,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=179458,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=59221,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=62328,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6295,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=62328,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=6199,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1057,
+ ["unit"]=0
+ }
+ },
+ [10577]={
+ ["next_chapter"]=10578,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=179903,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=59368,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=62951,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6358,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=62951,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=6199,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1057,
+ ["unit"]=0
+ }
+ },
+ [10578]={
+ ["next_chapter"]=10579,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=180349,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=59515,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=63581,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6422,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=63581,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=6199,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1057,
+ ["unit"]=0
+ }
+ },
+ [10579]={
+ ["next_chapter"]=10580,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=180796,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=59663,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=64217,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6486,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=64217,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=6199,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1057,
+ ["unit"]=0
+ }
+ },
+ [10580]={
+ ["next_chapter"]=10581,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=181243,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=59810,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=64859,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6551,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=64859,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=6848,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1058,
+ ["unit"]=0
+ }
+ },
+ [10581]={
+ ["next_chapter"]=10582,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=181691,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=59958,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=65507,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6616,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=65507,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=6848,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1058,
+ ["unit"]=0
+ }
+ },
+ [10582]={
+ ["next_chapter"]=10583,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=182141,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=60106,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=66162,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6682,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=66162,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=6848,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1058,
+ ["unit"]=0
+ }
+ },
+ [10583]={
+ ["next_chapter"]=10584,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=182591,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=60255,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=66824,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6749,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=66824,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=6848,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1058,
+ ["unit"]=0
+ }
+ },
+ [10584]={
+ ["next_chapter"]=10585,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=183041,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=60404,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=67492,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6817,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=67492,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=6848,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1058,
+ ["unit"]=0
+ }
+ },
+ [10585]={
+ ["next_chapter"]=10586,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=183493,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=60553,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=68167,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6885,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=68167,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=6848,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1058,
+ ["unit"]=0
+ }
+ },
+ [10586]={
+ ["next_chapter"]=10587,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=183945,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=60702,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=68849,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6954,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=68849,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=6848,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1058,
+ ["unit"]=0
+ }
+ },
+ [10587]={
+ ["next_chapter"]=10588,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=184399,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=60852,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=69537,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7023,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=69537,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=6848,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1058,
+ ["unit"]=0
+ }
+ },
+ [10588]={
+ ["next_chapter"]=10589,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=184853,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=61001,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=70233,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7094,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=70233,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=6848,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1058,
+ ["unit"]=0
+ }
+ },
+ [10589]={
+ ["next_chapter"]=10590,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=185308,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=61152,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=70935,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7164,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=70935,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=6848,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1058,
+ ["unit"]=0
+ }
+ },
+ [10590]={
+ ["next_chapter"]=10591,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=185764,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=61302,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=71644,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7236,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=71644,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=7564,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1059,
+ ["unit"]=0
+ }
+ },
+ [10591]={
+ ["next_chapter"]=10592,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=186220,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=61453,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=72361,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7308,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=72361,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=7564,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1059,
+ ["unit"]=0
+ }
+ },
+ [10592]={
+ ["next_chapter"]=10593,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=186678,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=61604,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=73085,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7382,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=73085,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=7564,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1059,
+ ["unit"]=0
+ }
+ },
+ [10593]={
+ ["next_chapter"]=10594,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=187136,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=61755,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=73815,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7455,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=73815,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=7564,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1059,
+ ["unit"]=0
+ }
+ },
+ [10594]={
+ ["next_chapter"]=10595,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=187595,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=61906,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=74554,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7530,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=74554,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=7564,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1059,
+ ["unit"]=0
+ }
+ },
+ [10595]={
+ ["next_chapter"]=10596,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=188055,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=62058,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=75299,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7605,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=75299,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=7564,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1059,
+ ["unit"]=0
+ }
+ },
+ [10596]={
+ ["next_chapter"]=10597,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=188516,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=62210,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=76052,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7681,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=76052,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=7564,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1059,
+ ["unit"]=0
+ }
+ },
+ [10597]={
+ ["next_chapter"]=10598,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=188978,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=62363,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=76813,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7758,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=76813,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=7564,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1059,
+ ["unit"]=0
+ }
+ },
+ [10598]={
+ ["next_chapter"]=10599,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=189440,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=62515,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=77581,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7836,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=77581,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=7564,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1059,
+ ["unit"]=0
+ }
+ },
+ [10599]={
+ ["next_chapter"]=10600,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=189904,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=62668,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=78357,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7914,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=78357,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=7564,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1059,
+ ["unit"]=0
+ }
+ },
+ [10600]={
+ ["next_chapter"]=10601,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=190368,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=62821,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=79140,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7993,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=79140,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=8356,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1060,
+ ["unit"]=0
+ }
+ },
+ [10601]={
+ ["next_chapter"]=10602,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=190833,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=62975,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=79931,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8073,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=79931,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=8356,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1060,
+ ["unit"]=0
+ }
+ },
+ [10602]={
+ ["next_chapter"]=10603,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=191299,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=63129,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=80731,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8154,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=80731,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=8356,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1060,
+ ["unit"]=0
+ }
+ },
+ [10603]={
+ ["next_chapter"]=10604,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=191766,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=63283,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=81538,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8235,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=81538,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=8356,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1060,
+ ["unit"]=0
+ }
+ },
+ [10604]={
+ ["next_chapter"]=10605,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=192233,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=63437,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=82353,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8318,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=82353,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=8356,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1060,
+ ["unit"]=0
+ }
+ },
+ [10605]={
+ ["next_chapter"]=10606,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=192702,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=63592,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=83177,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8401,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=83177,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=8356,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1060,
+ ["unit"]=0
+ }
+ },
+ [10606]={
+ ["next_chapter"]=10607,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=193171,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=63746,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=84009,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8485,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=84009,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=8356,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1060,
+ ["unit"]=0
+ }
+ },
+ [10607]={
+ ["next_chapter"]=10608,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=193641,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=63902,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=84849,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8570,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=84849,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=8356,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1060,
+ ["unit"]=0
+ }
+ },
+ [10608]={
+ ["next_chapter"]=10609,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=194112,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=64057,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=85697,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8655,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=85697,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=8356,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1060,
+ ["unit"]=0
+ }
+ },
+ [10609]={
+ ["next_chapter"]=10610,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=194584,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=64213,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=86554,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8742,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=86554,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=8356,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1060,
+ ["unit"]=0
+ }
+ },
+ [10610]={
+ ["next_chapter"]=10611,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=195057,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=64369,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=87420,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8829,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=87420,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=9230,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1061,
+ ["unit"]=0
+ }
+ },
+ [10611]={
+ ["next_chapter"]=10612,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=195530,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=64525,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=88294,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8918,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=88294,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=9230,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1061,
+ ["unit"]=0
+ }
+ },
+ [10612]={
+ ["next_chapter"]=10613,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=196005,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=64682,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=89177,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9007,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=89177,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=9230,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1061,
+ ["unit"]=0
+ }
+ },
+ [10613]={
+ ["next_chapter"]=10614,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=196480,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=64838,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=90069,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9097,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=90069,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=9230,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1061,
+ ["unit"]=0
+ }
+ },
+ [10614]={
+ ["next_chapter"]=10615,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=196956,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=64996,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=90969,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9188,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=90969,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=9230,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1061,
+ ["unit"]=0
+ }
+ },
+ [10615]={
+ ["next_chapter"]=10616,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=197433,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=65153,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=91879,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9280,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=91879,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=9230,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1061,
+ ["unit"]=0
+ }
+ },
+ [10616]={
+ ["next_chapter"]=10617,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=197911,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=65311,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=92798,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9373,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=92798,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=9230,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1061,
+ ["unit"]=0
+ }
+ },
+ [10617]={
+ ["next_chapter"]=10618,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=198390,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=65469,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=93726,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9466,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=93726,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=9230,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1061,
+ ["unit"]=0
+ }
+ },
+ [10618]={
+ ["next_chapter"]=10619,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=198869,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=65627,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=94663,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9561,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=94663,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=9230,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1061,
+ ["unit"]=0
+ }
+ },
+ [10619]={
+ ["next_chapter"]=10620,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=199350,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=65785,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=95610,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9657,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=95610,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=9230,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1061,
+ ["unit"]=0
+ }
+ },
+ [10620]={
+ ["next_chapter"]=10621,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=199831,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=65944,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=96566,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9753,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=96566,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=10196,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1062,
+ ["unit"]=0
+ }
+ },
+ [10621]={
+ ["next_chapter"]=10622,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=200313,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=66103,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=97532,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9851,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=97532,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=10196,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1062,
+ ["unit"]=0
+ }
+ },
+ [10622]={
+ ["next_chapter"]=10623,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=200796,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=66263,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=98507,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9949,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=98507,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=10196,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1062,
+ ["unit"]=0
+ }
+ },
+ [10623]={
+ ["next_chapter"]=10624,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=201280,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=66422,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=99492,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10049,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=99492,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=10196,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1062,
+ ["unit"]=0
+ }
+ },
+ [10624]={
+ ["next_chapter"]=10625,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=201764,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=66582,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=100487,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10149,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=100487,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=10196,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1062,
+ ["unit"]=0
+ }
+ },
+ [10625]={
+ ["next_chapter"]=10626,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=202250,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=66743,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=101492,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10251,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=101492,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=10196,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1062,
+ ["unit"]=0
+ }
+ },
+ [10626]={
+ ["next_chapter"]=10627,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=202736,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=66903,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=102507,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10353,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=102507,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=10196,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1062,
+ ["unit"]=0
+ }
+ },
+ [10627]={
+ ["next_chapter"]=10628,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=203224,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=67064,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=103532,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10457,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=103532,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=10196,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1062,
+ ["unit"]=0
+ }
+ },
+ [10628]={
+ ["next_chapter"]=10629,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=203712,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=67225,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=104567,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10561,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=104567,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=10196,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1062,
+ ["unit"]=0
+ }
+ },
+ [10629]={
+ ["next_chapter"]=10630,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=204201,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=67386,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=105613,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10667,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=105613,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=10196,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1062,
+ ["unit"]=0
+ }
+ },
+ [10630]={
+ ["next_chapter"]=10631,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=204691,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=67548,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=106669,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10774,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=106669,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=11262,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1063,
+ ["unit"]=0
+ }
+ },
+ [10631]={
+ ["next_chapter"]=10632,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=205182,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=67710,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=107736,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10881,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=107736,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=11262,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1063,
+ ["unit"]=0
+ }
+ },
+ [10632]={
+ ["next_chapter"]=10633,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=205673,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=67872,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=108813,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10990,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=108813,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=11262,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1063,
+ ["unit"]=0
+ }
+ },
+ [10633]={
+ ["next_chapter"]=10634,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=206166,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=68035,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=109901,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11100,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=109901,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=11262,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1063,
+ ["unit"]=0
+ }
+ },
+ [10634]={
+ ["next_chapter"]=10635,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=206659,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=68197,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=111000,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11211,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=111000,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=11262,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1063,
+ ["unit"]=0
+ }
+ },
+ [10635]={
+ ["next_chapter"]=10636,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=207153,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=68361,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=112110,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11323,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=112110,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=11262,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1063,
+ ["unit"]=0
+ }
+ },
+ [10636]={
+ ["next_chapter"]=10637,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=207648,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=68524,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=113231,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11436,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=113231,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=11262,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1063,
+ ["unit"]=0
+ }
+ },
+ [10637]={
+ ["next_chapter"]=10638,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=208144,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=68688,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=114363,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11551,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=114363,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=11262,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1063,
+ ["unit"]=0
+ }
+ },
+ [10638]={
+ ["next_chapter"]=10639,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=208641,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=68852,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=115507,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11666,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=115507,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=11262,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1063,
+ ["unit"]=0
+ }
+ },
+ [10639]={
+ ["next_chapter"]=10640,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=209139,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=69016,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=116662,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11783,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=116662,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=11262,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1063,
+ ["unit"]=0
+ }
+ },
+ [10640]={
+ ["next_chapter"]=10641,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=209638,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=69180,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=117829,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11901,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=117829,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=12441,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1064,
+ ["unit"]=0
+ }
+ },
+ [10641]={
+ ["next_chapter"]=10642,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=210137,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=69345,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=119007,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12020,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=119007,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=12441,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1064,
+ ["unit"]=0
+ }
+ },
+ [10642]={
+ ["next_chapter"]=10643,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=210637,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=69510,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=120197,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12140,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=120197,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=12441,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1064,
+ ["unit"]=0
+ }
+ },
+ [10643]={
+ ["next_chapter"]=10644,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=211139,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=69676,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=121399,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12261,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=121399,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=12441,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1064,
+ ["unit"]=0
+ }
+ },
+ [10644]={
+ ["next_chapter"]=10645,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=211641,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=69841,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=122613,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12384,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=122613,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=12441,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1064,
+ ["unit"]=0
+ }
+ },
+ [10645]={
+ ["next_chapter"]=10646,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=212144,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=70007,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=123839,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12508,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=123839,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=12441,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1064,
+ ["unit"]=0
+ }
+ },
+ [10646]={
+ ["next_chapter"]=10647,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=212648,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=70174,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=125078,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12633,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=125078,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=12441,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1064,
+ ["unit"]=0
+ }
+ },
+ [10647]={
+ ["next_chapter"]=10648,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=213152,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=70340,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=126328,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12759,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=126328,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=12441,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1064,
+ ["unit"]=0
+ }
+ },
+ [10648]={
+ ["next_chapter"]=10649,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=213658,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=70507,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=127592,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12887,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=127592,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=12441,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1064,
+ ["unit"]=0
+ }
+ },
+ [10649]={
+ ["next_chapter"]=10650,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=214165,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=70674,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=128868,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13016,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=128868,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=12441,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1064,
+ ["unit"]=0
+ }
+ },
+ [10650]={
+ ["next_chapter"]=10651,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=214672,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=70842,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=130156,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13146,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=130156,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=13742,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1065,
+ ["unit"]=0
+ }
+ },
+ [10651]={
+ ["next_chapter"]=10652,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=215180,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=71009,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=131458,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13277,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=131458,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=13742,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1065,
+ ["unit"]=0
+ }
+ },
+ [10652]={
+ ["next_chapter"]=10653,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=215689,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=71178,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=132772,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13410,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=132772,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=13742,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1065,
+ ["unit"]=0
+ }
+ },
+ [10653]={
+ ["next_chapter"]=10654,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=216199,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=71346,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=134100,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13544,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=134100,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=13742,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1065,
+ ["unit"]=0
+ }
+ },
+ [10654]={
+ ["next_chapter"]=10655,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=216710,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=71514,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=135441,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13680,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=135441,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=13742,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1065,
+ ["unit"]=0
+ }
+ },
+ [10655]={
+ ["next_chapter"]=10656,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=217222,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=71683,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=136796,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13816,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=136796,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=13742,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1065,
+ ["unit"]=0
+ }
+ },
+ [10656]={
+ ["next_chapter"]=10657,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=217735,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=71853,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=138164,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13955,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=138164,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=13742,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1065,
+ ["unit"]=0
+ }
+ },
+ [10657]={
+ ["next_chapter"]=10658,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=218249,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=72022,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=139545,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14094,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=139545,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=13742,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1065,
+ ["unit"]=0
+ }
+ },
+ [10658]={
+ ["next_chapter"]=10659,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=218763,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=72192,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=140941,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14235,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=140941,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=13742,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1065,
+ ["unit"]=0
+ }
+ },
+ [10659]={
+ ["next_chapter"]=10660,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=219278,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=72362,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=142350,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14377,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=142350,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=13742,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1065,
+ ["unit"]=0
+ }
+ },
+ [10660]={
+ ["next_chapter"]=10661,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=219795,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=72532,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=143774,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14521,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=143774,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=15180,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1066,
+ ["unit"]=0
+ }
+ },
+ [10661]={
+ ["next_chapter"]=10662,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=220312,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=72703,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=145211,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14666,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=145211,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=15180,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1066,
+ ["unit"]=0
+ }
+ },
+ [10662]={
+ ["next_chapter"]=10663,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=220830,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=72874,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=146663,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14813,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=146663,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=15180,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1066,
+ ["unit"]=0
+ }
+ },
+ [10663]={
+ ["next_chapter"]=10664,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=221349,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=73045,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=148130,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14961,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=148130,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=15180,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1066,
+ ["unit"]=0
+ }
+ },
+ [10664]={
+ ["next_chapter"]=10665,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=221869,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=73217,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=149611,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15111,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=149611,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=15180,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1066,
+ ["unit"]=0
+ }
+ },
+ [10665]={
+ ["next_chapter"]=10666,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=222389,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=73388,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=151107,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15262,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=151107,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=15180,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1066,
+ ["unit"]=0
+ }
+ },
+ [10666]={
+ ["next_chapter"]=10667,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=222911,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=73561,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=152618,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15414,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=152618,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=15180,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1066,
+ ["unit"]=0
+ }
+ },
+ [10667]={
+ ["next_chapter"]=10668,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=223434,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=73733,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=154145,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15569,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=154145,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=15180,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1066,
+ ["unit"]=0
+ }
+ },
+ [10668]={
+ ["next_chapter"]=10669,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=223957,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=73906,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=155686,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15724,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=155686,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=15180,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1066,
+ ["unit"]=0
+ }
+ },
+ [10669]={
+ ["next_chapter"]=10670,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=224481,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=74079,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=157243,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15882,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=157243,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=15180,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1066,
+ ["unit"]=0
+ }
+ },
+ [10670]={
+ ["next_chapter"]=10671,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=225006,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=74252,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=158815,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16040,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=158815,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=16768,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1067,
+ ["unit"]=0
+ }
+ },
+ [10671]={
+ ["next_chapter"]=10672,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=225533,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=74426,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=160404,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16201,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=160404,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=16768,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1067,
+ ["unit"]=0
+ }
+ },
+ [10672]={
+ ["next_chapter"]=10673,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=226060,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=74600,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=162008,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16363,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=162008,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=16768,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1067,
+ ["unit"]=0
+ }
+ },
+ [10673]={
+ ["next_chapter"]=10674,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=226587,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=74774,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=163628,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16526,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=163628,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=16768,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1067,
+ ["unit"]=0
+ }
+ },
+ [10674]={
+ ["next_chapter"]=10675,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=227116,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=74948,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=165264,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16692,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=165264,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=16768,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1067,
+ ["unit"]=0
+ }
+ },
+ [10675]={
+ ["next_chapter"]=10676,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=227646,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=75123,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=166917,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16859,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=166917,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=16768,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1067,
+ ["unit"]=0
+ }
+ },
+ [10676]={
+ ["next_chapter"]=10677,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=228177,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=75298,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=168586,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17027,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=168586,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=16768,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1067,
+ ["unit"]=0
+ }
+ },
+ [10677]={
+ ["next_chapter"]=10678,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=228708,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=75474,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=170272,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17197,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=170272,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=16768,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1067,
+ ["unit"]=0
+ }
+ },
+ [10678]={
+ ["next_chapter"]=10679,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=229241,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=75649,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=171974,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17369,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=171974,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=16768,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1067,
+ ["unit"]=0
+ }
+ },
+ [10679]={
+ ["next_chapter"]=10680,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=229774,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=75825,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=173694,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17543,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=173694,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=16768,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1067,
+ ["unit"]=0
+ }
+ },
+ [10680]={
+ ["next_chapter"]=10681,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=230308,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=76002,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=175431,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17719,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=175431,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=18522,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1068,
+ ["unit"]=0
+ }
+ },
+ [10681]={
+ ["next_chapter"]=10682,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=230843,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=76178,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=177185,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17896,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=177185,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=18522,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1068,
+ ["unit"]=0
+ }
+ },
+ [10682]={
+ ["next_chapter"]=10683,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=231379,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=76355,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=178957,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18075,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=178957,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=18522,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1068,
+ ["unit"]=0
+ }
+ },
+ [10683]={
+ ["next_chapter"]=10684,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=231916,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=76532,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=180747,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18255,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=180747,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=18522,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1068,
+ ["unit"]=0
+ }
+ },
+ [10684]={
+ ["next_chapter"]=10685,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=232454,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=76710,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=182554,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18438,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=182554,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=18522,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1068,
+ ["unit"]=0
+ }
+ },
+ [10685]={
+ ["next_chapter"]=10686,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=232993,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=76888,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=184380,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18622,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=184380,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=18522,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1068,
+ ["unit"]=0
+ }
+ },
+ [10686]={
+ ["next_chapter"]=10687,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=233533,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=77066,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=186224,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18809,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=186224,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=18522,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1068,
+ ["unit"]=0
+ }
+ },
+ [10687]={
+ ["next_chapter"]=10688,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=234073,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=77244,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=188086,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18997,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=188086,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=18522,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1068,
+ ["unit"]=0
+ }
+ },
+ [10688]={
+ ["next_chapter"]=10689,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=234615,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=77423,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=189967,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19187,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=189967,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=18522,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1068,
+ ["unit"]=0
+ }
+ },
+ [10689]={
+ ["next_chapter"]=10690,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=235157,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=77602,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=191866,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19378,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=191866,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=18522,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1068,
+ ["unit"]=0
+ }
+ },
+ [10690]={
+ ["next_chapter"]=10691,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=235700,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=77781,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=193785,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19572,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=193785,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=20460,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1069,
+ ["unit"]=0
+ }
+ },
+ [10691]={
+ ["next_chapter"]=10692,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=236245,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=77961,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=195723,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19768,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=195723,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=20460,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1069,
+ ["unit"]=0
+ }
+ },
+ [10692]={
+ ["next_chapter"]=10693,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=236790,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=78141,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=197680,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19966,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=197680,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=20460,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1069,
+ ["unit"]=0
+ }
+ },
+ [10693]={
+ ["next_chapter"]=10694,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=237336,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=78321,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=199657,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20165,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=199657,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=20460,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1069,
+ ["unit"]=0
+ }
+ },
+ [10694]={
+ ["next_chapter"]=10695,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=237883,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=78501,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=201653,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20367,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=201653,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=20460,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1069,
+ ["unit"]=0
+ }
+ },
+ [10695]={
+ ["next_chapter"]=10696,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=238431,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=78682,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=203670,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20571,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=203670,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=20460,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1069,
+ ["unit"]=0
+ }
+ },
+ [10696]={
+ ["next_chapter"]=10697,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=238980,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=78863,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=205707,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20776,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=205707,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=20460,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1069,
+ ["unit"]=0
+ }
+ },
+ [10697]={
+ ["next_chapter"]=10698,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=239529,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=79045,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=207764,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20984,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=207764,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=20460,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1069,
+ ["unit"]=0
+ }
+ },
+ [10698]={
+ ["next_chapter"]=10699,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=240080,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=79226,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=209841,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21194,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=209841,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=20460,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1069,
+ ["unit"]=0
+ }
+ },
+ [10699]={
+ ["next_chapter"]=10700,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=240632,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=79408,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=211940,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21406,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=211940,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=20460,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1069,
+ ["unit"]=0
+ }
+ },
+ [10700]={
+ ["next_chapter"]=10701,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=241184,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=79591,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=214059,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21620,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=214059,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=22601,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1070,
+ ["unit"]=0
+ }
+ },
+ [10701]={
+ ["next_chapter"]=10702,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=241737,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=79773,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=216200,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21836,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=216200,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=22601,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1070,
+ ["unit"]=0
+ }
+ },
+ [10702]={
+ ["next_chapter"]=10703,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=242292,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=79956,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=218362,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22055,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=218362,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=22601,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1070,
+ ["unit"]=0
+ }
+ },
+ [10703]={
+ ["next_chapter"]=10704,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=242847,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=80140,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=220545,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22275,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=220545,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=22601,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1070,
+ ["unit"]=0
+ }
+ },
+ [10704]={
+ ["next_chapter"]=10705,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=243403,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=80323,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=222751,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22498,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=222751,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=22601,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1070,
+ ["unit"]=0
+ }
+ },
+ [10705]={
+ ["next_chapter"]=10706,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=243960,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=80507,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=224978,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22723,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=224978,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=22601,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1070,
+ ["unit"]=0
+ }
+ },
+ [10706]={
+ ["next_chapter"]=10707,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=244518,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=80691,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=227228,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22950,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=227228,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=22601,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1070,
+ ["unit"]=0
+ }
+ },
+ [10707]={
+ ["next_chapter"]=10708,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=245077,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=80876,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=229500,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23180,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=229500,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=22601,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1070,
+ ["unit"]=0
+ }
+ },
+ [10708]={
+ ["next_chapter"]=10709,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=245637,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=81060,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=231795,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23411,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=231795,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=22601,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1070,
+ ["unit"]=0
+ }
+ },
+ [10709]={
+ ["next_chapter"]=10710,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=246198,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=81245,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=234113,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23645,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=234113,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=22601,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1070,
+ ["unit"]=0
+ }
+ },
+ [10710]={
+ ["next_chapter"]=10711,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=246760,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=81431,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=236455,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23882,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=236455,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=24965,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1071,
+ ["unit"]=0
+ }
+ },
+ [10711]={
+ ["next_chapter"]=10712,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=247322,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=81616,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=238819,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24121,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=238819,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=24965,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1071,
+ ["unit"]=0
+ }
+ },
+ [10712]={
+ ["next_chapter"]=10713,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=247886,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=81802,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=241207,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24362,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=241207,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=24965,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1071,
+ ["unit"]=0
+ }
+ },
+ [10713]={
+ ["next_chapter"]=10714,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=248451,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=81989,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=243619,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24606,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=243619,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=24965,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1071,
+ ["unit"]=0
+ }
+ },
+ [10714]={
+ ["next_chapter"]=10715,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=249016,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=82175,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=246056,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24852,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=246056,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=24965,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1071,
+ ["unit"]=0
+ }
+ },
+ [10715]={
+ ["next_chapter"]=10716,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=249583,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=82362,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=248516,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25100,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=248516,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=24965,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1071,
+ ["unit"]=0
+ }
+ },
+ [10716]={
+ ["next_chapter"]=10717,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=250150,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=82549,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=251001,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25351,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=251001,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=24965,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1071,
+ ["unit"]=0
+ }
+ },
+ [10717]={
+ ["next_chapter"]=10718,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=250718,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=82737,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=253511,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25605,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=253511,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=24965,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1071,
+ ["unit"]=0
+ }
+ },
+ [10718]={
+ ["next_chapter"]=10719,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=251287,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=82925,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=256046,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25861,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=256046,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=24965,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1071,
+ ["unit"]=0
+ }
+ },
+ [10719]={
+ ["next_chapter"]=10720,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=251857,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=83113,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=258607,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26119,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=258607,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=24965,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1071,
+ ["unit"]=0
+ }
+ },
+ [10720]={
+ ["next_chapter"]=10721,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=252429,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=83301,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=261193,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26380,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=261193,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=27577,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1072,
+ ["unit"]=0
+ }
+ },
+ [10721]={
+ ["next_chapter"]=10722,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=253001,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=83490,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=263805,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26644,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=263805,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=27577,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1072,
+ ["unit"]=0
+ }
+ },
+ [10722]={
+ ["next_chapter"]=10723,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=253574,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=83679,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=266443,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26911,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=266443,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=27577,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1072,
+ ["unit"]=0
+ }
+ },
+ [10723]={
+ ["next_chapter"]=10724,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=254147,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=83869,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=269107,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27180,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=269107,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=27577,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1072,
+ ["unit"]=0
+ }
+ },
+ [10724]={
+ ["next_chapter"]=10725,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=254722,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=84058,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=271798,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27452,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=271798,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=27577,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1072,
+ ["unit"]=0
+ }
+ },
+ [10725]={
+ ["next_chapter"]=10726,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=255298,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=84248,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=274516,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27726,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=274516,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=27577,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1072,
+ ["unit"]=0
+ }
+ },
+ [10726]={
+ ["next_chapter"]=10727,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=255875,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=84439,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=277262,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28003,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=277262,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=27577,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1072,
+ ["unit"]=0
+ }
+ },
+ [10727]={
+ ["next_chapter"]=10728,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=256452,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=84629,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=280034,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28283,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=280034,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=27577,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1072,
+ ["unit"]=0
+ }
+ },
+ [10728]={
+ ["next_chapter"]=10729,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=257031,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=84820,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=282834,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28566,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=282834,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=27577,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1072,
+ ["unit"]=0
+ }
+ },
+ [10729]={
+ ["next_chapter"]=10730,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=257610,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=85011,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=285663,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28852,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=285663,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=27577,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1072,
+ ["unit"]=0
+ }
+ },
+ [10730]={
+ ["next_chapter"]=10731,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=258191,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=85203,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=288519,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29140,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=288519,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=30462,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1073,
+ ["unit"]=0
+ }
+ },
+ [10731]={
+ ["next_chapter"]=10732,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=258772,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=85395,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=291405,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29432,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=291405,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=30462,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1073,
+ ["unit"]=0
+ }
+ },
+ [10732]={
+ ["next_chapter"]=10733,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=259355,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=85587,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=294319,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29726,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=294319,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=30462,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1073,
+ ["unit"]=0
+ }
+ },
+ [10733]={
+ ["next_chapter"]=10734,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=259938,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=85780,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=297262,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30023,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=297262,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=30462,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1073,
+ ["unit"]=0
+ }
+ },
+ [10734]={
+ ["next_chapter"]=10735,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=260522,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=85972,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=300234,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30324,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=300234,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=30462,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1073,
+ ["unit"]=0
+ }
+ },
+ [10735]={
+ ["next_chapter"]=10736,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=261108,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=86165,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=303237,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30627,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=303237,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=30462,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1073,
+ ["unit"]=0
+ }
+ },
+ [10736]={
+ ["next_chapter"]=10737,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=261694,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=86359,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=306269,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30933,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=306269,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=30462,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1073,
+ ["unit"]=0
+ }
+ },
+ [10737]={
+ ["next_chapter"]=10738,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=262281,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=86553,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=309332,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31243,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=309332,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=30462,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1073,
+ ["unit"]=0
+ }
+ },
+ [10738]={
+ ["next_chapter"]=10739,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=262869,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=86747,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=312425,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31555,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=312425,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=30462,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1073,
+ ["unit"]=0
+ }
+ },
+ [10739]={
+ ["next_chapter"]=10740,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=263458,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=86941,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=315549,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31870,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=315549,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=30462,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1073,
+ ["unit"]=0
+ }
+ },
+ [10740]={
+ ["next_chapter"]=10741,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=264048,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=87136,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=318705,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32189,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=318705,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=33650,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1074,
+ ["unit"]=0
+ }
+ },
+ [10741]={
+ ["next_chapter"]=10742,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=264639,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=87331,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=321892,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32511,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=321892,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=33650,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1074,
+ ["unit"]=0
+ }
+ },
+ [10742]={
+ ["next_chapter"]=10743,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=265231,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=87526,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=325111,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32836,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=325111,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=33650,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1074,
+ ["unit"]=0
+ }
+ },
+ [10743]={
+ ["next_chapter"]=10744,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=265823,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=87722,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=328362,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33165,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=328362,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=33650,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1074,
+ ["unit"]=0
+ }
+ },
+ [10744]={
+ ["next_chapter"]=10745,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=266417,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=87918,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=331646,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33496,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=331646,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=33650,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1074,
+ ["unit"]=0
+ }
+ },
+ [10745]={
+ ["next_chapter"]=10746,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=267012,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=88114,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=334962,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33831,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=334962,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=33650,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1074,
+ ["unit"]=0
+ }
+ },
+ [10746]={
+ ["next_chapter"]=10747,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=267608,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=88311,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=338312,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34169,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=338312,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=33650,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1074,
+ ["unit"]=0
+ }
+ },
+ [10747]={
+ ["next_chapter"]=10748,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=268204,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=88507,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=341695,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34511,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=341695,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=33650,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1074,
+ ["unit"]=0
+ }
+ },
+ [10748]={
+ ["next_chapter"]=10749,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=268802,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=88705,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=345112,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34856,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=345112,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=33650,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1074,
+ ["unit"]=0
+ }
+ },
+ [10749]={
+ ["next_chapter"]=10750,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=269400,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=88902,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=348563,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35205,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=348563,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=33650,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1074,
+ ["unit"]=0
+ }
+ },
+ [10750]={
+ ["next_chapter"]=10751,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=270000,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=89100,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=352049,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35557,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=352049,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=37170,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1075,
+ ["unit"]=0
+ }
+ },
+ [10751]={
+ ["next_chapter"]=10752,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=270600,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=89298,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=355569,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35912,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=355569,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=37170,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1075,
+ ["unit"]=0
+ }
+ },
+ [10752]={
+ ["next_chapter"]=10753,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=271202,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=89497,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=359125,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36272,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=359125,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=37170,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1075,
+ ["unit"]=0
+ }
+ },
+ [10753]={
+ ["next_chapter"]=10754,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=271804,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=89695,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=362716,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36634,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=362716,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=37170,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1075,
+ ["unit"]=0
+ }
+ },
+ [10754]={
+ ["next_chapter"]=10755,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=272408,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=89895,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=366343,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37001,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=366343,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=37170,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1075,
+ ["unit"]=0
+ }
+ },
+ [10755]={
+ ["next_chapter"]=10756,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=273012,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=90094,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=370007,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37371,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=370007,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=37170,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1075,
+ ["unit"]=0
+ }
+ },
+ [10756]={
+ ["next_chapter"]=10757,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=273617,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=90294,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=373707,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37744,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=373707,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=37170,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1075,
+ ["unit"]=0
+ }
+ },
+ [10757]={
+ ["next_chapter"]=10758,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=274224,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=90494,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=377444,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=38122,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=377444,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=37170,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1075,
+ ["unit"]=0
+ }
+ },
+ [10758]={
+ ["next_chapter"]=10759,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=274831,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=90694,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=381218,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=38503,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=381218,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=37170,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1075,
+ ["unit"]=0
+ }
+ },
+ [10759]={
+ ["next_chapter"]=10760,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=275439,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=90895,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=385030,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=38888,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=385030,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=37170,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1075,
+ ["unit"]=0
+ }
+ },
+ [10760]={
+ ["next_chapter"]=10761,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=276048,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=91096,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=388881,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39277,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=388881,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=41059,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1076,
+ ["unit"]=0
+ }
+ },
+ [10761]={
+ ["next_chapter"]=10762,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=276658,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=91297,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=392769,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39670,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=392769,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=41059,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1076,
+ ["unit"]=0
+ }
+ },
+ [10762]={
+ ["next_chapter"]=10763,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=277269,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=91499,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=396697,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=40066,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=396697,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=41059,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1076,
+ ["unit"]=0
+ }
+ },
+ [10763]={
+ ["next_chapter"]=10764,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=277881,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=91701,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=400664,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=40467,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=400664,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=41059,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1076,
+ ["unit"]=0
+ }
+ },
+ [10764]={
+ ["next_chapter"]=10765,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=278494,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=91903,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=404671,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=40872,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=404671,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=41059,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1076,
+ ["unit"]=0
+ }
+ },
+ [10765]={
+ ["next_chapter"]=10766,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=279108,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=92106,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=408717,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41280,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=408717,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=41059,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1076,
+ ["unit"]=0
+ }
+ },
+ [10766]={
+ ["next_chapter"]=10767,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=279723,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=92309,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=412805,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41693,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=412805,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=41059,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1076,
+ ["unit"]=0
+ }
+ },
+ [10767]={
+ ["next_chapter"]=10768,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=280339,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=92512,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=416933,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=42110,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=416933,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=41059,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1076,
+ ["unit"]=0
+ }
+ },
+ [10768]={
+ ["next_chapter"]=10769,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=280956,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=92716,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=421102,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=42531,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=421102,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=41059,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1076,
+ ["unit"]=0
+ }
+ },
+ [10769]={
+ ["next_chapter"]=10770,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=281574,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=92919,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=425313,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=42957,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=425313,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=41059,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1076,
+ ["unit"]=0
+ }
+ },
+ [10770]={
+ ["next_chapter"]=10771,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=282193,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=93124,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=429566,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=43386,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=429566,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=45354,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1077,
+ ["unit"]=0
+ }
+ },
+ [10771]={
+ ["next_chapter"]=10772,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=282813,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=93328,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=433862,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=43820,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=433862,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=45354,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1077,
+ ["unit"]=0
+ }
+ },
+ [10772]={
+ ["next_chapter"]=10773,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=283434,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=93533,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=438200,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=44258,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=438200,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=45354,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1077,
+ ["unit"]=0
+ }
+ },
+ [10773]={
+ ["next_chapter"]=10774,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=284055,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=93738,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=442582,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=44701,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=442582,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=45354,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1077,
+ ["unit"]=0
+ }
+ },
+ [10774]={
+ ["next_chapter"]=10775,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=284678,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=93944,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=447008,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=45148,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=447008,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=45354,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1077,
+ ["unit"]=0
+ }
+ },
+ [10775]={
+ ["next_chapter"]=10776,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=285302,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=94150,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=451478,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=45599,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=451478,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=45354,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1077,
+ ["unit"]=0
+ }
+ },
+ [10776]={
+ ["next_chapter"]=10777,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=285927,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=94356,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=455993,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=46055,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=455993,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=45354,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1077,
+ ["unit"]=0
+ }
+ },
+ [10777]={
+ ["next_chapter"]=10778,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=286552,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=94562,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=460553,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=46516,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=460553,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=45354,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1077,
+ ["unit"]=0
+ }
+ },
+ [10778]={
+ ["next_chapter"]=10779,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=287179,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=94769,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=465159,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=46981,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=465159,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=45354,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1077,
+ ["unit"]=0
+ }
+ },
+ [10779]={
+ ["next_chapter"]=10780,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=287807,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=94976,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=469810,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=47451,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=469810,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=45354,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1077,
+ ["unit"]=0
+ }
+ },
+ [10780]={
+ ["next_chapter"]=10781,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=288435,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=95184,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=474508,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=47925,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=474508,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=50100,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1078,
+ ["unit"]=0
+ }
+ },
+ [10781]={
+ ["next_chapter"]=10782,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=289065,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=95391,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=479253,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=48405,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=479253,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=50100,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1078,
+ ["unit"]=0
+ }
+ },
+ [10782]={
+ ["next_chapter"]=10783,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=289696,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=95600,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=484046,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=48889,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=484046,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=50100,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1078,
+ ["unit"]=0
+ }
+ },
+ [10783]={
+ ["next_chapter"]=10784,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=290327,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=95808,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=488886,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=49378,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=488886,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=50100,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1078,
+ ["unit"]=0
+ }
+ },
+ [10784]={
+ ["next_chapter"]=10785,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=290960,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=96017,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=493775,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=49871,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=493775,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=50100,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1078,
+ ["unit"]=0
+ }
+ },
+ [10785]={
+ ["next_chapter"]=10786,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=291593,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=96226,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=498713,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=50370,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=498713,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=50100,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1078,
+ ["unit"]=0
+ }
+ },
+ [10786]={
+ ["next_chapter"]=10787,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=292228,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=96435,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=503700,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=50874,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=503700,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=50100,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1078,
+ ["unit"]=0
+ }
+ },
+ [10787]={
+ ["next_chapter"]=10788,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=292864,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=96645,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=508737,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=51382,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=508737,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=50100,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1078,
+ ["unit"]=0
+ }
+ },
+ [10788]={
+ ["next_chapter"]=10789,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=293500,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=96855,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=513824,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=51896,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=513824,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=50100,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1078,
+ ["unit"]=0
+ }
+ },
+ [10789]={
+ ["next_chapter"]=10790,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=294138,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=97065,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=518963,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=52415,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=518963,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=50100,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1078,
+ ["unit"]=0
+ }
+ },
+ [10790]={
+ ["next_chapter"]=10791,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=294776,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=97276,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=524152,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=52939,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=524152,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=55341,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1079,
+ ["unit"]=0
+ }
+ },
+ [10791]={
+ ["next_chapter"]=10792,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=295416,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=97487,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=529394,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=53469,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=529394,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=55341,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1079,
+ ["unit"]=0
+ }
+ },
+ [10792]={
+ ["next_chapter"]=10793,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=296056,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=97699,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=534688,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=54003,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=534688,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=55341,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1079,
+ ["unit"]=0
+ }
+ },
+ [10793]={
+ ["next_chapter"]=10794,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=296698,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=97910,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=540035,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=54543,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=540035,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=55341,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1079,
+ ["unit"]=0
+ }
+ },
+ [10794]={
+ ["next_chapter"]=10795,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=297340,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=98122,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=545435,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=55089,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=545435,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=55341,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1079,
+ ["unit"]=0
+ }
+ },
+ [10795]={
+ ["next_chapter"]=10796,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=297984,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=98335,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=550889,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=55640,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=550889,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=55341,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1079,
+ ["unit"]=0
+ }
+ },
+ [10796]={
+ ["next_chapter"]=10797,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=298628,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=98547,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=556398,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=56196,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=556398,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=55341,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1079,
+ ["unit"]=0
+ }
+ },
+ [10797]={
+ ["next_chapter"]=10798,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=299274,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=98760,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=561962,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=56758,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=561962,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=55341,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1079,
+ ["unit"]=0
+ }
+ },
+ [10798]={
+ ["next_chapter"]=10799,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=299920,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=98974,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=567582,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=57326,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=567582,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=55341,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1079,
+ ["unit"]=0
+ }
+ },
+ [10799]={
+ ["next_chapter"]=10800,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=300568,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=99187,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=573258,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=57899,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=573258,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=55341,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1079,
+ ["unit"]=0
+ }
+ },
+ [10800]={
+ ["next_chapter"]=10801,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=301216,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=99401,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=578990,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=58478,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=578990,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=61131,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1080,
+ ["unit"]=0
+ }
+ },
+ [10801]={
+ ["next_chapter"]=10802,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=301865,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=99616,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=584780,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=59063,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=584780,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=61131,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1080,
+ ["unit"]=0
+ }
+ },
+ [10802]={
+ ["next_chapter"]=10803,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=302516,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=99830,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=590628,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=59653,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=590628,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=61131,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1080,
+ ["unit"]=0
+ }
+ },
+ [10803]={
+ ["next_chapter"]=10804,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=303167,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=100045,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=596534,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=60250,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=596534,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=61131,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1080,
+ ["unit"]=0
+ }
+ },
+ [10804]={
+ ["next_chapter"]=10805,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=303820,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=100261,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=602500,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=60852,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=602500,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=61131,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1080,
+ ["unit"]=0
+ }
+ },
+ [10805]={
+ ["next_chapter"]=10806,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=304473,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=100476,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=608525,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=61461,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=608525,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=61131,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1080,
+ ["unit"]=0
+ }
+ },
+ [10806]={
+ ["next_chapter"]=10807,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=305128,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=100692,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=614610,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=62076,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=614610,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=61131,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1080,
+ ["unit"]=0
+ }
+ },
+ [10807]={
+ ["next_chapter"]=10808,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=305783,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=100908,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=620756,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=62696,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=620756,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=61131,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1080,
+ ["unit"]=0
+ }
+ },
+ [10808]={
+ ["next_chapter"]=10809,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=306440,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=101125,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=626963,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=63323,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=626963,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=61131,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1080,
+ ["unit"]=0
+ }
+ },
+ [10809]={
+ ["next_chapter"]=10810,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=307097,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=101342,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=633233,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=63957,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=633233,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=61131,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1080,
+ ["unit"]=0
+ }
+ },
+ [10810]={
+ ["next_chapter"]=10811,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=307756,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=101559,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=639565,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=64596,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=639565,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=67527,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1081,
+ ["unit"]=0
+ }
+ },
+ [10811]={
+ ["next_chapter"]=10812,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=308415,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=101777,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=645961,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=65242,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=645961,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=67527,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1081,
+ ["unit"]=0
+ }
+ },
+ [10812]={
+ ["next_chapter"]=10813,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=309076,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=101995,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=652421,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=65894,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=652421,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=67527,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1081,
+ ["unit"]=0
+ }
+ },
+ [10813]={
+ ["next_chapter"]=10814,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=309737,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=102213,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=658945,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=66553,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=658945,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=67527,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1081,
+ ["unit"]=0
+ }
+ },
+ [10814]={
+ ["next_chapter"]=10815,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=310400,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=102432,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=665534,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=67219,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=665534,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=67527,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1081,
+ ["unit"]=0
+ }
+ },
+ [10815]={
+ ["next_chapter"]=10816,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=311063,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=102651,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=672190,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=67891,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=672190,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=67527,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1081,
+ ["unit"]=0
+ }
+ },
+ [10816]={
+ ["next_chapter"]=10817,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=311728,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=102870,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=678912,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=68570,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=678912,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=67527,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1081,
+ ["unit"]=0
+ }
+ },
+ [10817]={
+ ["next_chapter"]=10818,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=312393,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=103090,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=685701,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=69256,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=685701,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=67527,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1081,
+ ["unit"]=0
+ }
+ },
+ [10818]={
+ ["next_chapter"]=10819,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=313060,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=103310,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=692558,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=69948,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=692558,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=67527,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1081,
+ ["unit"]=0
+ }
+ },
+ [10819]={
+ ["next_chapter"]=10820,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=313727,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=103530,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=699483,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=70648,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=699483,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=67527,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1081,
+ ["unit"]=0
+ }
+ },
+ [10820]={
+ ["next_chapter"]=10821,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=314396,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=103751,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=706478,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=71354,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=706478,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=74591,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1082,
+ ["unit"]=0
+ }
+ },
+ [10821]={
+ ["next_chapter"]=10822,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=315065,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=103972,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=713543,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=72068,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=713543,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=74591,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1082,
+ ["unit"]=0
+ }
+ },
+ [10822]={
+ ["next_chapter"]=10823,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=315736,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=104193,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=720678,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=72789,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=720678,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=74591,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1082,
+ ["unit"]=0
+ }
+ },
+ [10823]={
+ ["next_chapter"]=10824,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=316408,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=104415,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=727885,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=73516,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=727885,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=74591,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1082,
+ ["unit"]=0
+ }
+ },
+ [10824]={
+ ["next_chapter"]=10825,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=317080,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=104637,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=735164,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=74252,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=735164,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=74591,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1082,
+ ["unit"]=0
+ }
+ },
+ [10825]={
+ ["next_chapter"]=10826,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=317754,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=104859,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=742516,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=74994,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=742516,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=74591,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1082,
+ ["unit"]=0
+ }
+ },
+ [10826]={
+ ["next_chapter"]=10827,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=318429,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=105081,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=749941,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=75744,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=749941,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=74591,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1082,
+ ["unit"]=0
+ }
+ },
+ [10827]={
+ ["next_chapter"]=10828,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=319104,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=105304,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=757440,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=76501,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=757440,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=74591,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1082,
+ ["unit"]=0
+ }
+ },
+ [10828]={
+ ["next_chapter"]=10829,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=319781,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=105528,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=765015,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=77266,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=765015,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=74591,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1082,
+ ["unit"]=0
+ }
+ },
+ [10829]={
+ ["next_chapter"]=10830,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=320459,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=105751,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=772665,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=78039,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=772665,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=74591,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1082,
+ ["unit"]=0
+ }
+ },
+ [10830]={
+ ["next_chapter"]=10831,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=321138,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=105975,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=780391,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=78820,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=780391,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=82395,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1083,
+ ["unit"]=0
+ }
+ },
+ [10831]={
+ ["next_chapter"]=10832,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=321817,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=106200,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=788195,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=79608,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=788195,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=82395,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1083,
+ ["unit"]=0
+ }
+ },
+ [10832]={
+ ["next_chapter"]=10833,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=322498,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=106424,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=796077,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=80404,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=796077,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=82395,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1083,
+ ["unit"]=0
+ }
+ },
+ [10833]={
+ ["next_chapter"]=10834,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=323180,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=106649,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=804038,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=81208,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=804038,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=82395,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1083,
+ ["unit"]=0
+ }
+ },
+ [10834]={
+ ["next_chapter"]=10835,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=323863,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=106875,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=812078,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=82020,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=812078,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=82395,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1083,
+ ["unit"]=0
+ }
+ },
+ [10835]={
+ ["next_chapter"]=10836,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=324547,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=107100,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=820199,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=82840,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=820199,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=82395,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1083,
+ ["unit"]=0
+ }
+ },
+ [10836]={
+ ["next_chapter"]=10837,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=325231,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=107326,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=828401,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=83669,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=828401,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=82395,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1083,
+ ["unit"]=0
+ }
+ },
+ [10837]={
+ ["next_chapter"]=10838,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=325917,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=107553,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=836685,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=84505,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=836685,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=82395,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1083,
+ ["unit"]=0
+ }
+ },
+ [10838]={
+ ["next_chapter"]=10839,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=326604,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=107779,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=845052,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=85350,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=845052,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=82395,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1083,
+ ["unit"]=0
+ }
+ },
+ [10839]={
+ ["next_chapter"]=10840,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=327292,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=108006,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=853503,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=86204,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=853503,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=82395,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1083,
+ ["unit"]=0
+ }
+ },
+ [10840]={
+ ["next_chapter"]=10841,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=327981,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=108234,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=862038,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=87066,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=862038,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=91016,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1084,
+ ["unit"]=0
+ }
+ },
+ [10841]={
+ ["next_chapter"]=10842,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=328671,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=108462,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=870658,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=87936,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=870658,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=91016,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1084,
+ ["unit"]=0
+ }
+ },
+ [10842]={
+ ["next_chapter"]=10843,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=329362,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=108690,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=879365,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=88816,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=879365,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=91016,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1084,
+ ["unit"]=0
+ }
+ },
+ [10843]={
+ ["next_chapter"]=10844,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=330054,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=108918,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=888158,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=89704,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=888158,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=91016,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1084,
+ ["unit"]=0
+ }
+ },
+ [10844]={
+ ["next_chapter"]=10845,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=330748,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=109147,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=897040,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=90601,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=897040,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=91016,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1084,
+ ["unit"]=0
+ }
+ },
+ [10845]={
+ ["next_chapter"]=10846,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=331442,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=109376,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=906010,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=91507,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=906010,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=91016,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1084,
+ ["unit"]=0
+ }
+ },
+ [10846]={
+ ["next_chapter"]=10847,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=332137,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=109605,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=915070,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=92422,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=915070,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=91016,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1084,
+ ["unit"]=0
+ }
+ },
+ [10847]={
+ ["next_chapter"]=10848,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=332833,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=109835,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=924221,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=93346,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=924221,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=91016,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1084,
+ ["unit"]=0
+ }
+ },
+ [10848]={
+ ["next_chapter"]=10849,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=333530,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=110065,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=933463,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=94280,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=933463,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=91016,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1084,
+ ["unit"]=0
+ }
+ },
+ [10849]={
+ ["next_chapter"]=10850,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=334229,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=110295,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=942798,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=95223,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=942798,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=91016,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1084,
+ ["unit"]=0
+ }
+ },
+ [10850]={
+ ["next_chapter"]=10851,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=334928,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=110526,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=952226,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=96175,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=952226,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=100538,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1085,
+ ["unit"]=0
+ }
+ },
+ [10851]={
+ ["next_chapter"]=10852,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=335628,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=110757,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=961748,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=97137,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=961748,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=100538,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1085,
+ ["unit"]=0
+ }
+ },
+ [10852]={
+ ["next_chapter"]=10853,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=336330,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=110989,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=971366,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=98108,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=971366,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=100538,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1085,
+ ["unit"]=0
+ }
+ },
+ [10853]={
+ ["next_chapter"]=10854,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=337032,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=111221,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=981079,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=99089,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=981079,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=100538,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1085,
+ ["unit"]=0
+ }
+ },
+ [10854]={
+ ["next_chapter"]=10855,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=337736,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=111453,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=990890,
+ ["unit"]=14
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=100080,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=990890,
+ ["unit"]=14
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=100538,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1085,
+ ["unit"]=0
+ }
+ },
+ [10855]={
+ ["next_chapter"]=10856,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=338440,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=111685,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1001,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=101081,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1001,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=100538,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1085,
+ ["unit"]=0
+ }
+ },
+ [10856]={
+ ["next_chapter"]=10857,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=339146,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=111918,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1011,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=102091,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1011,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=100538,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1085,
+ ["unit"]=0
+ }
+ },
+ [10857]={
+ ["next_chapter"]=10858,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=339852,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=112151,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1021,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=103112,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1021,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=100538,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1085,
+ ["unit"]=0
+ }
+ },
+ [10858]={
+ ["next_chapter"]=10859,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=340560,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=112385,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1031,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=104144,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1031,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=100538,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1085,
+ ["unit"]=0
+ }
+ },
+ [10859]={
+ ["next_chapter"]=10860,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=341269,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=112619,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1041,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=105185,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1041,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=100538,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1085,
+ ["unit"]=0
+ }
+ },
+ [10860]={
+ ["next_chapter"]=10861,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=341978,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=112853,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1052,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=106237,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1052,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=111056,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1086,
+ ["unit"]=0
+ }
+ },
+ [10861]={
+ ["next_chapter"]=10862,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=342689,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=113087,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1062,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=107299,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1062,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=111056,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1086,
+ ["unit"]=0
+ }
+ },
+ [10862]={
+ ["next_chapter"]=10863,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=343401,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=113322,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1073,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=108372,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1073,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=111056,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1086,
+ ["unit"]=0
+ }
+ },
+ [10863]={
+ ["next_chapter"]=10864,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=344114,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=113558,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1084,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=109456,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1084,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=111056,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1086,
+ ["unit"]=0
+ }
+ },
+ [10864]={
+ ["next_chapter"]=10865,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=344828,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=113793,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1095,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=110550,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1095,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=111056,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1086,
+ ["unit"]=0
+ }
+ },
+ [10865]={
+ ["next_chapter"]=10866,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=345543,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=114029,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1106,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=111656,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1106,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=111056,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1086,
+ ["unit"]=0
+ }
+ },
+ [10866]={
+ ["next_chapter"]=10867,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=346259,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=114265,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1117,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=112773,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1117,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=111056,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1086,
+ ["unit"]=0
+ }
+ },
+ [10867]={
+ ["next_chapter"]=10868,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=346976,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=114502,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1128,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=113900,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1128,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=111056,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1086,
+ ["unit"]=0
+ }
+ },
+ [10868]={
+ ["next_chapter"]=10869,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=347694,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=114739,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1139,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=115039,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1139,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=111056,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1086,
+ ["unit"]=0
+ }
+ },
+ [10869]={
+ ["next_chapter"]=10870,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=348413,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=114976,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1150,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=116190,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1150,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=111056,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1086,
+ ["unit"]=0
+ }
+ },
+ [10870]={
+ ["next_chapter"]=10871,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=349133,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=115214,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1162,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=117352,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1162,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=122675,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1087,
+ ["unit"]=0
+ }
+ },
+ [10871]={
+ ["next_chapter"]=10872,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=349854,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=115452,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1174,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=118525,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1174,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=122675,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1087,
+ ["unit"]=0
+ }
+ },
+ [10872]={
+ ["next_chapter"]=10873,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=350577,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=115690,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1185,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=119710,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1185,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=122675,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1087,
+ ["unit"]=0
+ }
+ },
+ [10873]={
+ ["next_chapter"]=10874,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=351300,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=115929,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1197,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=120907,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1197,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=122675,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1087,
+ ["unit"]=0
+ }
+ },
+ [10874]={
+ ["next_chapter"]=10875,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=352025,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=116168,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1209,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=122116,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1209,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=122675,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1087,
+ ["unit"]=0
+ }
+ },
+ [10875]={
+ ["next_chapter"]=10876,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=352750,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=116408,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1221,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=123338,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1221,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=122675,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1087,
+ ["unit"]=0
+ }
+ },
+ [10876]={
+ ["next_chapter"]=10877,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=353477,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=116647,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1233,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=124571,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1233,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=122675,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1087,
+ ["unit"]=0
+ }
+ },
+ [10877]={
+ ["next_chapter"]=10878,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=354204,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=116887,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1246,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=125817,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1246,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=122675,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1087,
+ ["unit"]=0
+ }
+ },
+ [10878]={
+ ["next_chapter"]=10879,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=354933,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=117128,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1258,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=127075,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1258,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=122675,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1087,
+ ["unit"]=0
+ }
+ },
+ [10879]={
+ ["next_chapter"]=10880,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=355662,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=117369,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1271,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=128346,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1271,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=122675,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1087,
+ ["unit"]=0
+ }
+ },
+ [10880]={
+ ["next_chapter"]=10881,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=356393,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=117610,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1283,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=129629,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1283,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=135510,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1088,
+ ["unit"]=0
+ }
+ },
+ [10881]={
+ ["next_chapter"]=10882,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=357125,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=117851,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1296,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=130925,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1296,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=135510,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1088,
+ ["unit"]=0
+ }
+ },
+ [10882]={
+ ["next_chapter"]=10883,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=357858,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=118093,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1309,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=132235,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1309,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=135510,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1088,
+ ["unit"]=0
+ }
+ },
+ [10883]={
+ ["next_chapter"]=10884,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=358592,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=118335,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1322,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=133557,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1322,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=135510,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1088,
+ ["unit"]=0
+ }
+ },
+ [10884]={
+ ["next_chapter"]=10885,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=359327,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=118578,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1336,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=134893,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1336,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=135510,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1088,
+ ["unit"]=0
+ }
+ },
+ [10885]={
+ ["next_chapter"]=10886,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=360063,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=118821,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1349,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=136241,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1349,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=135510,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1088,
+ ["unit"]=0
+ }
+ },
+ [10886]={
+ ["next_chapter"]=10887,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=360800,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=119064,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1362,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=137604,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1362,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=135510,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1088,
+ ["unit"]=0
+ }
+ },
+ [10887]={
+ ["next_chapter"]=10888,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=361538,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=119308,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1376,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=138980,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1376,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=135510,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1088,
+ ["unit"]=0
+ }
+ },
+ [10888]={
+ ["next_chapter"]=10889,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=362278,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=119552,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1390,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=140370,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1390,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=135510,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1088,
+ ["unit"]=0
+ }
+ },
+ [10889]={
+ ["next_chapter"]=10890,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=363018,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=119796,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1404,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=141773,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1404,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=135510,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1088,
+ ["unit"]=0
+ }
+ },
+ [10890]={
+ ["next_chapter"]=10891,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=363759,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=120041,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1418,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=143191,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1418,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=149687,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1089,
+ ["unit"]=0
+ }
+ },
+ [10891]={
+ ["next_chapter"]=10892,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=364502,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=120286,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1432,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=144623,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1432,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=149687,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1089,
+ ["unit"]=0
+ }
+ },
+ [10892]={
+ ["next_chapter"]=10893,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=365245,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=120531,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1446,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=146069,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1446,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=149687,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1089,
+ ["unit"]=0
+ }
+ },
+ [10893]={
+ ["next_chapter"]=10894,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=365990,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=120777,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1461,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=147530,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1461,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=149687,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1089,
+ ["unit"]=0
+ }
+ },
+ [10894]={
+ ["next_chapter"]=10895,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=366735,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=121023,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1475,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=149005,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1475,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=149687,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1089,
+ ["unit"]=0
+ }
+ },
+ [10895]={
+ ["next_chapter"]=10896,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=367482,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=121269,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1490,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=150495,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1490,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=149687,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1089,
+ ["unit"]=0
+ }
+ },
+ [10896]={
+ ["next_chapter"]=10897,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=368230,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=121516,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1505,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=152000,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1505,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=149687,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1089,
+ ["unit"]=0
+ }
+ },
+ [10897]={
+ ["next_chapter"]=10898,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=368979,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=121763,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1520,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=153520,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1520,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=149687,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1089,
+ ["unit"]=0
+ }
+ },
+ [10898]={
+ ["next_chapter"]=10899,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=369729,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=122011,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1535,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=155056,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1535,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=149687,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1089,
+ ["unit"]=0
+ }
+ },
+ [10899]={
+ ["next_chapter"]=10900,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=370480,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=122258,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1551,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=156606,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1551,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=149687,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1089,
+ ["unit"]=0
+ }
+ },
+ [10900]={
+ ["next_chapter"]=10901,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=371232,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=122507,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1566,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=158172,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1566,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=165348,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1090,
+ ["unit"]=0
+ }
+ },
+ [10901]={
+ ["next_chapter"]=10902,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=371985,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=122755,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1582,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=159754,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1582,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=165348,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1090,
+ ["unit"]=0
+ }
+ },
+ [10902]={
+ ["next_chapter"]=10903,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=372739,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=123004,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1598,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=161351,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1598,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=165348,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1090,
+ ["unit"]=0
+ }
+ },
+ [10903]={
+ ["next_chapter"]=10904,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=373495,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=123253,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1614,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=162965,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1614,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=165348,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1090,
+ ["unit"]=0
+ }
+ },
+ [10904]={
+ ["next_chapter"]=10905,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=374251,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=123503,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1630,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=164595,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1630,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=165348,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1090,
+ ["unit"]=0
+ }
+ },
+ [10905]={
+ ["next_chapter"]=10906,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=375009,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=123753,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1646,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=166241,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1646,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=165348,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1090,
+ ["unit"]=0
+ }
+ },
+ [10906]={
+ ["next_chapter"]=10907,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=375767,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=124003,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1662,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=167903,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1662,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=165348,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1090,
+ ["unit"]=0
+ }
+ },
+ [10907]={
+ ["next_chapter"]=10908,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=376527,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=124254,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1679,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=169582,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1679,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=165348,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1090,
+ ["unit"]=0
+ }
+ },
+ [10908]={
+ ["next_chapter"]=10909,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=377288,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=124505,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1696,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=171278,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1696,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=165348,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1090,
+ ["unit"]=0
+ }
+ },
+ [10909]={
+ ["next_chapter"]=10910,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=378049,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=124756,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1713,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=172991,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1713,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=165348,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1090,
+ ["unit"]=0
+ }
+ },
+ [10910]={
+ ["next_chapter"]=10911,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=378812,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=125008,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1730,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=174720,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1730,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=182647,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1091,
+ ["unit"]=0
+ }
+ },
+ [10911]={
+ ["next_chapter"]=10912,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=379576,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=125260,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1747,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=176468,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1747,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=182647,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1091,
+ ["unit"]=0
+ }
+ },
+ [10912]={
+ ["next_chapter"]=10913,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=380341,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=125513,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1765,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=178232,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1765,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=182647,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1091,
+ ["unit"]=0
+ }
+ },
+ [10913]={
+ ["next_chapter"]=10914,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=381107,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=125765,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1782,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=180015,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1782,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=182647,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1091,
+ ["unit"]=0
+ }
+ },
+ [10914]={
+ ["next_chapter"]=10915,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=381875,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=126019,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1800,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=181815,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1800,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=182647,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1091,
+ ["unit"]=0
+ }
+ },
+ [10915]={
+ ["next_chapter"]=10916,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=382643,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=126272,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1818,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=183633,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1818,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=182647,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1091,
+ ["unit"]=0
+ }
+ },
+ [10916]={
+ ["next_chapter"]=10917,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=383412,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=126526,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1836,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=185469,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1836,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=182647,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1091,
+ ["unit"]=0
+ }
+ },
+ [10917]={
+ ["next_chapter"]=10918,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=384183,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=126780,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1855,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=187324,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1855,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=182647,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1091,
+ ["unit"]=0
+ }
+ },
+ [10918]={
+ ["next_chapter"]=10919,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=384954,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=127035,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1873,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=189197,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1873,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=182647,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1091,
+ ["unit"]=0
+ }
+ },
+ [10919]={
+ ["next_chapter"]=10920,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=385727,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=127290,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1892,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=191089,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1892,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=182647,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1091,
+ ["unit"]=0
+ }
+ },
+ [10920]={
+ ["next_chapter"]=10921,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=386501,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=127545,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1911,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=193000,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1911,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=201756,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1092,
+ ["unit"]=0
+ }
+ },
+ [10921]={
+ ["next_chapter"]=10922,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=387276,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=127801,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1930,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=194930,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1930,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=201756,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1092,
+ ["unit"]=0
+ }
+ },
+ [10922]={
+ ["next_chapter"]=10923,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=388052,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=128057,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1949,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=196879,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1949,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=201756,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1092,
+ ["unit"]=0
+ }
+ },
+ [10923]={
+ ["next_chapter"]=10924,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=388829,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=128313,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1969,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=198848,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1969,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=201756,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1092,
+ ["unit"]=0
+ }
+ },
+ [10924]={
+ ["next_chapter"]=10925,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=389607,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=128570,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1988,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=200837,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=1988,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=201756,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1092,
+ ["unit"]=0
+ }
+ },
+ [10925]={
+ ["next_chapter"]=10926,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=390386,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=128827,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2008,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=202845,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=2008,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=201756,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1092,
+ ["unit"]=0
+ }
+ },
+ [10926]={
+ ["next_chapter"]=10927,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=391166,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=129085,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2028,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=204873,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=2028,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=201756,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1092,
+ ["unit"]=0
+ }
+ },
+ [10927]={
+ ["next_chapter"]=10928,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=391948,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=129343,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2049,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=206922,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=2049,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=201756,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1092,
+ ["unit"]=0
+ }
+ },
+ [10928]={
+ ["next_chapter"]=10929,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=392730,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=129601,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2069,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=208991,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=2069,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=201756,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1092,
+ ["unit"]=0
+ }
+ },
+ [10929]={
+ ["next_chapter"]=10930,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=393514,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=129860,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2090,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=211081,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=2090,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=201756,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1092,
+ ["unit"]=0
+ }
+ },
+ [10930]={
+ ["next_chapter"]=10931,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=394298,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=130119,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2111,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=213192,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=2111,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=222864,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1093,
+ ["unit"]=0
+ }
+ },
+ [10931]={
+ ["next_chapter"]=10932,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=395084,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=130378,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2132,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=215324,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=2132,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=222864,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1093,
+ ["unit"]=0
+ }
+ },
+ [10932]={
+ ["next_chapter"]=10933,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=395871,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=130637,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2153,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=217477,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=2153,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=222864,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1093,
+ ["unit"]=0
+ }
+ },
+ [10933]={
+ ["next_chapter"]=10934,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=396659,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=130898,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2175,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=219652,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=2175,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=222864,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1093,
+ ["unit"]=0
+ }
+ },
+ [10934]={
+ ["next_chapter"]=10935,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=397448,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=131158,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2197,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=221849,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=2197,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=222864,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1093,
+ ["unit"]=0
+ }
+ },
+ [10935]={
+ ["next_chapter"]=10936,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=398238,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=131419,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2218,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=224067,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=2218,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=222864,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1093,
+ ["unit"]=0
+ }
+ },
+ [10936]={
+ ["next_chapter"]=10937,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=399030,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=131680,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2241,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=226308,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=2241,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=222864,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1093,
+ ["unit"]=0
+ }
+ },
+ [10937]={
+ ["next_chapter"]=10938,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=399822,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=131941,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2263,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=228571,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=2263,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=222864,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1093,
+ ["unit"]=0
+ }
+ },
+ [10938]={
+ ["next_chapter"]=10939,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=400616,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=132203,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2286,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=230857,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=2286,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=222864,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1093,
+ ["unit"]=0
+ }
+ },
+ [10939]={
+ ["next_chapter"]=10940,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=401410,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=132465,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2309,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=233165,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=2309,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=222864,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1093,
+ ["unit"]=0
+ }
+ },
+ [10940]={
+ ["next_chapter"]=10941,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=402206,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=132728,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2332,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=235497,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=2332,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=246181,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1094,
+ ["unit"]=0
+ }
+ },
+ [10941]={
+ ["next_chapter"]=10942,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=403003,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=132991,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2355,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=237852,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=2355,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=246181,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1094,
+ ["unit"]=0
+ }
+ },
+ [10942]={
+ ["next_chapter"]=10943,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=403801,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=133254,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2379,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=240230,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=2379,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=246181,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1094,
+ ["unit"]=0
+ }
+ },
+ [10943]={
+ ["next_chapter"]=10944,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=404600,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=133518,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2402,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=242633,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=2402,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=246181,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1094,
+ ["unit"]=0
+ }
+ },
+ [10944]={
+ ["next_chapter"]=10945,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=405400,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=133782,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2426,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=245059,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=2426,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=246181,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1094,
+ ["unit"]=0
+ }
+ },
+ [10945]={
+ ["next_chapter"]=10946,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=406201,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=134046,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2451,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=247509,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=2451,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=246181,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1094,
+ ["unit"]=0
+ }
+ },
+ [10946]={
+ ["next_chapter"]=10947,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=407003,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=134311,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2475,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=249985,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=2475,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=246181,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1094,
+ ["unit"]=0
+ }
+ },
+ [10947]={
+ ["next_chapter"]=10948,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=407807,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=134576,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2500,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=252484,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=2500,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=246181,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1094,
+ ["unit"]=0
+ }
+ },
+ [10948]={
+ ["next_chapter"]=10949,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=408612,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=134842,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2525,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=255009,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=2525,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=246181,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1094,
+ ["unit"]=0
+ }
+ },
+ [10949]={
+ ["next_chapter"]=10950,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=409417,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=135108,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2550,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=257559,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=2550,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=246181,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1094,
+ ["unit"]=0
+ }
+ },
+ [10950]={
+ ["next_chapter"]=10951,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=410224,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=135374,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2576,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=260135,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=2576,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=271937,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1095,
+ ["unit"]=0
+ }
+ },
+ [10951]={
+ ["next_chapter"]=10952,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=411032,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=135641,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2601,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=262736,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=2601,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=271937,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1095,
+ ["unit"]=0
+ }
+ },
+ [10952]={
+ ["next_chapter"]=10953,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=411841,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=135908,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2627,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=265364,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=2627,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=271937,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1095,
+ ["unit"]=0
+ }
+ },
+ [10953]={
+ ["next_chapter"]=10954,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=412651,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=136175,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2654,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=268017,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=2654,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=271937,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1095,
+ ["unit"]=0
+ }
+ },
+ [10954]={
+ ["next_chapter"]=10955,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=413462,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=136443,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2680,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=270697,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=2680,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=271937,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1095,
+ ["unit"]=0
+ }
+ },
+ [10955]={
+ ["next_chapter"]=10956,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=414275,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=136711,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2707,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=273404,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=2707,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=271937,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1095,
+ ["unit"]=0
+ }
+ },
+ [10956]={
+ ["next_chapter"]=10957,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=415088,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=136979,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2734,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=276138,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=2734,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=271937,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1095,
+ ["unit"]=0
+ }
+ },
+ [10957]={
+ ["next_chapter"]=10958,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=415903,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=137248,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2761,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=278900,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=2761,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=271937,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1095,
+ ["unit"]=0
+ }
+ },
+ [10958]={
+ ["next_chapter"]=10959,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=416719,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=137517,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2789,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=281689,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=2789,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=271937,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1095,
+ ["unit"]=0
+ }
+ },
+ [10959]={
+ ["next_chapter"]=10960,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=417535,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=137787,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2817,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=284506,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=2817,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=271937,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1095,
+ ["unit"]=0
+ }
+ },
+ [10960]={
+ ["next_chapter"]=10961,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=418353,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=138057,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2845,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=287351,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=2845,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=300387,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1096,
+ ["unit"]=0
+ }
+ },
+ [10961]={
+ ["next_chapter"]=10962,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=419173,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=138327,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2874,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=290224,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=2874,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=300387,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1096,
+ ["unit"]=0
+ }
+ },
+ [10962]={
+ ["next_chapter"]=10963,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=419993,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=138598,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2902,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=293127,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=2902,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=300387,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1096,
+ ["unit"]=0
+ }
+ },
+ [10963]={
+ ["next_chapter"]=10964,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=420814,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=138869,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2931,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=296058,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=2931,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=300387,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1096,
+ ["unit"]=0
+ }
+ },
+ [10964]={
+ ["next_chapter"]=10965,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=421637,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=139140,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2961,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=299018,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=2961,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=300387,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1096,
+ ["unit"]=0
+ }
+ },
+ [10965]={
+ ["next_chapter"]=10966,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=422460,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=139412,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2990,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=302009,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=2990,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=300387,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1096,
+ ["unit"]=0
+ }
+ },
+ [10966]={
+ ["next_chapter"]=10967,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=423285,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=139684,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3020,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=305029,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=3020,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=300387,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1096,
+ ["unit"]=0
+ }
+ },
+ [10967]={
+ ["next_chapter"]=10968,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=424111,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=139957,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3050,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=308079,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=3050,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=300387,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1096,
+ ["unit"]=0
+ }
+ },
+ [10968]={
+ ["next_chapter"]=10969,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=424938,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=140229,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3081,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=311160,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=3081,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=300387,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1096,
+ ["unit"]=0
+ }
+ },
+ [10969]={
+ ["next_chapter"]=10970,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=425766,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=140503,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3112,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=314271,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=3112,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=300387,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1096,
+ ["unit"]=0
+ }
+ },
+ [10970]={
+ ["next_chapter"]=10971,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=426595,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=140776,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3143,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=317414,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=3143,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=331814,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1097,
+ ["unit"]=0
+ }
+ },
+ [10971]={
+ ["next_chapter"]=10972,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=427425,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=141050,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3174,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=320588,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=3174,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=331814,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1097,
+ ["unit"]=0
+ }
+ },
+ [10972]={
+ ["next_chapter"]=10973,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=428257,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=141325,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3206,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=323794,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=3206,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=331814,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1097,
+ ["unit"]=0
+ }
+ },
+ [10973]={
+ ["next_chapter"]=10974,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=429089,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=141599,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3238,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=327032,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=3238,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=331814,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1097,
+ ["unit"]=0
+ }
+ },
+ [10974]={
+ ["next_chapter"]=10975,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=429923,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=141875,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3270,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=330302,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=3270,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=331814,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1097,
+ ["unit"]=0
+ }
+ },
+ [10975]={
+ ["next_chapter"]=10976,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=430758,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=142150,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3303,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=333605,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=3303,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=331814,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1097,
+ ["unit"]=0
+ }
+ },
+ [10976]={
+ ["next_chapter"]=10977,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=431594,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=142426,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3336,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=336941,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=3336,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=331814,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1097,
+ ["unit"]=0
+ }
+ },
+ [10977]={
+ ["next_chapter"]=10978,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=432431,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=142702,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3369,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=340311,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=3369,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=331814,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1097,
+ ["unit"]=0
+ }
+ },
+ [10978]={
+ ["next_chapter"]=10979,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=433269,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=142979,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3403,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=343714,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=3403,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=331814,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1097,
+ ["unit"]=0
+ }
+ },
+ [10979]={
+ ["next_chapter"]=10980,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=434109,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=143256,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3437,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=347151,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=3437,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=331814,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1097,
+ ["unit"]=0
+ }
+ },
+ [10980]={
+ ["next_chapter"]=10981,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=434949,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=143533,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3472,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=350623,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=3472,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=366529,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1098,
+ ["unit"]=0
+ }
+ },
+ [10981]={
+ ["next_chapter"]=10982,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=435791,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=143811,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3506,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=354129,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=3506,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=366529,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1098,
+ ["unit"]=0
+ }
+ },
+ [10982]={
+ ["next_chapter"]=10983,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=436634,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=144089,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3541,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=357670,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=3541,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=366529,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1098,
+ ["unit"]=0
+ }
+ },
+ [10983]={
+ ["next_chapter"]=10984,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=437478,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=144368,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3577,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=361247,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=3577,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=366529,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1098,
+ ["unit"]=0
+ }
+ },
+ [10984]={
+ ["next_chapter"]=10985,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=438323,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=144647,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3612,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=364859,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=3612,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=366529,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1098,
+ ["unit"]=0
+ }
+ },
+ [10985]={
+ ["next_chapter"]=10986,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=439169,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=144926,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3649,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=368508,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=3649,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=366529,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1098,
+ ["unit"]=0
+ }
+ },
+ [10986]={
+ ["next_chapter"]=10987,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=440017,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=145205,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3685,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=372193,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=3685,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=366529,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1098,
+ ["unit"]=0
+ }
+ },
+ [10987]={
+ ["next_chapter"]=10988,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=440865,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=145485,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3722,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=375915,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=3722,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=366529,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1098,
+ ["unit"]=0
+ }
+ },
+ [10988]={
+ ["next_chapter"]=10989,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=441715,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=145766,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3759,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=379674,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=3759,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=366529,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1098,
+ ["unit"]=0
+ }
+ },
+ [10989]={
+ ["next_chapter"]=10990,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=442566,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=146047,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3797,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=383471,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=3797,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=366529,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1098,
+ ["unit"]=0
+ }
+ },
+ [10990]={
+ ["next_chapter"]=10991,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=443417,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=146328,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3835,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=387305,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=3835,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=404876,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1099,
+ ["unit"]=0
+ }
+ },
+ [10991]={
+ ["next_chapter"]=10992,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=444271,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=146609,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3873,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=391179,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=3873,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=404876,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1099,
+ ["unit"]=0
+ }
+ },
+ [10992]={
+ ["next_chapter"]=10993,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=445125,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=146891,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3912,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=395090,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=3912,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=404876,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1099,
+ ["unit"]=0
+ }
+ },
+ [10993]={
+ ["next_chapter"]=10994,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=445980,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=147173,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3951,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=399041,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=3951,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=404876,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1099,
+ ["unit"]=0
+ }
+ },
+ [10994]={
+ ["next_chapter"]=10995,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=446837,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=147456,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3990,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=403032,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=3990,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=404876,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1099,
+ ["unit"]=0
+ }
+ },
+ [10995]={
+ ["next_chapter"]=10996,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=447694,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=147739,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4030,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=407062,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=4030,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=404876,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1099,
+ ["unit"]=0
+ }
+ },
+ [10996]={
+ ["next_chapter"]=10997,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=448553,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=148023,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4071,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=411133,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=4071,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=404876,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1099,
+ ["unit"]=0
+ }
+ },
+ [10997]={
+ ["next_chapter"]=10998,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=449413,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=148306,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4111,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=415244,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=4111,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=404876,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1099,
+ ["unit"]=0
+ }
+ },
+ [10998]={
+ ["next_chapter"]=10999,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=450274,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=148591,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4152,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=419396,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=4152,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=404876,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1099,
+ ["unit"]=0
+ }
+ },
+ [10999]={
+ ["next_chapter"]=11000,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=451137,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=148875,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4194,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=423590,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=4194,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=404876,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1099,
+ ["unit"]=0
+ }
+ },
+ [11000]={
+ ["next_chapter"]=11001,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=452000,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=149160,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4236,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=427826,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=4236,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=447235,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1100,
+ ["unit"]=0
+ }
+ },
+ [11001]={
+ ["next_chapter"]=11002,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=452865,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=149445,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4278,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=432104,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=4278,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=447235,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1100,
+ ["unit"]=0
+ }
+ },
+ [11002]={
+ ["next_chapter"]=11003,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=453730,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=149731,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4321,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=436425,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=4321,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=447235,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1100,
+ ["unit"]=0
+ }
+ },
+ [11003]={
+ ["next_chapter"]=11004,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=454597,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=150017,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4364,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=440790,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=4364,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=447235,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1100,
+ ["unit"]=0
+ }
+ },
+ [11004]={
+ ["next_chapter"]=11005,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=455465,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=150304,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4408,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=445198,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=4408,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=447235,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1100,
+ ["unit"]=0
+ }
+ },
+ [11005]={
+ ["next_chapter"]=11006,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=456334,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=150590,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4452,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=449650,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=4452,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=447235,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1100,
+ ["unit"]=0
+ }
+ },
+ [11006]={
+ ["next_chapter"]=11007,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=457205,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=150878,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4496,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=454146,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=4496,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=447235,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1100,
+ ["unit"]=0
+ }
+ },
+ [11007]={
+ ["next_chapter"]=11008,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=458076,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=151165,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4541,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=458688,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=4541,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=447235,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1100,
+ ["unit"]=0
+ }
+ },
+ [11008]={
+ ["next_chapter"]=11009,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=458949,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=151453,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4587,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=463274,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=4587,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=447235,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1100,
+ ["unit"]=0
+ }
+ },
+ [11009]={
+ ["next_chapter"]=11010,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=459823,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=151742,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4633,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=467907,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=4633,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=447235,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1100,
+ ["unit"]=0
+ }
+ },
+ [11010]={
+ ["next_chapter"]=11011,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=460698,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=152030,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4679,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=472586,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=4679,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=494026,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1101,
+ ["unit"]=0
+ }
+ },
+ [11011]={
+ ["next_chapter"]=11012,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=461574,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=152319,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4726,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=477312,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=4726,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=494026,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1101,
+ ["unit"]=0
+ }
+ },
+ [11012]={
+ ["next_chapter"]=11013,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=462451,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=152609,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4773,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=482085,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=4773,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=494026,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1101,
+ ["unit"]=0
+ }
+ },
+ [11013]={
+ ["next_chapter"]=11014,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=463330,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=152899,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4821,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=486906,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=4821,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=494026,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1101,
+ ["unit"]=0
+ }
+ },
+ [11014]={
+ ["next_chapter"]=11015,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=464209,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=153189,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4869,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=491775,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=4869,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=494026,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1101,
+ ["unit"]=0
+ }
+ },
+ [11015]={
+ ["next_chapter"]=11016,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=465090,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=153480,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4918,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=496693,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=4918,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=494026,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1101,
+ ["unit"]=0
+ }
+ },
+ [11016]={
+ ["next_chapter"]=11017,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=465972,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=153771,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4967,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=501660,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=4967,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=494026,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1101,
+ ["unit"]=0
+ }
+ },
+ [11017]={
+ ["next_chapter"]=11018,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=466855,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=154062,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5017,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=506676,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=5017,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=494026,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1101,
+ ["unit"]=0
+ }
+ },
+ [11018]={
+ ["next_chapter"]=11019,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=467739,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=154354,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5067,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=511743,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=5067,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=494026,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1101,
+ ["unit"]=0
+ }
+ },
+ [11019]={
+ ["next_chapter"]=11020,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=468625,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=154646,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5117,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=516861,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=5117,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=494026,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1101,
+ ["unit"]=0
+ }
+ },
+ [11020]={
+ ["next_chapter"]=11021,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=469511,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=154939,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5169,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=522029,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=5169,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=545712,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1102,
+ ["unit"]=0
+ }
+ },
+ [11021]={
+ ["next_chapter"]=11022,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=470399,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=155232,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5220,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=527250,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=5220,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=545712,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1102,
+ ["unit"]=0
+ }
+ },
+ [11022]={
+ ["next_chapter"]=11023,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=471288,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=155525,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5272,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=532522,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=5272,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=545712,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1102,
+ ["unit"]=0
+ }
+ },
+ [11023]={
+ ["next_chapter"]=11024,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=472178,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=155819,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5325,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=537847,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=5325,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=545712,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1102,
+ ["unit"]=0
+ }
+ },
+ [11024]={
+ ["next_chapter"]=11025,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=473070,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=156113,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5378,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=543226,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=5378,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=545712,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1102,
+ ["unit"]=0
+ }
+ },
+ [11025]={
+ ["next_chapter"]=11026,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=473962,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=156407,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5432,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=548658,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=5432,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=545712,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1102,
+ ["unit"]=0
+ }
+ },
+ [11026]={
+ ["next_chapter"]=11027,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=474856,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=156702,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5487,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=554145,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=5487,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=545712,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1102,
+ ["unit"]=0
+ }
+ },
+ [11027]={
+ ["next_chapter"]=11028,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=475750,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=156998,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5541,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=559686,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=5541,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=545712,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1102,
+ ["unit"]=0
+ }
+ },
+ [11028]={
+ ["next_chapter"]=11029,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=476646,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=157293,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5597,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=565283,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=5597,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=545712,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1102,
+ ["unit"]=0
+ }
+ },
+ [11029]={
+ ["next_chapter"]=11030,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=477544,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=157589,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5653,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=570936,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=5653,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=545712,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1102,
+ ["unit"]=0
+ }
+ },
+ [11030]={
+ ["next_chapter"]=11031,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=478442,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=157886,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5709,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=576645,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=5709,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=602806,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1103,
+ ["unit"]=0
+ }
+ },
+ [11031]={
+ ["next_chapter"]=11032,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=479341,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=158183,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5766,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=582412,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=5766,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=602806,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1103,
+ ["unit"]=0
+ }
+ },
+ [11032]={
+ ["next_chapter"]=11033,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=480242,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=158480,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5824,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=588236,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=5824,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=602806,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1103,
+ ["unit"]=0
+ }
+ },
+ [11033]={
+ ["next_chapter"]=11034,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=481144,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=158777,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5882,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=594118,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=5882,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=602806,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1103,
+ ["unit"]=0
+ }
+ },
+ [11034]={
+ ["next_chapter"]=11035,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=482047,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=159075,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5941,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=600059,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=5941,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=602806,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1103,
+ ["unit"]=0
+ }
+ },
+ [11035]={
+ ["next_chapter"]=11036,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=482951,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=159374,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6001,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=606060,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=6001,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=602806,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1103,
+ ["unit"]=0
+ }
+ },
+ [11036]={
+ ["next_chapter"]=11037,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=483856,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=159673,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6061,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=612120,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=6061,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=602806,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1103,
+ ["unit"]=0
+ }
+ },
+ [11037]={
+ ["next_chapter"]=11038,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=484763,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=159972,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6121,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=618242,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=6121,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=602806,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1103,
+ ["unit"]=0
+ }
+ },
+ [11038]={
+ ["next_chapter"]=11039,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=485671,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=160271,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6182,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=624424,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=6182,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=602806,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1103,
+ ["unit"]=0
+ }
+ },
+ [11039]={
+ ["next_chapter"]=11040,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=486580,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=160571,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6244,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=630668,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=6244,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=602806,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1103,
+ ["unit"]=0
+ }
+ },
+ [11040]={
+ ["next_chapter"]=11041,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=487490,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=160872,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6307,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=636975,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=6307,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=665873,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1104,
+ ["unit"]=0
+ }
+ },
+ [11041]={
+ ["next_chapter"]=11042,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=488401,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=161172,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6370,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=643345,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=6370,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=665873,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1104,
+ ["unit"]=0
+ }
+ },
+ [11042]={
+ ["next_chapter"]=11043,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=489314,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=161473,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6433,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=649778,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=6433,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=665873,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1104,
+ ["unit"]=0
+ }
+ },
+ [11043]={
+ ["next_chapter"]=11044,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=490227,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=161775,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6498,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=656276,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=6498,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=665873,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1104,
+ ["unit"]=0
+ }
+ },
+ [11044]={
+ ["next_chapter"]=11045,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=491142,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=162077,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6563,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=662839,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=6563,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=665873,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1104,
+ ["unit"]=0
+ }
+ },
+ [11045]={
+ ["next_chapter"]=11046,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=492058,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=162379,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6628,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=669467,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=6628,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=665873,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1104,
+ ["unit"]=0
+ }
+ },
+ [11046]={
+ ["next_chapter"]=11047,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=492975,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=162682,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6695,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=676162,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=6695,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=665873,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1104,
+ ["unit"]=0
+ }
+ },
+ [11047]={
+ ["next_chapter"]=11048,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=493894,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=162985,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6762,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=682923,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=6762,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=665873,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1104,
+ ["unit"]=0
+ }
+ },
+ [11048]={
+ ["next_chapter"]=11049,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=494813,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=163288,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6829,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=689753,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=6829,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=665873,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1104,
+ ["unit"]=0
+ }
+ },
+ [11049]={
+ ["next_chapter"]=11050,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=495734,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=163592,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6898,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=696650,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=6898,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=665873,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1104,
+ ["unit"]=0
+ }
+ },
+ [11050]={
+ ["next_chapter"]=11051,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=496656,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=163896,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6967,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=703617,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=6967,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=735538,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1105,
+ ["unit"]=0
+ }
+ },
+ [11051]={
+ ["next_chapter"]=11052,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=497579,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=164201,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7036,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=710653,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=7036,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=735538,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1105,
+ ["unit"]=0
+ }
+ },
+ [11052]={
+ ["next_chapter"]=11053,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=498504,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=164506,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7107,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=717759,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=7107,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=735538,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1105,
+ ["unit"]=0
+ }
+ },
+ [11053]={
+ ["next_chapter"]=11054,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=499429,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=164812,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7178,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=724937,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=7178,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=735538,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1105,
+ ["unit"]=0
+ }
+ },
+ [11054]={
+ ["next_chapter"]=11055,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=500356,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=165117,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7249,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=732186,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=7249,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=735538,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1105,
+ ["unit"]=0
+ }
+ },
+ [11055]={
+ ["next_chapter"]=11056,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=501284,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=165424,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7322,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=739508,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=7322,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=735538,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1105,
+ ["unit"]=0
+ }
+ },
+ [11056]={
+ ["next_chapter"]=11057,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=502213,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=165730,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7395,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=746903,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=7395,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=735538,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1105,
+ ["unit"]=0
+ }
+ },
+ [11057]={
+ ["next_chapter"]=11058,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=503143,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=166037,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7469,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=754372,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=7469,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=735538,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1105,
+ ["unit"]=0
+ }
+ },
+ [11058]={
+ ["next_chapter"]=11059,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=504075,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=166345,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7544,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=761916,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=7544,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=735538,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1105,
+ ["unit"]=0
+ }
+ },
+ [11059]={
+ ["next_chapter"]=11060,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=505007,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=166652,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7619,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=769535,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=7619,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=735538,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1105,
+ ["unit"]=0
+ }
+ },
+ [11060]={
+ ["next_chapter"]=11061,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=505941,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=166961,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7695,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=777230,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=7695,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=812491,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1106,
+ ["unit"]=0
+ }
+ },
+ [11061]={
+ ["next_chapter"]=11062,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=506876,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=167269,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7772,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=785003,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=7772,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=812491,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1106,
+ ["unit"]=0
+ }
+ },
+ [11062]={
+ ["next_chapter"]=11063,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=507813,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=167578,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7850,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=792853,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=7850,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=812491,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1106,
+ ["unit"]=0
+ }
+ },
+ [11063]={
+ ["next_chapter"]=11064,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=508750,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=167888,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7929,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=800781,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=7929,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=812491,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1106,
+ ["unit"]=0
+ }
+ },
+ [11064]={
+ ["next_chapter"]=11065,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=509689,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=168197,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8008,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=808789,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=8008,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=812491,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1106,
+ ["unit"]=0
+ }
+ },
+ [11065]={
+ ["next_chapter"]=11066,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=510629,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=168507,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8088,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=816877,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=8088,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=812491,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1106,
+ ["unit"]=0
+ }
+ },
+ [11066]={
+ ["next_chapter"]=11067,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=511570,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=168818,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8169,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=825046,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=8169,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=812491,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1106,
+ ["unit"]=0
+ }
+ },
+ [11067]={
+ ["next_chapter"]=11068,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=512512,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=169129,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8250,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=833296,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=8250,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=812491,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1106,
+ ["unit"]=0
+ }
+ },
+ [11068]={
+ ["next_chapter"]=11069,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=513456,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=169440,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8333,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=841629,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=8333,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=812491,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1106,
+ ["unit"]=0
+ }
+ },
+ [11069]={
+ ["next_chapter"]=11070,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=514400,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=169752,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8416,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=850045,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=8416,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=812491,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1106,
+ ["unit"]=0
+ }
+ },
+ [11070]={
+ ["next_chapter"]=11071,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=515346,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=170064,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8500,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=858546,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=8500,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=897496,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1107,
+ ["unit"]=0
+ }
+ },
+ [11071]={
+ ["next_chapter"]=11072,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=516293,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=170377,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8585,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=867131,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=8585,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=897496,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1107,
+ ["unit"]=0
+ }
+ },
+ [11072]={
+ ["next_chapter"]=11073,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=517242,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=170690,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8671,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=875803,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=8671,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=897496,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1107,
+ ["unit"]=0
+ }
+ },
+ [11073]={
+ ["next_chapter"]=11074,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=518191,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=171003,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8758,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=884561,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=8758,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=897496,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1107,
+ ["unit"]=0
+ }
+ },
+ [11074]={
+ ["next_chapter"]=11075,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=519142,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=171317,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8846,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=893406,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=8846,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=897496,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1107,
+ ["unit"]=0
+ }
+ },
+ [11075]={
+ ["next_chapter"]=11076,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=520094,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=171631,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8934,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=902340,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=8934,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=897496,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1107,
+ ["unit"]=0
+ }
+ },
+ [11076]={
+ ["next_chapter"]=11077,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=521047,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=171946,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9023,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=911364,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=9023,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=897496,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1107,
+ ["unit"]=0
+ }
+ },
+ [11077]={
+ ["next_chapter"]=11078,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=522002,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=172261,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9114,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=920477,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=9114,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=897496,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1107,
+ ["unit"]=0
+ }
+ },
+ [11078]={
+ ["next_chapter"]=11079,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=522957,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=172576,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9205,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=929682,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=9205,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=897496,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1107,
+ ["unit"]=0
+ }
+ },
+ [11079]={
+ ["next_chapter"]=11080,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=523914,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=172892,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9297,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=938979,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=9297,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=897496,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1107,
+ ["unit"]=0
+ }
+ },
+ [11080]={
+ ["next_chapter"]=11081,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=524872,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=173208,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9390,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=948369,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=9390,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=991394,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1108,
+ ["unit"]=0
+ }
+ },
+ [11081]={
+ ["next_chapter"]=11082,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=525831,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=173524,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9484,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=957853,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=9484,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=991394,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1108,
+ ["unit"]=0
+ }
+ },
+ [11082]={
+ ["next_chapter"]=11083,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=526792,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=173841,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9579,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=967431,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=9579,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=991394,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1108,
+ ["unit"]=0
+ }
+ },
+ [11083]={
+ ["next_chapter"]=11084,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=527753,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=174159,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9674,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=977105,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=9674,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=991394,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1108,
+ ["unit"]=0
+ }
+ },
+ [11084]={
+ ["next_chapter"]=11085,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=528716,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=174476,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9771,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=986876,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=9771,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=991394,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1108,
+ ["unit"]=0
+ }
+ },
+ [11085]={
+ ["next_chapter"]=11086,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=529680,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=174794,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9869,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=996745,
+ ["unit"]=15
+ },
+ ["idle_gold"]={
+ ["value"]=9869,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=991394,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1108,
+ ["unit"]=0
+ }
+ },
+ [11086]={
+ ["next_chapter"]=11087,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=530646,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=175113,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9967,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1007,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=9967,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=991394,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1108,
+ ["unit"]=0
+ }
+ },
+ [11087]={
+ ["next_chapter"]=11088,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=531612,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=175432,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10067,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1017,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=10067,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=991394,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1108,
+ ["unit"]=0
+ }
+ },
+ [11088]={
+ ["next_chapter"]=11089,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=532580,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=175751,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10168,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1027,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=10168,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=991394,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1108,
+ ["unit"]=0
+ }
+ },
+ [11089]={
+ ["next_chapter"]=11090,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=533549,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=176071,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10269,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1037,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=10269,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=991394,
+ ["unit"]=15
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1108,
+ ["unit"]=0
+ }
+ },
+ [11090]={
+ ["next_chapter"]=11091,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=534519,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=176391,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10372,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1048,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=10372,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1095,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1109,
+ ["unit"]=0
+ }
+ },
+ [11091]={
+ ["next_chapter"]=11092,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=535490,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=176712,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10476,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1058,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=10476,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1095,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1109,
+ ["unit"]=0
+ }
+ },
+ [11092]={
+ ["next_chapter"]=11093,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=536463,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=177033,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10581,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1069,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=10581,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1095,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1109,
+ ["unit"]=0
+ }
+ },
+ [11093]={
+ ["next_chapter"]=11094,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=537437,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=177354,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10686,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1079,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=10686,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1095,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1109,
+ ["unit"]=0
+ }
+ },
+ [11094]={
+ ["next_chapter"]=11095,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=538412,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=177676,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10793,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1090,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=10793,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1095,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1109,
+ ["unit"]=0
+ }
+ },
+ [11095]={
+ ["next_chapter"]=11096,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=539388,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=177998,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10901,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1101,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=10901,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1095,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1109,
+ ["unit"]=0
+ }
+ },
+ [11096]={
+ ["next_chapter"]=11097,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=540366,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=178321,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=11010,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1112,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=11010,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1095,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1109,
+ ["unit"]=0
+ }
+ },
+ [11097]={
+ ["next_chapter"]=11098,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=541344,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=178644,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=11120,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1123,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=11120,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1095,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1109,
+ ["unit"]=0
+ }
+ },
+ [11098]={
+ ["next_chapter"]=11099,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=542324,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=178967,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=11232,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1134,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=11232,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1095,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1109,
+ ["unit"]=0
+ }
+ },
+ [11099]={
+ ["next_chapter"]=11100,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=543306,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=179291,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=11344,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1146,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=11344,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1095,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1109,
+ ["unit"]=0
+ }
+ },
+ [11100]={
+ ["next_chapter"]=11101,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=544288,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=179615,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=11457,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1157,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=11457,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=58,
+ ["grasp_gold_reward"]={
+ ["value"]=1210,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1110,
+ ["unit"]=0
+ }
+ },
+ [11101]={
+ ["next_chapter"]=11102,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=545272,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=179940,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=11572,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1169,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=11572,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1210,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1110,
+ ["unit"]=0
+ }
+ },
+ [11102]={
+ ["next_chapter"]=11103,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=546257,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=180265,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=11688,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1180,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=11688,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1210,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1110,
+ ["unit"]=0
+ }
+ },
+ [11103]={
+ ["next_chapter"]=11104,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=547243,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=180590,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=11804,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1192,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=11804,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1210,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1110,
+ ["unit"]=0
+ }
+ },
+ [11104]={
+ ["next_chapter"]=11105,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=548230,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=180916,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=11923,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1204,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=11923,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1210,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1110,
+ ["unit"]=0
+ }
+ },
+ [11105]={
+ ["next_chapter"]=11106,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=549219,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=181242,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=12042,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1216,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=12042,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1210,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1110,
+ ["unit"]=0
+ }
+ },
+ [11106]={
+ ["next_chapter"]=11107,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=550208,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=181569,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=12162,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1228,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=12162,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1210,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1110,
+ ["unit"]=0
+ }
+ },
+ [11107]={
+ ["next_chapter"]=11108,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=551199,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=181896,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=12284,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1241,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=12284,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1210,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1110,
+ ["unit"]=0
+ }
+ },
+ [11108]={
+ ["next_chapter"]=11109,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=552192,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=182223,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=12407,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1253,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=12407,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1210,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1110,
+ ["unit"]=0
+ }
+ },
+ [11109]={
+ ["next_chapter"]=11110,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=553185,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=182551,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=12531,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1266,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=12531,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1210,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1110,
+ ["unit"]=0
+ }
+ },
+ [11110]={
+ ["next_chapter"]=11111,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=554180,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=182879,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=12656,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1278,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=12656,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1336,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1111,
+ ["unit"]=0
+ }
+ },
+ [11111]={
+ ["next_chapter"]=11112,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=555176,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=183208,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=12783,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1291,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=12783,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1336,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1111,
+ ["unit"]=0
+ }
+ },
+ [11112]={
+ ["next_chapter"]=11113,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=556173,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=183537,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=12910,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1304,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=12910,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1336,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1111,
+ ["unit"]=0
+ }
+ },
+ [11113]={
+ ["next_chapter"]=11114,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=557172,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=183867,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=13040,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1317,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=13040,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1336,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1111,
+ ["unit"]=0
+ }
+ },
+ [11114]={
+ ["next_chapter"]=11115,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=558171,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=184197,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=13170,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1330,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=13170,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1336,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1111,
+ ["unit"]=0
+ }
+ },
+ [11115]={
+ ["next_chapter"]=11116,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=559172,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=184527,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=13302,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1343,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=13302,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1336,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1111,
+ ["unit"]=0
+ }
+ },
+ [11116]={
+ ["next_chapter"]=11117,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=560174,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=184858,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=13435,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1357,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=13435,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1336,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1111,
+ ["unit"]=0
+ }
+ },
+ [11117]={
+ ["next_chapter"]=11118,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=561178,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=185189,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=13569,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1370,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=13569,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1336,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1111,
+ ["unit"]=0
+ }
+ },
+ [11118]={
+ ["next_chapter"]=11119,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=562183,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=185520,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=13705,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1384,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=13705,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1336,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1111,
+ ["unit"]=0
+ }
+ },
+ [11119]={
+ ["next_chapter"]=11120,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=563188,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=185852,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=13842,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1398,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=13842,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1336,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1111,
+ ["unit"]=0
+ }
+ },
+ [11120]={
+ ["next_chapter"]=11121,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=564196,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=186185,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=13980,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1412,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=13980,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1476,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1112,
+ ["unit"]=0
+ }
+ },
+ [11121]={
+ ["next_chapter"]=11122,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=565204,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=186517,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=14120,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1426,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=14120,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1476,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1112,
+ ["unit"]=0
+ }
+ },
+ [11122]={
+ ["next_chapter"]=11123,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=566214,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=186850,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=14261,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1440,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=14261,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1476,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1112,
+ ["unit"]=0
+ }
+ },
+ [11123]={
+ ["next_chapter"]=11124,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=567224,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=187184,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=14404,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1455,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=14404,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1476,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1112,
+ ["unit"]=0
+ }
+ },
+ [11124]={
+ ["next_chapter"]=11125,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=568237,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=187518,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=14548,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1469,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=14548,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1476,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1112,
+ ["unit"]=0
+ }
+ },
+ [11125]={
+ ["next_chapter"]=11126,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=569250,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=187853,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=14693,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1484,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=14693,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1476,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1112,
+ ["unit"]=0
+ }
+ },
+ [11126]={
+ ["next_chapter"]=11127,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=570265,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=188187,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=14840,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1499,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=14840,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1476,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1112,
+ ["unit"]=0
+ }
+ },
+ [11127]={
+ ["next_chapter"]=11128,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=571280,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=188523,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=14989,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1514,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=14989,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1476,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1112,
+ ["unit"]=0
+ }
+ },
+ [11128]={
+ ["next_chapter"]=11129,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=572298,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=188858,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=15138,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1529,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=15138,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1476,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1112,
+ ["unit"]=0
+ }
+ },
+ [11129]={
+ ["next_chapter"]=11130,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=573316,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=189194,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=15290,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1544,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=15290,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1476,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1112,
+ ["unit"]=0
+ }
+ },
+ [11130]={
+ ["next_chapter"]=11131,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=574336,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=189531,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=15443,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1560,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=15443,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1630,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1113,
+ ["unit"]=0
+ }
+ },
+ [11131]={
+ ["next_chapter"]=11132,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=575356,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=189868,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=15597,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1575,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=15597,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1630,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1113,
+ ["unit"]=0
+ }
+ },
+ [11132]={
+ ["next_chapter"]=11133,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=576379,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=190205,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=15753,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1591,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=15753,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1630,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1113,
+ ["unit"]=0
+ }
+ },
+ [11133]={
+ ["next_chapter"]=11134,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=577402,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=190543,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=15911,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1607,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=15911,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1630,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1113,
+ ["unit"]=0
+ }
+ },
+ [11134]={
+ ["next_chapter"]=11135,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=578427,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=190881,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=16070,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1623,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=16070,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1630,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1113,
+ ["unit"]=0
+ }
+ },
+ [11135]={
+ ["next_chapter"]=11136,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=579453,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=191219,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=16230,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1639,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=16230,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1630,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1113,
+ ["unit"]=0
+ }
+ },
+ [11136]={
+ ["next_chapter"]=11137,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=580480,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=191558,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=16393,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1656,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=16393,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1630,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1113,
+ ["unit"]=0
+ }
+ },
+ [11137]={
+ ["next_chapter"]=11138,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=581508,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=191898,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=16557,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1672,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=16557,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1630,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1113,
+ ["unit"]=0
+ }
+ },
+ [11138]={
+ ["next_chapter"]=11139,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=582538,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=192237,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=16722,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1689,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=16722,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1630,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1113,
+ ["unit"]=0
+ }
+ },
+ [11139]={
+ ["next_chapter"]=11140,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=583569,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=192578,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=16890,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1706,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=16890,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1630,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1113,
+ ["unit"]=0
+ }
+ },
+ [11140]={
+ ["next_chapter"]=11141,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=584601,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=192918,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=17058,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1723,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=17058,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1801,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1114,
+ ["unit"]=0
+ }
+ },
+ [11141]={
+ ["next_chapter"]=11142,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=585634,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=193259,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=17229,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1740,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=17229,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1801,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1114,
+ ["unit"]=0
+ }
+ },
+ [11142]={
+ ["next_chapter"]=11143,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=586669,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=193601,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=17401,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1758,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=17401,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1801,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1114,
+ ["unit"]=0
+ }
+ },
+ [11143]={
+ ["next_chapter"]=11144,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=587705,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=193943,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=17575,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1775,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=17575,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1801,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1114,
+ ["unit"]=0
+ }
+ },
+ [11144]={
+ ["next_chapter"]=11145,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=588742,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=194285,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=17751,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1793,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=17751,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1801,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1114,
+ ["unit"]=0
+ }
+ },
+ [11145]={
+ ["next_chapter"]=11146,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=589781,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=194628,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=17929,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1811,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=17929,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1801,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1114,
+ ["unit"]=0
+ }
+ },
+ [11146]={
+ ["next_chapter"]=11147,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=590820,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=194971,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=18108,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1829,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=18108,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1801,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1114,
+ ["unit"]=0
+ }
+ },
+ [11147]={
+ ["next_chapter"]=11148,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=591861,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=195314,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=18289,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1847,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=18289,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1801,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1114,
+ ["unit"]=0
+ }
+ },
+ [11148]={
+ ["next_chapter"]=11149,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=592904,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=195658,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=18472,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1866,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=18472,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1801,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1114,
+ ["unit"]=0
+ }
+ },
+ [11149]={
+ ["next_chapter"]=11150,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=593947,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=196003,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=18657,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1884,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=18657,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1801,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1114,
+ ["unit"]=0
+ }
+ },
+ [11150]={
+ ["next_chapter"]=11151,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=594992,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=196347,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=18843,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1903,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=18843,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1989,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1115,
+ ["unit"]=0
+ }
+ },
+ [11151]={
+ ["next_chapter"]=11152,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=596038,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=196693,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=19032,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1922,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=19032,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1989,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1115,
+ ["unit"]=0
+ }
+ },
+ [11152]={
+ ["next_chapter"]=11153,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=597085,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=197038,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=19222,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1941,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=19222,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1989,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1115,
+ ["unit"]=0
+ }
+ },
+ [11153]={
+ ["next_chapter"]=11154,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=598134,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=197384,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=19414,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1961,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=19414,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1989,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1115,
+ ["unit"]=0
+ }
+ },
+ [11154]={
+ ["next_chapter"]=11155,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=599184,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=197731,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=19608,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1980,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=19608,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1989,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1115,
+ ["unit"]=0
+ }
+ },
+ [11155]={
+ ["next_chapter"]=11156,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=600235,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=198078,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=19804,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2000,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=19804,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1989,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1115,
+ ["unit"]=0
+ }
+ },
+ [11156]={
+ ["next_chapter"]=11157,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=601287,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=198425,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=20002,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2020,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=20002,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1989,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1115,
+ ["unit"]=0
+ }
+ },
+ [11157]={
+ ["next_chapter"]=11158,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=602341,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=198773,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=20202,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2040,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=20202,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1989,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1115,
+ ["unit"]=0
+ }
+ },
+ [11158]={
+ ["next_chapter"]=11159,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=603396,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=199121,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=20404,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2061,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=20404,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1989,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1115,
+ ["unit"]=0
+ }
+ },
+ [11159]={
+ ["next_chapter"]=11160,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=604452,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=199469,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=20608,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2081,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=20608,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1989,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1115,
+ ["unit"]=0
+ }
+ },
+ [11160]={
+ ["next_chapter"]=11161,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=605510,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=199818,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=20814,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2102,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=20814,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2198,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1116,
+ ["unit"]=0
+ }
+ },
+ [11161]={
+ ["next_chapter"]=11162,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=606569,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=200168,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=21023,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2123,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=21023,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2198,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1116,
+ ["unit"]=0
+ }
+ },
+ [11162]={
+ ["next_chapter"]=11163,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=607629,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=200517,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=21233,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2145,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=21233,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2198,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1116,
+ ["unit"]=0
+ }
+ },
+ [11163]={
+ ["next_chapter"]=11164,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=608690,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=200868,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=21445,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2166,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=21445,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2198,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1116,
+ ["unit"]=0
+ }
+ },
+ [11164]={
+ ["next_chapter"]=11165,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=609753,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=201218,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=21660,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2188,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=21660,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2198,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1116,
+ ["unit"]=0
+ }
+ },
+ [11165]={
+ ["next_chapter"]=11166,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=610817,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=201569,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=21876,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2210,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=21876,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2198,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1116,
+ ["unit"]=0
+ }
+ },
+ [11166]={
+ ["next_chapter"]=11167,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=611882,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=201921,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=22095,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2232,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=22095,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2198,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1116,
+ ["unit"]=0
+ }
+ },
+ [11167]={
+ ["next_chapter"]=11168,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=612948,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=202273,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=22316,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2254,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=22316,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2198,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1116,
+ ["unit"]=0
+ }
+ },
+ [11168]={
+ ["next_chapter"]=11169,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=614016,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=202625,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=22539,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2276,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=22539,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2198,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1116,
+ ["unit"]=0
+ }
+ },
+ [11169]={
+ ["next_chapter"]=11170,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=615085,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=202978,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=22765,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2299,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=22765,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2198,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1116,
+ ["unit"]=0
+ }
+ },
+ [11170]={
+ ["next_chapter"]=11171,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=616155,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=203331,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=22992,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2322,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=22992,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2428,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1117,
+ ["unit"]=0
+ }
+ },
+ [11171]={
+ ["next_chapter"]=11172,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=617227,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=203685,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=23222,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2345,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=23222,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2428,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1117,
+ ["unit"]=0
+ }
+ },
+ [11172]={
+ ["next_chapter"]=11173,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=618300,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=204039,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=23454,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2369,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=23454,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2428,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1117,
+ ["unit"]=0
+ }
+ },
+ [11173]={
+ ["next_chapter"]=11174,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=619374,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=204393,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=23689,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2393,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=23689,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2428,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1117,
+ ["unit"]=0
+ }
+ },
+ [11174]={
+ ["next_chapter"]=11175,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=620449,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=204748,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=23926,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2416,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=23926,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2428,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1117,
+ ["unit"]=0
+ }
+ },
+ [11175]={
+ ["next_chapter"]=11176,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=621526,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=205104,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=24165,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2441,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=24165,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2428,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1117,
+ ["unit"]=0
+ }
+ },
+ [11176]={
+ ["next_chapter"]=11177,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=622604,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=205459,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=24407,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2465,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=24407,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2428,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1117,
+ ["unit"]=0
+ }
+ },
+ [11177]={
+ ["next_chapter"]=11178,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=623683,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=205815,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=24651,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2490,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=24651,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2428,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1117,
+ ["unit"]=0
+ }
+ },
+ [11178]={
+ ["next_chapter"]=11179,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=624764,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=206172,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=24897,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2515,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=24897,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2428,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1117,
+ ["unit"]=0
+ }
+ },
+ [11179]={
+ ["next_chapter"]=11180,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=625846,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=206529,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=25146,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2540,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=25146,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2428,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1117,
+ ["unit"]=0
+ }
+ },
+ [11180]={
+ ["next_chapter"]=11181,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=626929,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=206887,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=25398,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2565,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=25398,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2682,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1118,
+ ["unit"]=0
+ }
+ },
+ [11181]={
+ ["next_chapter"]=11182,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=628013,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=207244,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=25652,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2591,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=25652,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2682,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1118,
+ ["unit"]=0
+ }
+ },
+ [11182]={
+ ["next_chapter"]=11183,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=629099,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=207603,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=25908,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2617,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=25908,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2682,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1118,
+ ["unit"]=0
+ }
+ },
+ [11183]={
+ ["next_chapter"]=11184,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=630186,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=207961,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=26167,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2643,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=26167,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2682,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1118,
+ ["unit"]=0
+ }
+ },
+ [11184]={
+ ["next_chapter"]=11185,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=631274,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=208321,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=26429,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2669,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=26429,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2682,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1118,
+ ["unit"]=0
+ }
+ },
+ [11185]={
+ ["next_chapter"]=11186,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=632364,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=208680,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=26693,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2696,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=26693,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2682,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1118,
+ ["unit"]=0
+ }
+ },
+ [11186]={
+ ["next_chapter"]=11187,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=633455,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=209040,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=26960,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2723,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=26960,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2682,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1118,
+ ["unit"]=0
+ }
+ },
+ [11187]={
+ ["next_chapter"]=11188,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=634547,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=209401,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=27230,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2750,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=27230,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2682,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1118,
+ ["unit"]=0
+ }
+ },
+ [11188]={
+ ["next_chapter"]=11189,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=635641,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=209761,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=27502,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2778,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=27502,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2682,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1118,
+ ["unit"]=0
+ }
+ },
+ [11189]={
+ ["next_chapter"]=11190,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=636735,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=210123,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=27777,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2805,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=27777,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2682,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1118,
+ ["unit"]=0
+ }
+ },
+ [11190]={
+ ["next_chapter"]=11191,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=637832,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=210484,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=28055,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2834,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=28055,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2962,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1119,
+ ["unit"]=0
+ }
+ },
+ [11191]={
+ ["next_chapter"]=11192,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=638929,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=210847,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=28335,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2862,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=28335,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2962,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1119,
+ ["unit"]=0
+ }
+ },
+ [11192]={
+ ["next_chapter"]=11193,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=640028,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=211209,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=28619,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2890,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=28619,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2962,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1119,
+ ["unit"]=0
+ }
+ },
+ [11193]={
+ ["next_chapter"]=11194,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=641128,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=211572,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=28905,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2919,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=28905,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2962,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1119,
+ ["unit"]=0
+ }
+ },
+ [11194]={
+ ["next_chapter"]=11195,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=642229,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=211936,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=29194,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2949,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=29194,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2962,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1119,
+ ["unit"]=0
+ }
+ },
+ [11195]={
+ ["next_chapter"]=11196,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=643332,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=212299,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=29486,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2978,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=29486,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2962,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1119,
+ ["unit"]=0
+ }
+ },
+ [11196]={
+ ["next_chapter"]=11197,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=644435,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=212664,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=29781,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3008,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=29781,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2962,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1119,
+ ["unit"]=0
+ }
+ },
+ [11197]={
+ ["next_chapter"]=11198,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=645541,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=213028,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=30079,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3038,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=30079,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2962,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1119,
+ ["unit"]=0
+ }
+ },
+ [11198]={
+ ["next_chapter"]=11199,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=646647,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=213394,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=30379,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3068,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=30379,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2962,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1119,
+ ["unit"]=0
+ }
+ },
+ [11199]={
+ ["next_chapter"]=11200,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=647755,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=213759,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=30683,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3099,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=30683,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2962,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1119,
+ ["unit"]=0
+ }
+ },
+ [11200]={
+ ["next_chapter"]=11201,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=648864,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=214125,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=30990,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3130,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=30990,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3272,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1120,
+ ["unit"]=0
+ }
+ },
+ [11201]={
+ ["next_chapter"]=11202,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=649974,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=214492,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=31300,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3161,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=31300,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3272,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1120,
+ ["unit"]=0
+ }
+ },
+ [11202]={
+ ["next_chapter"]=11203,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=651086,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=214858,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=31613,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3193,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=31613,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3272,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1120,
+ ["unit"]=0
+ }
+ },
+ [11203]={
+ ["next_chapter"]=11204,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=652199,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=215226,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=31929,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3225,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=31929,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3272,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1120,
+ ["unit"]=0
+ }
+ },
+ [11204]={
+ ["next_chapter"]=11205,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=653313,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=215593,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=32248,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3257,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=32248,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3272,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1120,
+ ["unit"]=0
+ }
+ },
+ [11205]={
+ ["next_chapter"]=11206,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=654429,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=215962,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=32571,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3290,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=32571,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3272,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1120,
+ ["unit"]=0
+ }
+ },
+ [11206]={
+ ["next_chapter"]=11207,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=655546,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=216330,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=32896,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3323,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=32896,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3272,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1120,
+ ["unit"]=0
+ }
+ },
+ [11207]={
+ ["next_chapter"]=11208,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=656664,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=216699,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=33225,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3356,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=33225,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3272,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1120,
+ ["unit"]=0
+ }
+ },
+ [11208]={
+ ["next_chapter"]=11209,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=657784,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=217069,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=33558,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3389,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=33558,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3272,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1120,
+ ["unit"]=0
+ }
+ },
+ [11209]={
+ ["next_chapter"]=11210,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=658905,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=217439,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=33893,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3423,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=33893,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3272,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1120,
+ ["unit"]=0
+ }
+ },
+ [11210]={
+ ["next_chapter"]=11211,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=660027,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=217809,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=34232,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3457,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=34232,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3614,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1121,
+ ["unit"]=0
+ }
+ },
+ [11211]={
+ ["next_chapter"]=11212,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=661151,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=218180,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=34574,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3492,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=34574,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3614,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1121,
+ ["unit"]=0
+ }
+ },
+ [11212]={
+ ["next_chapter"]=11213,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=662275,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=218551,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=34920,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3527,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=34920,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3614,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1121,
+ ["unit"]=0
+ }
+ },
+ [11213]={
+ ["next_chapter"]=11214,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=663401,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=218922,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=35269,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3562,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=35269,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3614,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1121,
+ ["unit"]=0
+ }
+ },
+ [11214]={
+ ["next_chapter"]=11215,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=664529,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=219295,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=35622,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3598,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=35622,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3614,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1121,
+ ["unit"]=0
+ }
+ },
+ [11215]={
+ ["next_chapter"]=11216,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=665658,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=219667,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=35978,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3634,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=35978,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3614,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1121,
+ ["unit"]=0
+ }
+ },
+ [11216]={
+ ["next_chapter"]=11217,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=666788,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=220040,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=36338,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3670,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=36338,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3614,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1121,
+ ["unit"]=0
+ }
+ },
+ [11217]={
+ ["next_chapter"]=11218,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=667919,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=220413,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=36702,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3707,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=36702,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3614,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1121,
+ ["unit"]=0
+ }
+ },
+ [11218]={
+ ["next_chapter"]=11219,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=669052,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=220787,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=37069,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3744,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=37069,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3614,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1121,
+ ["unit"]=0
+ }
+ },
+ [11219]={
+ ["next_chapter"]=11220,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=670186,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=221161,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=37439,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3781,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=37439,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3614,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1121,
+ ["unit"]=0
+ }
+ },
+ [11220]={
+ ["next_chapter"]=11221,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=671321,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=221536,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=37814,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3819,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=37814,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3992,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1122,
+ ["unit"]=0
+ }
+ },
+ [11221]={
+ ["next_chapter"]=11222,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=672458,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=221911,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=38192,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3857,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=38192,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3992,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1122,
+ ["unit"]=0
+ }
+ },
+ [11222]={
+ ["next_chapter"]=11223,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=673596,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=222287,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=38574,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3896,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=38574,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3992,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1122,
+ ["unit"]=0
+ }
+ },
+ [11223]={
+ ["next_chapter"]=11224,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=674735,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=222663,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=38959,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3935,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=38959,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3992,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1122,
+ ["unit"]=0
+ }
+ },
+ [11224]={
+ ["next_chapter"]=11225,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=675876,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=223039,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=39349,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3974,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=39349,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3992,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1122,
+ ["unit"]=0
+ }
+ },
+ [11225]={
+ ["next_chapter"]=11226,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=677018,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=223416,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=39742,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4014,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=39742,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3992,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1122,
+ ["unit"]=0
+ }
+ },
+ [11226]={
+ ["next_chapter"]=11227,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=678161,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=223793,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=40140,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4054,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=40140,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3992,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1122,
+ ["unit"]=0
+ }
+ },
+ [11227]={
+ ["next_chapter"]=11228,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=679306,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=224171,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=40541,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4095,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=40541,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3992,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1122,
+ ["unit"]=0
+ }
+ },
+ [11228]={
+ ["next_chapter"]=11229,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=680452,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=224549,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=40947,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4136,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=40947,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3992,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1122,
+ ["unit"]=0
+ }
+ },
+ [11229]={
+ ["next_chapter"]=11230,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=681599,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=224928,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=41356,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4177,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=41356,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3992,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1122,
+ ["unit"]=0
+ }
+ },
+ [11230]={
+ ["next_chapter"]=11231,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=682748,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=225307,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=41770,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4219,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=41770,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=4410,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1123,
+ ["unit"]=0
+ }
+ },
+ [11231]={
+ ["next_chapter"]=11232,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=683898,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=225686,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=42187,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4261,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=42187,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=4410,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1123,
+ ["unit"]=0
+ }
+ },
+ [11232]={
+ ["next_chapter"]=11233,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=685049,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=226066,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=42609,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4304,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=42609,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=4410,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1123,
+ ["unit"]=0
+ }
+ },
+ [11233]={
+ ["next_chapter"]=11234,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=686202,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=226447,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=43035,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4347,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=43035,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=4410,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1123,
+ ["unit"]=0
+ }
+ },
+ [11234]={
+ ["next_chapter"]=11235,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=687356,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=226827,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=43466,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4390,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=43466,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=4410,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1123,
+ ["unit"]=0
+ }
+ },
+ [11235]={
+ ["next_chapter"]=11236,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=688511,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=227209,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=43900,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4434,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=43900,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=4410,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1123,
+ ["unit"]=0
+ }
+ },
+ [11236]={
+ ["next_chapter"]=11237,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=689667,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=227590,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=44339,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4478,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=44339,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=4410,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1123,
+ ["unit"]=0
+ }
+ },
+ [11237]={
+ ["next_chapter"]=11238,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=690825,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=227972,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=44783,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4523,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=44783,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=4410,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1123,
+ ["unit"]=0
+ }
+ },
+ [11238]={
+ ["next_chapter"]=11239,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=691985,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=228355,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=45231,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4568,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=45231,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=4410,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1123,
+ ["unit"]=0
+ }
+ },
+ [11239]={
+ ["next_chapter"]=11240,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=693145,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=228738,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=45683,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4614,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=45683,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=4410,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1123,
+ ["unit"]=0
+ }
+ },
+ [11240]={
+ ["next_chapter"]=11241,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=694307,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=229121,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=46140,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4660,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=46140,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=4872,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1124,
+ ["unit"]=0
+ }
+ },
+ [11241]={
+ ["next_chapter"]=11242,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=695470,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=229505,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=46601,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4707,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=46601,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=4872,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1124,
+ ["unit"]=0
+ }
+ },
+ [11242]={
+ ["next_chapter"]=11243,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=696635,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=229890,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=47067,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4754,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=47067,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=4872,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1124,
+ ["unit"]=0
+ }
+ },
+ [11243]={
+ ["next_chapter"]=11244,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=697801,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=230274,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=47538,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4801,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=47538,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=4872,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1124,
+ ["unit"]=0
+ }
+ },
+ [11244]={
+ ["next_chapter"]=11245,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=698968,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=230659,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=48013,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4849,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=48013,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=4872,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1124,
+ ["unit"]=0
+ }
+ },
+ [11245]={
+ ["next_chapter"]=11246,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=700137,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=231045,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=48493,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4898,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=48493,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=4872,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1124,
+ ["unit"]=0
+ }
+ },
+ [11246]={
+ ["next_chapter"]=11247,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=701307,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=231431,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=48978,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4947,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=48978,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=4872,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1124,
+ ["unit"]=0
+ }
+ },
+ [11247]={
+ ["next_chapter"]=11248,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=702478,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=231818,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=49468,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4996,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=49468,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=4872,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1124,
+ ["unit"]=0
+ }
+ },
+ [11248]={
+ ["next_chapter"]=11249,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=703651,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=232205,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=49963,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5046,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=49963,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=4872,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1124,
+ ["unit"]=0
+ }
+ },
+ [11249]={
+ ["next_chapter"]=11250,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=704825,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=232592,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=50462,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5097,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=50462,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=4872,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1124,
+ ["unit"]=0
+ }
+ },
+ [11250]={
+ ["next_chapter"]=11251,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=706000,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=232980,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=50967,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5148,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=50967,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=5381,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1125,
+ ["unit"]=0
+ }
+ },
+ [11251]={
+ ["next_chapter"]=11252,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=707177,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=233368,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=51477,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5199,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=51477,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=5381,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1125,
+ ["unit"]=0
+ }
+ },
+ [11252]={
+ ["next_chapter"]=11253,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=708355,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=233757,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=51991,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5251,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=51991,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=5381,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1125,
+ ["unit"]=0
+ }
+ },
+ [11253]={
+ ["next_chapter"]=11254,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=709534,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=234146,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=52511,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5304,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=52511,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=5381,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1125,
+ ["unit"]=0
+ }
+ },
+ [11254]={
+ ["next_chapter"]=11255,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=710715,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=234536,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=53037,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5357,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=53037,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=5381,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1125,
+ ["unit"]=0
+ }
+ },
+ [11255]={
+ ["next_chapter"]=11256,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=711897,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=234926,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=53567,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5410,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=53567,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=5381,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1125,
+ ["unit"]=0
+ }
+ },
+ [11256]={
+ ["next_chapter"]=11257,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=713080,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=235316,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=54103,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5464,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=54103,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=5381,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1125,
+ ["unit"]=0
+ }
+ },
+ [11257]={
+ ["next_chapter"]=11258,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=714265,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=235707,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=54644,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5519,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=54644,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=5381,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1125,
+ ["unit"]=0
+ }
+ },
+ [11258]={
+ ["next_chapter"]=11259,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=715451,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=236099,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=55190,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5574,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=55190,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=5381,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1125,
+ ["unit"]=0
+ }
+ },
+ [11259]={
+ ["next_chapter"]=11260,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=716639,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=236491,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=55742,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5630,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=55742,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=5381,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1125,
+ ["unit"]=0
+ }
+ },
+ [11260]={
+ ["next_chapter"]=11261,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=717827,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=236883,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=56299,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5686,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=56299,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=5944,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1126,
+ ["unit"]=0
+ }
+ },
+ [11261]={
+ ["next_chapter"]=11262,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=719017,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=237276,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=56862,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5743,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=56862,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=5944,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1126,
+ ["unit"]=0
+ }
+ },
+ [11262]={
+ ["next_chapter"]=11263,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=720209,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=237669,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=57431,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5801,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=57431,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=5944,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1126,
+ ["unit"]=0
+ }
+ },
+ [11263]={
+ ["next_chapter"]=11264,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=721402,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=238063,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=58005,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5859,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=58005,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=5944,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1126,
+ ["unit"]=0
+ }
+ },
+ [11264]={
+ ["next_chapter"]=11265,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=722596,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=238457,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=58585,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5917,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=58585,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=5944,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1126,
+ ["unit"]=0
+ }
+ },
+ [11265]={
+ ["next_chapter"]=11266,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=723792,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=238851,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=59171,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5976,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=59171,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=5944,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1126,
+ ["unit"]=0
+ }
+ },
+ [11266]={
+ ["next_chapter"]=11267,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=724989,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=239246,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=59763,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6036,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=59763,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=5944,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1126,
+ ["unit"]=0
+ }
+ },
+ [11267]={
+ ["next_chapter"]=11268,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=726187,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=239642,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=60360,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6096,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=60360,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=5944,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1126,
+ ["unit"]=0
+ }
+ },
+ [11268]={
+ ["next_chapter"]=11269,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=727386,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=240038,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=60964,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6157,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=60964,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=5944,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1126,
+ ["unit"]=0
+ }
+ },
+ [11269]={
+ ["next_chapter"]=11270,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=728587,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=240434,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=61574,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6219,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=61574,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=5944,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1126,
+ ["unit"]=0
+ }
+ },
+ [11270]={
+ ["next_chapter"]=11271,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=729790,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=240831,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=62189,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6281,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=62189,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=6566,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1127,
+ ["unit"]=0
+ }
+ },
+ [11271]={
+ ["next_chapter"]=11272,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=730994,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=241228,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=62811,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6344,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=62811,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=6566,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1127,
+ ["unit"]=0
+ }
+ },
+ [11272]={
+ ["next_chapter"]=11273,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=732199,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=241626,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=63439,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6407,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=63439,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=6566,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1127,
+ ["unit"]=0
+ }
+ },
+ [11273]={
+ ["next_chapter"]=11274,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=733405,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=242024,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=64074,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6471,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=64074,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=6566,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1127,
+ ["unit"]=0
+ }
+ },
+ [11274]={
+ ["next_chapter"]=11275,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=734613,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=242422,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=64715,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6536,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=64715,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=6566,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1127,
+ ["unit"]=0
+ }
+ },
+ [11275]={
+ ["next_chapter"]=11276,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=735822,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=242821,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=65362,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6602,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=65362,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=6566,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1127,
+ ["unit"]=0
+ }
+ },
+ [11276]={
+ ["next_chapter"]=11277,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=737033,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=243221,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=66015,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6668,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=66015,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=6566,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1127,
+ ["unit"]=0
+ }
+ },
+ [11277]={
+ ["next_chapter"]=11278,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=738244,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=243621,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=66676,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6734,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=66676,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=6566,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1127,
+ ["unit"]=0
+ }
+ },
+ [11278]={
+ ["next_chapter"]=11279,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=739458,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=244021,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=67342,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6802,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=67342,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=6566,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1127,
+ ["unit"]=0
+ }
+ },
+ [11279]={
+ ["next_chapter"]=11280,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=740672,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=244422,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=68016,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6870,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=68016,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=6566,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1127,
+ ["unit"]=0
+ }
+ },
+ [11280]={
+ ["next_chapter"]=11281,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=741888,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=244823,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=68696,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6938,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=68696,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=7253,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1128,
+ ["unit"]=0
+ }
+ },
+ [11281]={
+ ["next_chapter"]=11282,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=743106,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=245225,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=69383,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7008,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=69383,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=7253,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1128,
+ ["unit"]=0
+ }
+ },
+ [11282]={
+ ["next_chapter"]=11283,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=744324,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=245627,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=70077,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7078,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=70077,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=7253,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1128,
+ ["unit"]=0
+ }
+ },
+ [11283]={
+ ["next_chapter"]=11284,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=745544,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=246030,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=70777,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7149,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=70777,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=7253,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1128,
+ ["unit"]=0
+ }
+ },
+ [11284]={
+ ["next_chapter"]=11285,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=746766,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=246433,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=71485,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7220,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=71485,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=7253,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1128,
+ ["unit"]=0
+ }
+ },
+ [11285]={
+ ["next_chapter"]=11286,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=747989,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=246836,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=72200,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7292,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=72200,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=7253,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1128,
+ ["unit"]=0
+ }
+ },
+ [11286]={
+ ["next_chapter"]=11287,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=749213,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=247240,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=72922,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7365,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=72922,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=7253,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1128,
+ ["unit"]=0
+ }
+ },
+ [11287]={
+ ["next_chapter"]=11288,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=750438,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=247645,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=73651,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7439,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=73651,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=7253,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1128,
+ ["unit"]=0
+ }
+ },
+ [11288]={
+ ["next_chapter"]=11289,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=751665,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=248050,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=74388,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7513,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=74388,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=7253,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1128,
+ ["unit"]=0
+ }
+ },
+ [11289]={
+ ["next_chapter"]=11290,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=752894,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=248455,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=75132,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7588,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=75132,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=7253,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1128,
+ ["unit"]=0
+ }
+ },
+ [11290]={
+ ["next_chapter"]=11291,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=754123,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=248861,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=75883,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7664,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=75883,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=8012,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1129,
+ ["unit"]=0
+ }
+ },
+ [11291]={
+ ["next_chapter"]=11292,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=755354,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=249267,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=76642,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7741,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=76642,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=8012,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1129,
+ ["unit"]=0
+ }
+ },
+ [11292]={
+ ["next_chapter"]=11293,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=756587,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=249674,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=77408,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7818,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=77408,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=8012,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1129,
+ ["unit"]=0
+ }
+ },
+ [11293]={
+ ["next_chapter"]=11294,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=757821,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=250081,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=78182,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7896,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=78182,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=8012,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1129,
+ ["unit"]=0
+ }
+ },
+ [11294]={
+ ["next_chapter"]=11295,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=759056,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=250488,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=78964,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7975,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=78964,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=8012,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1129,
+ ["unit"]=0
+ }
+ },
+ [11295]={
+ ["next_chapter"]=11296,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=760292,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=250897,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=79754,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8055,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=79754,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=8012,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1129,
+ ["unit"]=0
+ }
+ },
+ [11296]={
+ ["next_chapter"]=11297,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=761530,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=251305,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=80551,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8136,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=80551,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=8012,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1129,
+ ["unit"]=0
+ }
+ },
+ [11297]={
+ ["next_chapter"]=11298,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=762770,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=251714,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=81357,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8217,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=81357,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=8012,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1129,
+ ["unit"]=0
+ }
+ },
+ [11298]={
+ ["next_chapter"]=11299,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=764010,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=252123,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=82170,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8299,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=82170,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=8012,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1129,
+ ["unit"]=0
+ }
+ },
+ [11299]={
+ ["next_chapter"]=11300,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=765253,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=252533,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=82992,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8382,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=82992,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=8012,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1129,
+ ["unit"]=0
+ }
+ },
+ [11300]={
+ ["next_chapter"]=11301,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=766496,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=252944,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=83822,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8466,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=83822,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=8850,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1130,
+ ["unit"]=0
+ }
+ },
+ [11301]={
+ ["next_chapter"]=11302,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=767741,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=253354,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=84660,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8551,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=84660,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=8850,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1130,
+ ["unit"]=0
+ }
+ },
+ [11302]={
+ ["next_chapter"]=11303,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=768987,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=253766,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=85507,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8636,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=85507,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=8850,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1130,
+ ["unit"]=0
+ }
+ },
+ [11303]={
+ ["next_chapter"]=11304,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=770235,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=254177,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=86362,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8723,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=86362,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=8850,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1130,
+ ["unit"]=0
+ }
+ },
+ [11304]={
+ ["next_chapter"]=11305,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=771484,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=254590,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=87226,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8810,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=87226,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=8850,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1130,
+ ["unit"]=0
+ }
+ },
+ [11305]={
+ ["next_chapter"]=11306,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=772734,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=255002,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=88098,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8898,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=88098,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=8850,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1130,
+ ["unit"]=0
+ }
+ },
+ [11306]={
+ ["next_chapter"]=11307,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=773986,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=255415,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=88979,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8987,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=88979,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=8850,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1130,
+ ["unit"]=0
+ }
+ },
+ [11307]={
+ ["next_chapter"]=11308,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=775239,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=255829,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=89869,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9077,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=89869,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=8850,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1130,
+ ["unit"]=0
+ }
+ },
+ [11308]={
+ ["next_chapter"]=11309,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=776494,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=256243,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=90767,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9167,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=90767,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=8850,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1130,
+ ["unit"]=0
+ }
+ },
+ [11309]={
+ ["next_chapter"]=11310,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=777750,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=256657,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=91675,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9259,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=91675,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=8850,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1130,
+ ["unit"]=0
+ }
+ },
+ [11310]={
+ ["next_chapter"]=11311,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=779007,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=257072,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=92592,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9352,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=92592,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=9776,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1131,
+ ["unit"]=0
+ }
+ },
+ [11311]={
+ ["next_chapter"]=11312,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=780266,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=257488,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=93518,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9445,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=93518,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=9776,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1131,
+ ["unit"]=0
+ }
+ },
+ [11312]={
+ ["next_chapter"]=11313,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=781526,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=257903,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=94453,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9540,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=94453,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=9776,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1131,
+ ["unit"]=0
+ }
+ },
+ [11313]={
+ ["next_chapter"]=11314,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=782787,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=258320,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=95397,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9635,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=95397,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=9776,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1131,
+ ["unit"]=0
+ }
+ },
+ [11314]={
+ ["next_chapter"]=11315,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=784050,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=258737,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=96351,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9731,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=96351,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=9776,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1131,
+ ["unit"]=0
+ }
+ },
+ [11315]={
+ ["next_chapter"]=11316,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=785314,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=259154,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=97315,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9829,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=97315,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=9776,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1131,
+ ["unit"]=0
+ }
+ },
+ [11316]={
+ ["next_chapter"]=11317,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=786580,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=259571,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=98288,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9927,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=98288,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=9776,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1131,
+ ["unit"]=0
+ }
+ },
+ [11317]={
+ ["next_chapter"]=11318,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=787847,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=259990,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=99271,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10026,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=99271,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=9776,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1131,
+ ["unit"]=0
+ }
+ },
+ [11318]={
+ ["next_chapter"]=11319,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=789116,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=260408,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=100263,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10127,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=100263,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=9776,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1131,
+ ["unit"]=0
+ }
+ },
+ [11319]={
+ ["next_chapter"]=11320,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=790385,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=260827,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=101266,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10228,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=101266,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=9776,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1131,
+ ["unit"]=0
+ }
+ },
+ [11320]={
+ ["next_chapter"]=11321,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=791657,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=261247,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=102279,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10330,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=102279,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=10799,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1132,
+ ["unit"]=0
+ }
+ },
+ [11321]={
+ ["next_chapter"]=11322,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=792929,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=261667,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=103302,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10433,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=103302,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=10799,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1132,
+ ["unit"]=0
+ }
+ },
+ [11322]={
+ ["next_chapter"]=11323,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=794203,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=262087,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=104335,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10538,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=104335,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=10799,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1132,
+ ["unit"]=0
+ }
+ },
+ [11323]={
+ ["next_chapter"]=11324,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=795479,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=262508,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=105378,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10643,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=105378,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=10799,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1132,
+ ["unit"]=0
+ }
+ },
+ [11324]={
+ ["next_chapter"]=11325,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=796756,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=262929,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=106432,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10750,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=106432,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=10799,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1132,
+ ["unit"]=0
+ }
+ },
+ [11325]={
+ ["next_chapter"]=11326,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=798034,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=263351,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=107496,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10857,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=107496,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=10799,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1132,
+ ["unit"]=0
+ }
+ },
+ [11326]={
+ ["next_chapter"]=11327,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=799314,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=263774,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=108571,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10966,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=108571,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=10799,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1132,
+ ["unit"]=0
+ }
+ },
+ [11327]={
+ ["next_chapter"]=11328,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=800595,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=264196,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=109657,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11075,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=109657,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=10799,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1132,
+ ["unit"]=0
+ }
+ },
+ [11328]={
+ ["next_chapter"]=11329,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=801877,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=264619,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=110753,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11186,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=110753,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=10799,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1132,
+ ["unit"]=0
+ }
+ },
+ [11329]={
+ ["next_chapter"]=11330,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=803161,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=265043,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=111861,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11298,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=111861,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=10799,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1132,
+ ["unit"]=0
+ }
+ },
+ [11330]={
+ ["next_chapter"]=11331,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=804446,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=265467,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=112979,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11411,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=112979,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=11929,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1133,
+ ["unit"]=0
+ }
+ },
+ [11331]={
+ ["next_chapter"]=11332,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=805733,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=265892,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=114109,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11525,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=114109,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=11929,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1133,
+ ["unit"]=0
+ }
+ },
+ [11332]={
+ ["next_chapter"]=11333,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=807021,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=266317,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=115250,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11640,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=115250,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=11929,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1133,
+ ["unit"]=0
+ }
+ },
+ [11333]={
+ ["next_chapter"]=11334,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=808311,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=266742,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=116403,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11757,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=116403,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=11929,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1133,
+ ["unit"]=0
+ }
+ },
+ [11334]={
+ ["next_chapter"]=11335,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=809601,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=267168,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=117567,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11874,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=117567,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=11929,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1133,
+ ["unit"]=0
+ }
+ },
+ [11335]={
+ ["next_chapter"]=11336,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=810894,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=267595,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=118743,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11993,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=118743,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=11929,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1133,
+ ["unit"]=0
+ }
+ },
+ [11336]={
+ ["next_chapter"]=11337,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=812188,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=268022,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=119930,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12113,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=119930,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=11929,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1133,
+ ["unit"]=0
+ }
+ },
+ [11337]={
+ ["next_chapter"]=11338,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=813483,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=268449,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=121129,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12234,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=121129,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=11929,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1133,
+ ["unit"]=0
+ }
+ },
+ [11338]={
+ ["next_chapter"]=11339,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=814779,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=268877,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=122341,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12356,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=122341,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=11929,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1133,
+ ["unit"]=0
+ }
+ },
+ [11339]={
+ ["next_chapter"]=11340,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=816077,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=269305,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=123564,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12480,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=123564,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=11929,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1133,
+ ["unit"]=0
+ }
+ },
+ [11340]={
+ ["next_chapter"]=11341,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=817377,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=269734,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=124800,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12605,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=124800,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=13177,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1134,
+ ["unit"]=0
+ }
+ },
+ [11341]={
+ ["next_chapter"]=11342,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=818677,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=270164,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=126048,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12731,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=126048,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=13177,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1134,
+ ["unit"]=0
+ }
+ },
+ [11342]={
+ ["next_chapter"]=11343,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=819979,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=270593,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=127308,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12858,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=127308,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=13177,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1134,
+ ["unit"]=0
+ }
+ },
+ [11343]={
+ ["next_chapter"]=11344,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=821283,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=271023,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=128581,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12987,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=128581,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=13177,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1134,
+ ["unit"]=0
+ }
+ },
+ [11344]={
+ ["next_chapter"]=11345,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=822588,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=271454,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=129867,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13117,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=129867,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=13177,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1134,
+ ["unit"]=0
+ }
+ },
+ [11345]={
+ ["next_chapter"]=11346,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=823895,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=271885,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=131166,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13248,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=131166,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=13177,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1134,
+ ["unit"]=0
+ }
+ },
+ [11346]={
+ ["next_chapter"]=11347,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=825202,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=272317,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=132477,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13380,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=132477,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=13177,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1134,
+ ["unit"]=0
+ }
+ },
+ [11347]={
+ ["next_chapter"]=11348,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=826512,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=272749,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=133802,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13514,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=133802,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=13177,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1134,
+ ["unit"]=0
+ }
+ },
+ [11348]={
+ ["next_chapter"]=11349,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=827822,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=273181,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=135140,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13649,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=135140,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=13177,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1134,
+ ["unit"]=0
+ }
+ },
+ [11349]={
+ ["next_chapter"]=11350,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=829134,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=273614,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=136491,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13786,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=136491,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=13177,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1134,
+ ["unit"]=0
+ }
+ },
+ [11350]={
+ ["next_chapter"]=11351,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=830448,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=274048,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=137856,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13923,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=137856,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=14555,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1135,
+ ["unit"]=0
+ }
+ },
+ [11351]={
+ ["next_chapter"]=11352,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=831763,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=274482,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=139235,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14063,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=139235,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=14555,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1135,
+ ["unit"]=0
+ }
+ },
+ [11352]={
+ ["next_chapter"]=11353,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=833079,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=274916,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=140627,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14203,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=140627,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=14555,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1135,
+ ["unit"]=0
+ }
+ },
+ [11353]={
+ ["next_chapter"]=11354,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=834397,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=275351,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=142034,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14345,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=142034,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=14555,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1135,
+ ["unit"]=0
+ }
+ },
+ [11354]={
+ ["next_chapter"]=11355,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=835716,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=275786,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=143454,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14489,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=143454,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=14555,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1135,
+ ["unit"]=0
+ }
+ },
+ [11355]={
+ ["next_chapter"]=11356,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=837037,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=276222,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=144888,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14634,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=144888,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=14555,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1135,
+ ["unit"]=0
+ }
+ },
+ [11356]={
+ ["next_chapter"]=11357,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=838359,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=276658,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=146337,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14780,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=146337,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=14555,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1135,
+ ["unit"]=0
+ }
+ },
+ [11357]={
+ ["next_chapter"]=11358,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=839683,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=277095,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=147801,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14928,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=147801,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=14555,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1135,
+ ["unit"]=0
+ }
+ },
+ [11358]={
+ ["next_chapter"]=11359,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=841007,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=277532,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=149279,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15077,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=149279,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=14555,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1135,
+ ["unit"]=0
+ }
+ },
+ [11359]={
+ ["next_chapter"]=11360,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=842334,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=277970,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=150771,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15228,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=150771,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=14555,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1135,
+ ["unit"]=0
+ }
+ },
+ [11360]={
+ ["next_chapter"]=11361,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=843662,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=278408,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=152279,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15380,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=152279,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=16078,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1136,
+ ["unit"]=0
+ }
+ },
+ [11361]={
+ ["next_chapter"]=11362,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=844991,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=278847,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=153802,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15534,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=153802,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=16078,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1136,
+ ["unit"]=0
+ }
+ },
+ [11362]={
+ ["next_chapter"]=11363,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=846321,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=279286,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=155340,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15689,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=155340,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=16078,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1136,
+ ["unit"]=0
+ }
+ },
+ [11363]={
+ ["next_chapter"]=11364,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=847653,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=279726,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=156893,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15846,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=156893,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=16078,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1136,
+ ["unit"]=0
+ }
+ },
+ [11364]={
+ ["next_chapter"]=11365,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=848987,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=280166,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=158462,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16005,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=158462,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=16078,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1136,
+ ["unit"]=0
+ }
+ },
+ [11365]={
+ ["next_chapter"]=11366,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=850322,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=280606,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=160047,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16165,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=160047,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=16078,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1136,
+ ["unit"]=0
+ }
+ },
+ [11366]={
+ ["next_chapter"]=11367,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=851658,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=281047,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=161647,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16326,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=161647,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=16078,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1136,
+ ["unit"]=0
+ }
+ },
+ [11367]={
+ ["next_chapter"]=11368,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=852996,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=281489,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=163264,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16490,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=163264,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=16078,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1136,
+ ["unit"]=0
+ }
+ },
+ [11368]={
+ ["next_chapter"]=11369,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=854335,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=281931,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=164897,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16655,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=164897,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=16078,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1136,
+ ["unit"]=0
+ }
+ },
+ [11369]={
+ ["next_chapter"]=11370,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=855676,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=282373,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=166546,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16821,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=166546,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=16078,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1136,
+ ["unit"]=0
+ }
+ },
+ [11370]={
+ ["next_chapter"]=11371,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=857018,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=282816,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=168211,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16989,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=168211,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=17760,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1137,
+ ["unit"]=0
+ }
+ },
+ [11371]={
+ ["next_chapter"]=11372,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=858362,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=283259,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=169893,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17159,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=169893,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=17760,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1137,
+ ["unit"]=0
+ }
+ },
+ [11372]={
+ ["next_chapter"]=11373,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=859706,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=283703,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=171592,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17331,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=171592,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=17760,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1137,
+ ["unit"]=0
+ }
+ },
+ [11373]={
+ ["next_chapter"]=11374,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=861053,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=284147,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=173308,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17504,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=173308,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=17760,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1137,
+ ["unit"]=0
+ }
+ },
+ [11374]={
+ ["next_chapter"]=11375,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=862401,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=284592,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=175041,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17679,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=175041,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=17760,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1137,
+ ["unit"]=0
+ }
+ },
+ [11375]={
+ ["next_chapter"]=11376,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=863750,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=285038,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=176791,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17856,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=176791,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=17760,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1137,
+ ["unit"]=0
+ }
+ },
+ [11376]={
+ ["next_chapter"]=11377,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=865101,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=285483,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=178559,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18034,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=178559,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=17760,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1137,
+ ["unit"]=0
+ }
+ },
+ [11377]={
+ ["next_chapter"]=11378,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=866453,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=285929,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=180345,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18215,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=180345,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=17760,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1137,
+ ["unit"]=0
+ }
+ },
+ [11378]={
+ ["next_chapter"]=11379,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=867806,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=286376,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=182148,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18397,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=182148,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=17760,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1137,
+ ["unit"]=0
+ }
+ },
+ [11379]={
+ ["next_chapter"]=11380,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=869162,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=286823,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=183970,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18581,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=183970,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=17760,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1137,
+ ["unit"]=0
+ }
+ },
+ [11380]={
+ ["next_chapter"]=11381,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=870518,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=287271,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=185810,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18767,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=185810,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=19618,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1138,
+ ["unit"]=0
+ }
+ },
+ [11381]={
+ ["next_chapter"]=11382,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=871876,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=287719,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=187668,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18954,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=187668,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=19618,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1138,
+ ["unit"]=0
+ }
+ },
+ [11382]={
+ ["next_chapter"]=11383,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=873235,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=288168,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=189544,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19144,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=189544,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=19618,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1138,
+ ["unit"]=0
+ }
+ },
+ [11383]={
+ ["next_chapter"]=11384,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=874596,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=288617,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=191440,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19335,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=191440,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=19618,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1138,
+ ["unit"]=0
+ }
+ },
+ [11384]={
+ ["next_chapter"]=11385,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=875958,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=289066,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=193354,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19529,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=193354,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=19618,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1138,
+ ["unit"]=0
+ }
+ },
+ [11385]={
+ ["next_chapter"]=11386,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=877322,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=289516,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=195288,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19724,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=195288,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=19618,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1138,
+ ["unit"]=0
+ }
+ },
+ [11386]={
+ ["next_chapter"]=11387,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=878687,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=289967,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=197241,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19921,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=197241,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=19618,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1138,
+ ["unit"]=0
+ }
+ },
+ [11387]={
+ ["next_chapter"]=11388,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=880054,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=290418,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=199213,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20121,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=199213,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=19618,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1138,
+ ["unit"]=0
+ }
+ },
+ [11388]={
+ ["next_chapter"]=11389,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=881422,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=290869,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=201205,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20322,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=201205,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=19618,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1138,
+ ["unit"]=0
+ }
+ },
+ [11389]={
+ ["next_chapter"]=11390,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=882791,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=291321,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=203217,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20525,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=203217,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=19618,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1138,
+ ["unit"]=0
+ }
+ },
+ [11390]={
+ ["next_chapter"]=11391,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=884162,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=291774,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=205249,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20730,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=205249,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=21671,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1139,
+ ["unit"]=0
+ }
+ },
+ [11391]={
+ ["next_chapter"]=11392,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=885535,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=292226,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=207302,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20937,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=207302,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=21671,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1139,
+ ["unit"]=0
+ }
+ },
+ [11392]={
+ ["next_chapter"]=11393,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=886909,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=292680,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=209375,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21147,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=209375,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=21671,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1139,
+ ["unit"]=0
+ }
+ },
+ [11393]={
+ ["next_chapter"]=11394,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=888284,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=293134,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=211469,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21358,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=211469,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=21671,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1139,
+ ["unit"]=0
+ }
+ },
+ [11394]={
+ ["next_chapter"]=11395,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=889661,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=293588,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=213583,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21572,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=213583,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=21671,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1139,
+ ["unit"]=0
+ }
+ },
+ [11395]={
+ ["next_chapter"]=11396,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=891039,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=294043,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=215719,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21788,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=215719,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=21671,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1139,
+ ["unit"]=0
+ }
+ },
+ [11396]={
+ ["next_chapter"]=11397,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=892419,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=294498,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=217876,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22006,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=217876,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=21671,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1139,
+ ["unit"]=0
+ }
+ },
+ [11397]={
+ ["next_chapter"]=11398,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=893800,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=294954,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=220055,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22226,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=220055,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=21671,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1139,
+ ["unit"]=0
+ }
+ },
+ [11398]={
+ ["next_chapter"]=11399,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=895182,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=295410,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=222256,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22448,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=222256,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=21671,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1139,
+ ["unit"]=0
+ }
+ },
+ [11399]={
+ ["next_chapter"]=11400,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=896566,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=295867,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=224478,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22672,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=224478,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=21671,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1139,
+ ["unit"]=0
+ }
+ },
+ [11400]={
+ ["next_chapter"]=11401,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=897952,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=296324,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=226723,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22899,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=226723,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=23938,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1140,
+ ["unit"]=0
+ }
+ },
+ [11401]={
+ ["next_chapter"]=11402,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=899339,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=296782,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=228990,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23128,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=228990,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=23938,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1140,
+ ["unit"]=0
+ }
+ },
+ [11402]={
+ ["next_chapter"]=11403,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=900727,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=297240,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=231280,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23359,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=231280,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=23938,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1140,
+ ["unit"]=0
+ }
+ },
+ [11403]={
+ ["next_chapter"]=11404,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=902117,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=297699,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=233593,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23593,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=233593,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=23938,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1140,
+ ["unit"]=0
+ }
+ },
+ [11404]={
+ ["next_chapter"]=11405,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=903509,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=298158,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=235929,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23829,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=235929,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=23938,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1140,
+ ["unit"]=0
+ }
+ },
+ [11405]={
+ ["next_chapter"]=11406,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=904901,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=298617,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=238288,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24067,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=238288,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=23938,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1140,
+ ["unit"]=0
+ }
+ },
+ [11406]={
+ ["next_chapter"]=11407,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=906296,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=299078,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=240671,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24308,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=240671,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=23938,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1140,
+ ["unit"]=0
+ }
+ },
+ [11407]={
+ ["next_chapter"]=11408,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=907691,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=299538,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=243078,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24551,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=243078,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=23938,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1140,
+ ["unit"]=0
+ }
+ },
+ [11408]={
+ ["next_chapter"]=11409,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=909089,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=299999,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=245508,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24796,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=245508,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=23938,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1140,
+ ["unit"]=0
+ }
+ },
+ [11409]={
+ ["next_chapter"]=11410,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=910487,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=300461,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=247964,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25044,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=247964,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=23938,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1140,
+ ["unit"]=0
+ }
+ },
+ [11410]={
+ ["next_chapter"]=11411,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=911887,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=300923,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=250443,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25295,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=250443,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=26442,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1141,
+ ["unit"]=0
+ }
+ },
+ [11411]={
+ ["next_chapter"]=11412,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=913289,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=301385,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=252948,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25548,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=252948,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=26442,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1141,
+ ["unit"]=0
+ }
+ },
+ [11412]={
+ ["next_chapter"]=11413,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=914692,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=301848,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=255477,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25803,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=255477,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=26442,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1141,
+ ["unit"]=0
+ }
+ },
+ [11413]={
+ ["next_chapter"]=11414,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=916097,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=302312,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=258032,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26061,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=258032,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=26442,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1141,
+ ["unit"]=0
+ }
+ },
+ [11414]={
+ ["next_chapter"]=11415,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=917503,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=302776,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=260612,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26322,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=260612,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=26442,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1141,
+ ["unit"]=0
+ }
+ },
+ [11415]={
+ ["next_chapter"]=11416,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=918910,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=303240,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=263218,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26585,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=263218,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=26442,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1141,
+ ["unit"]=0
+ }
+ },
+ [11416]={
+ ["next_chapter"]=11417,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=920319,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=303705,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=265851,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26851,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=265851,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=26442,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1141,
+ ["unit"]=0
+ }
+ },
+ [11417]={
+ ["next_chapter"]=11418,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=921730,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=304171,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=268509,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27119,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=268509,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=26442,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1141,
+ ["unit"]=0
+ }
+ },
+ [11418]={
+ ["next_chapter"]=11419,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=923141,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=304637,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=271194,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27391,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=271194,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=26442,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1141,
+ ["unit"]=0
+ }
+ },
+ [11419]={
+ ["next_chapter"]=11420,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=924555,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=305103,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=273906,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27665,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=273906,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=26442,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1141,
+ ["unit"]=0
+ }
+ },
+ [11420]={
+ ["next_chapter"]=11421,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=925970,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=305570,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=276645,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27941,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=276645,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=29209,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1142,
+ ["unit"]=0
+ }
+ },
+ [11421]={
+ ["next_chapter"]=11422,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=927386,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=306037,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=279412,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28221,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=279412,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=29209,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1142,
+ ["unit"]=0
+ }
+ },
+ [11422]={
+ ["next_chapter"]=11423,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=928804,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=306505,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=282206,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28503,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=282206,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=29209,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1142,
+ ["unit"]=0
+ }
+ },
+ [11423]={
+ ["next_chapter"]=11424,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=930223,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=306974,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=285028,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28788,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=285028,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=29209,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1142,
+ ["unit"]=0
+ }
+ },
+ [11424]={
+ ["next_chapter"]=11425,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=931644,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=307442,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=287878,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29076,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=287878,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=29209,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1142,
+ ["unit"]=0
+ }
+ },
+ [11425]={
+ ["next_chapter"]=11426,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=933066,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=307912,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=290757,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29366,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=290757,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=29209,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1142,
+ ["unit"]=0
+ }
+ },
+ [11426]={
+ ["next_chapter"]=11427,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=934490,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=308382,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=293664,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29660,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=293664,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=29209,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1142,
+ ["unit"]=0
+ }
+ },
+ [11427]={
+ ["next_chapter"]=11428,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=935915,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=308852,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=296601,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29957,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=296601,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=29209,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1142,
+ ["unit"]=0
+ }
+ },
+ [11428]={
+ ["next_chapter"]=11429,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=937342,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=309323,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=299567,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30256,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=299567,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=29209,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1142,
+ ["unit"]=0
+ }
+ },
+ [11429]={
+ ["next_chapter"]=11430,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=938770,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=309794,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=302563,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30559,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=302563,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=29209,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1142,
+ ["unit"]=0
+ }
+ },
+ [11430]={
+ ["next_chapter"]=11431,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=940199,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=310266,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=305588,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30864,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=305588,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=32265,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1143,
+ ["unit"]=0
+ }
+ },
+ [11431]={
+ ["next_chapter"]=11432,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=941630,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=310738,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=308644,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31173,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=308644,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=32265,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1143,
+ ["unit"]=0
+ }
+ },
+ [11432]={
+ ["next_chapter"]=11433,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=943063,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=311211,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=311731,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31485,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=311731,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=32265,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1143,
+ ["unit"]=0
+ }
+ },
+ [11433]={
+ ["next_chapter"]=11434,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=944497,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=311684,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=314848,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31800,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=314848,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=32265,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1143,
+ ["unit"]=0
+ }
+ },
+ [11434]={
+ ["next_chapter"]=11435,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=945933,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=312158,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=317996,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32118,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=317996,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=32265,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1143,
+ ["unit"]=0
+ }
+ },
+ [11435]={
+ ["next_chapter"]=11436,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=947370,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=312632,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=321176,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32439,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=321176,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=32265,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1143,
+ ["unit"]=0
+ }
+ },
+ [11436]={
+ ["next_chapter"]=11437,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=948808,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=313107,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=324388,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32763,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=324388,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=32265,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1143,
+ ["unit"]=0
+ }
+ },
+ [11437]={
+ ["next_chapter"]=11438,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=950248,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=313582,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=327632,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33091,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=327632,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=32265,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1143,
+ ["unit"]=0
+ }
+ },
+ [11438]={
+ ["next_chapter"]=11439,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=951690,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=314058,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=330908,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33422,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=330908,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=32265,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1143,
+ ["unit"]=0
+ }
+ },
+ [11439]={
+ ["next_chapter"]=11440,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=953133,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=314534,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=334217,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33756,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=334217,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=32265,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1143,
+ ["unit"]=0
+ }
+ },
+ [11440]={
+ ["next_chapter"]=11441,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=954577,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=315010,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=337560,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34094,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=337560,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=35640,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1144,
+ ["unit"]=0
+ }
+ },
+ [11441]={
+ ["next_chapter"]=11442,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=956023,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=315488,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=340935,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34434,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=340935,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=35640,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1144,
+ ["unit"]=0
+ }
+ },
+ [11442]={
+ ["next_chapter"]=11443,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=957471,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=315965,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=344345,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34779,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=344345,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=35640,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1144,
+ ["unit"]=0
+ }
+ },
+ [11443]={
+ ["next_chapter"]=11444,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=958920,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=316443,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=347788,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35127,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=347788,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=35640,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1144,
+ ["unit"]=0
+ }
+ },
+ [11444]={
+ ["next_chapter"]=11445,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=960370,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=316922,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=351266,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35478,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=351266,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=35640,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1144,
+ ["unit"]=0
+ }
+ },
+ [11445]={
+ ["next_chapter"]=11446,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=961822,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=317401,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=354779,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35833,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=354779,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=35640,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1144,
+ ["unit"]=0
+ }
+ },
+ [11446]={
+ ["next_chapter"]=11447,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=963275,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=317881,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=358326,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36191,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=358326,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=35640,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1144,
+ ["unit"]=0
+ }
+ },
+ [11447]={
+ ["next_chapter"]=11448,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=964730,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=318361,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=361910,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36553,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=361910,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=35640,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1144,
+ ["unit"]=0
+ }
+ },
+ [11448]={
+ ["next_chapter"]=11449,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=966187,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=318842,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=365529,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36918,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=365529,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=35640,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1144,
+ ["unit"]=0
+ }
+ },
+ [11449]={
+ ["next_chapter"]=11450,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=967645,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=319323,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=369184,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37288,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=369184,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=35640,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1144,
+ ["unit"]=0
+ }
+ },
+ [11450]={
+ ["next_chapter"]=11451,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=969104,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=319804,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=372876,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37660,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=372876,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=39369,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1145,
+ ["unit"]=0
+ }
+ },
+ [11451]={
+ ["next_chapter"]=11452,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=970565,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=320286,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=376605,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=38037,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=376605,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=39369,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1145,
+ ["unit"]=0
+ }
+ },
+ [11452]={
+ ["next_chapter"]=11453,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=972027,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=320769,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=380371,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=38417,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=380371,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=39369,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1145,
+ ["unit"]=0
+ }
+ },
+ [11453]={
+ ["next_chapter"]=11454,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=973491,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=321252,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=384174,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=38802,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=384174,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=39369,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1145,
+ ["unit"]=0
+ }
+ },
+ [11454]={
+ ["next_chapter"]=11455,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=974957,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=321736,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=388016,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39190,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=388016,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=39369,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1145,
+ ["unit"]=0
+ }
+ },
+ [11455]={
+ ["next_chapter"]=11456,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=976424,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=322220,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=391896,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39582,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=391896,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=39369,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1145,
+ ["unit"]=0
+ }
+ },
+ [11456]={
+ ["next_chapter"]=11457,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=977892,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=322704,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=395815,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39977,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=395815,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=39369,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1145,
+ ["unit"]=0
+ }
+ },
+ [11457]={
+ ["next_chapter"]=11458,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=979362,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=323189,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=399773,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=40377,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=399773,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=39369,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1145,
+ ["unit"]=0
+ }
+ },
+ [11458]={
+ ["next_chapter"]=11459,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=980833,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=323675,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=403771,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=40781,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=403771,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=39369,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1145,
+ ["unit"]=0
+ }
+ },
+ [11459]={
+ ["next_chapter"]=11460,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=982306,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=324161,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=407809,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41189,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=407809,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=39369,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1145,
+ ["unit"]=0
+ }
+ },
+ [11460]={
+ ["next_chapter"]=11461,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=983781,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=324648,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=411887,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41601,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=411887,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=43488,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1146,
+ ["unit"]=0
+ }
+ },
+ [11461]={
+ ["next_chapter"]=11462,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=985257,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=325135,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=416006,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=42017,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=416006,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=43488,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1146,
+ ["unit"]=0
+ }
+ },
+ [11462]={
+ ["next_chapter"]=11463,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=986734,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=325622,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=420166,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=42437,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=420166,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=43488,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1146,
+ ["unit"]=0
+ }
+ },
+ [11463]={
+ ["next_chapter"]=11464,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=988213,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=326110,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=424367,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=42861,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=424367,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=43488,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1146,
+ ["unit"]=0
+ }
+ },
+ [11464]={
+ ["next_chapter"]=11465,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=989693,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=326599,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=428611,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=43290,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=428611,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=43488,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1146,
+ ["unit"]=0
+ }
+ },
+ [11465]={
+ ["next_chapter"]=11466,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=991175,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=327088,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=432897,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=43723,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=432897,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=43488,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1146,
+ ["unit"]=0
+ }
+ },
+ [11466]={
+ ["next_chapter"]=11467,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=992659,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=327577,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=437226,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=44160,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=437226,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=43488,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1146,
+ ["unit"]=0
+ }
+ },
+ [11467]={
+ ["next_chapter"]=11468,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=994144,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=328067,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=441598,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=44601,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=441598,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=43488,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1146,
+ ["unit"]=0
+ }
+ },
+ [11468]={
+ ["next_chapter"]=11469,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=995630,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=328558,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=446014,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=45047,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=446014,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=43488,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1146,
+ ["unit"]=0
+ }
+ },
+ [11469]={
+ ["next_chapter"]=11470,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=997118,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=329049,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=450475,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=45498,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=450475,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=43488,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1146,
+ ["unit"]=0
+ }
+ },
+ [11470]={
+ ["next_chapter"]=11471,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=998608,
+ ["unit"]=8
+ },
+ ["hp_coefficient"]={
+ ["value"]=329541,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=454979,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=45953,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=454979,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=48038,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1147,
+ ["unit"]=0
+ }
+ },
+ [11471]={
+ ["next_chapter"]=11472,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1000,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=330033,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=459529,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=46412,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=459529,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=48038,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1147,
+ ["unit"]=0
+ }
+ },
+ [11472]={
+ ["next_chapter"]=11473,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1002,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=330525,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=464124,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=46877,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=464124,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=48038,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1147,
+ ["unit"]=0
+ }
+ },
+ [11473]={
+ ["next_chapter"]=11474,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1003,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=331018,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=468766,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=47345,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=468766,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=48038,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1147,
+ ["unit"]=0
+ }
+ },
+ [11474]={
+ ["next_chapter"]=11475,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1005,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=331512,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=473453,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=47819,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=473453,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=48038,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1147,
+ ["unit"]=0
+ }
+ },
+ [11475]={
+ ["next_chapter"]=11476,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1006,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=332006,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=478188,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=48297,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=478188,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=48038,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1147,
+ ["unit"]=0
+ }
+ },
+ [11476]={
+ ["next_chapter"]=11477,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1008,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=332500,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=482970,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=48780,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=482970,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=48038,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1147,
+ ["unit"]=0
+ }
+ },
+ [11477]={
+ ["next_chapter"]=11478,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1009,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=332995,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=487799,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=49268,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=487799,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=48038,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1147,
+ ["unit"]=0
+ }
+ },
+ [11478]={
+ ["next_chapter"]=11479,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1011,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=333491,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=492677,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=49760,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=492677,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=48038,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1147,
+ ["unit"]=0
+ }
+ },
+ [11479]={
+ ["next_chapter"]=11480,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1012,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=333987,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=497604,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=50258,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=497604,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=48038,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1147,
+ ["unit"]=0
+ }
+ },
+ [11480]={
+ ["next_chapter"]=11481,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=1014,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=334483,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=502580,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=50761,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=502580,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=53063,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1148,
+ ["unit"]=0
+ }
+ },
+ [11481]={
+ ["next_chapter"]=11482,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1015,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=334980,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=507606,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=51268,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=507606,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=53063,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1148,
+ ["unit"]=0
+ }
+ },
+ [11482]={
+ ["next_chapter"]=11483,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1017,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=335478,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=512682,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=51781,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=512682,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=53063,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1148,
+ ["unit"]=0
+ }
+ },
+ [11483]={
+ ["next_chapter"]=11484,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1018,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=335976,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=517809,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=52299,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=517809,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=53063,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1148,
+ ["unit"]=0
+ }
+ },
+ [11484]={
+ ["next_chapter"]=11485,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1020,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=336475,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=522987,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=52822,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=522987,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=53063,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1148,
+ ["unit"]=0
+ }
+ },
+ [11485]={
+ ["next_chapter"]=11486,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1021,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=336974,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=528217,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=53350,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=528217,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=53063,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1148,
+ ["unit"]=0
+ }
+ },
+ [11486]={
+ ["next_chapter"]=11487,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1023,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=337473,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=533499,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=53883,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=533499,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=53063,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1148,
+ ["unit"]=0
+ }
+ },
+ [11487]={
+ ["next_chapter"]=11488,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1024,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=337973,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=538834,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=54422,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=538834,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=53063,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1148,
+ ["unit"]=0
+ }
+ },
+ [11488]={
+ ["next_chapter"]=11489,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1026,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=338474,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=544222,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=54966,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=544222,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=53063,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1148,
+ ["unit"]=0
+ }
+ },
+ [11489]={
+ ["next_chapter"]=11490,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1027,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=338975,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=549665,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=55516,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=549665,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=53063,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1148,
+ ["unit"]=0
+ }
+ },
+ [11490]={
+ ["next_chapter"]=11491,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=1029,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=339477,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=555161,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=56071,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=555161,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=58615,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1149,
+ ["unit"]=0
+ }
+ },
+ [11491]={
+ ["next_chapter"]=11492,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1030,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=339979,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=560713,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=56632,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=560713,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=58615,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1149,
+ ["unit"]=0
+ }
+ },
+ [11492]={
+ ["next_chapter"]=11493,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1032,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=340481,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=566320,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=57198,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=566320,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=58615,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1149,
+ ["unit"]=0
+ }
+ },
+ [11493]={
+ ["next_chapter"]=11494,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1033,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=340984,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=571983,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=57770,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=571983,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=58615,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1149,
+ ["unit"]=0
+ }
+ },
+ [11494]={
+ ["next_chapter"]=11495,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1035,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=341488,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=577703,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=58348,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=577703,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=58615,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1149,
+ ["unit"]=0
+ }
+ },
+ [11495]={
+ ["next_chapter"]=11496,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1036,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=341992,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=583480,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=58931,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=583480,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=58615,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1149,
+ ["unit"]=0
+ }
+ },
+ [11496]={
+ ["next_chapter"]=11497,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1038,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=342497,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=589315,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=59521,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=589315,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=58615,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1149,
+ ["unit"]=0
+ }
+ },
+ [11497]={
+ ["next_chapter"]=11498,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1039,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=343002,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=595208,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=60116,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=595208,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=58615,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1149,
+ ["unit"]=0
+ }
+ },
+ [11498]={
+ ["next_chapter"]=11499,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1041,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=343507,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=601160,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=60717,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=601160,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=58615,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1149,
+ ["unit"]=0
+ }
+ },
+ [11499]={
+ ["next_chapter"]=11500,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1042,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=344013,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=607172,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=61324,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=607172,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=58615,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1149,
+ ["unit"]=0
+ }
+ },
+ [11500]={
+ ["next_chapter"]=11501,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=1044,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=344520,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=613243,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=61938,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=613243,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=64748,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1150,
+ ["unit"]=0
+ }
+ },
+ [11501]={
+ ["next_chapter"]=11502,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1046,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=345027,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=619376,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=62557,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=619376,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=64748,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1150,
+ ["unit"]=0
+ }
+ },
+ [11502]={
+ ["next_chapter"]=11503,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1047,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=345535,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=625570,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=63183,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=625570,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=64748,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1150,
+ ["unit"]=0
+ }
+ },
+ [11503]={
+ ["next_chapter"]=11504,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1049,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=346043,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=631825,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=63814,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=631825,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=64748,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1150,
+ ["unit"]=0
+ }
+ },
+ [11504]={
+ ["next_chapter"]=11505,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1050,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=346552,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=638144,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=64452,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=638144,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=64748,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1150,
+ ["unit"]=0
+ }
+ },
+ [11505]={
+ ["next_chapter"]=11506,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1052,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=347061,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=644525,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=65097,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=644525,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=64748,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1150,
+ ["unit"]=0
+ }
+ },
+ [11506]={
+ ["next_chapter"]=11507,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1053,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=347570,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=650970,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=65748,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=650970,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=64748,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1150,
+ ["unit"]=0
+ }
+ },
+ [11507]={
+ ["next_chapter"]=11508,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1055,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=348081,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=657480,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=66405,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=657480,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=64748,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1150,
+ ["unit"]=0
+ }
+ },
+ [11508]={
+ ["next_chapter"]=11509,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1056,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=348591,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=664055,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=67070,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=664055,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=64748,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1150,
+ ["unit"]=0
+ }
+ },
+ [11509]={
+ ["next_chapter"]=11510,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1058,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=349102,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=670695,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=67740,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=670695,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=64748,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1150,
+ ["unit"]=0
+ }
+ },
+ [11510]={
+ ["next_chapter"]=11511,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=1059,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=349614,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=677402,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=68418,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=677402,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=71522,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1151,
+ ["unit"]=0
+ }
+ },
+ [11511]={
+ ["next_chapter"]=11512,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1061,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=350126,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=684176,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=69102,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=684176,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=71522,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1151,
+ ["unit"]=0
+ }
+ },
+ [11512]={
+ ["next_chapter"]=11513,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1063,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=350639,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=691018,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=69793,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=691018,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=71522,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1151,
+ ["unit"]=0
+ }
+ },
+ [11513]={
+ ["next_chapter"]=11514,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1064,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=351152,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=697928,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=70491,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=697928,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=71522,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1151,
+ ["unit"]=0
+ }
+ },
+ [11514]={
+ ["next_chapter"]=11515,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1066,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=351666,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=704907,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=71196,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=704907,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=71522,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1151,
+ ["unit"]=0
+ }
+ },
+ [11515]={
+ ["next_chapter"]=11516,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1067,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=352180,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=711957,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=71908,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=711957,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=71522,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1151,
+ ["unit"]=0
+ }
+ },
+ [11516]={
+ ["next_chapter"]=11517,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1069,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=352695,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=719076,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=72627,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=719076,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=71522,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1151,
+ ["unit"]=0
+ }
+ },
+ [11517]={
+ ["next_chapter"]=11518,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1070,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=353210,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=726267,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=73353,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=726267,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=71522,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1151,
+ ["unit"]=0
+ }
+ },
+ [11518]={
+ ["next_chapter"]=11519,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1072,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=353726,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=733530,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=74086,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=733530,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=71522,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1151,
+ ["unit"]=0
+ }
+ },
+ [11519]={
+ ["next_chapter"]=11520,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1073,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=354243,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=740865,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=74827,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=740865,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=71522,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1151,
+ ["unit"]=0
+ }
+ },
+ [11520]={
+ ["next_chapter"]=11521,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=1075,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=354759,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=748273,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=75576,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=748273,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=79004,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1152,
+ ["unit"]=0
+ }
+ },
+ [11521]={
+ ["next_chapter"]=11522,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1077,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=355277,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=755756,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=76331,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=755756,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=79004,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1152,
+ ["unit"]=0
+ }
+ },
+ [11522]={
+ ["next_chapter"]=11523,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1078,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=355794,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=763314,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=77095,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=763314,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=79004,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1152,
+ ["unit"]=0
+ }
+ },
+ [11523]={
+ ["next_chapter"]=11524,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1080,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=356313,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=770947,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=77866,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=770947,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=79004,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1152,
+ ["unit"]=0
+ }
+ },
+ [11524]={
+ ["next_chapter"]=11525,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1081,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=356832,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=778656,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=78644,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=778656,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=79004,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1152,
+ ["unit"]=0
+ }
+ },
+ [11525]={
+ ["next_chapter"]=11526,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1083,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=357351,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=786443,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=79431,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=786443,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=79004,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1152,
+ ["unit"]=0
+ }
+ },
+ [11526]={
+ ["next_chapter"]=11527,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1084,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=357871,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=794307,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=80225,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=794307,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=79004,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1152,
+ ["unit"]=0
+ }
+ },
+ [11527]={
+ ["next_chapter"]=11528,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1086,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=358391,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=802250,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=81027,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=802250,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=79004,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1152,
+ ["unit"]=0
+ }
+ },
+ [11528]={
+ ["next_chapter"]=11529,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1088,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=358912,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=810273,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=81838,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=810273,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=79004,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1152,
+ ["unit"]=0
+ }
+ },
+ [11529]={
+ ["next_chapter"]=11530,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1089,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=359434,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=818376,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=82656,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=818376,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=79004,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1152,
+ ["unit"]=0
+ }
+ },
+ [11530]={
+ ["next_chapter"]=11531,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=1091,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=359956,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=826559,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=83483,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=826559,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=87270,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1153,
+ ["unit"]=0
+ }
+ },
+ [11531]={
+ ["next_chapter"]=11532,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1092,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=360478,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=834825,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=84317,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=834825,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=87270,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1153,
+ ["unit"]=0
+ }
+ },
+ [11532]={
+ ["next_chapter"]=11533,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1094,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=361001,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=843173,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=85161,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=843173,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=87270,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1153,
+ ["unit"]=0
+ }
+ },
+ [11533]={
+ ["next_chapter"]=11534,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1096,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=361525,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=851605,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=86012,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=851605,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=87270,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1153,
+ ["unit"]=0
+ }
+ },
+ [11534]={
+ ["next_chapter"]=11535,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1097,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=362049,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=860121,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=86872,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=860121,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=87270,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1153,
+ ["unit"]=0
+ }
+ },
+ [11535]={
+ ["next_chapter"]=11536,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1099,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=362573,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=868722,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=87741,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=868722,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=87270,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1153,
+ ["unit"]=0
+ }
+ },
+ [11536]={
+ ["next_chapter"]=11537,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1100,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=363098,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=877410,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=88618,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=877410,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=87270,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1153,
+ ["unit"]=0
+ }
+ },
+ [11537]={
+ ["next_chapter"]=11538,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1102,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=363624,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=886184,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=89505,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=886184,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=87270,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1153,
+ ["unit"]=0
+ }
+ },
+ [11538]={
+ ["next_chapter"]=11539,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1103,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=364150,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=895045,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=90400,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=895045,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=87270,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1153,
+ ["unit"]=0
+ }
+ },
+ [11539]={
+ ["next_chapter"]=11540,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1105,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=364676,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=903996,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=91304,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=903996,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=87270,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1153,
+ ["unit"]=0
+ }
+ },
+ [11540]={
+ ["next_chapter"]=11541,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=1107,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=365203,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=913036,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=92217,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=913036,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=96400,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1154,
+ ["unit"]=0
+ }
+ },
+ [11541]={
+ ["next_chapter"]=11542,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1108,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=365731,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=922166,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=93139,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=922166,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=96400,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1154,
+ ["unit"]=0
+ }
+ },
+ [11542]={
+ ["next_chapter"]=11543,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1110,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=366259,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=931388,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=94070,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=931388,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=96400,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1154,
+ ["unit"]=0
+ }
+ },
+ [11543]={
+ ["next_chapter"]=11544,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1111,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=366788,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=940702,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=95011,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=940702,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=96400,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1154,
+ ["unit"]=0
+ }
+ },
+ [11544]={
+ ["next_chapter"]=11545,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1113,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=367317,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=950109,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=95961,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=950109,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=96400,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1154,
+ ["unit"]=0
+ }
+ },
+ [11545]={
+ ["next_chapter"]=11546,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1115,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=367847,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=959610,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=96921,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=959610,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=96400,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1154,
+ ["unit"]=0
+ }
+ },
+ [11546]={
+ ["next_chapter"]=11547,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1116,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=368377,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=969206,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=97890,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=969206,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=96400,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1154,
+ ["unit"]=0
+ }
+ },
+ [11547]={
+ ["next_chapter"]=11548,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1118,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=368908,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=978898,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=98869,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=978898,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=96400,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1154,
+ ["unit"]=0
+ }
+ },
+ [11548]={
+ ["next_chapter"]=11549,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1120,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=369439,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=988687,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=99857,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=988687,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=96400,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1154,
+ ["unit"]=0
+ }
+ },
+ [11549]={
+ ["next_chapter"]=11550,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1121,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=369971,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=998574,
+ ["unit"]=15
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=100856,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=998574,
+ ["unit"]=15
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=96400,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1154,
+ ["unit"]=0
+ }
+ },
+ [11550]={
+ ["next_chapter"]=11551,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=1123,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=370503,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1009,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=101865,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1009,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=106486,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1155,
+ ["unit"]=0
+ }
+ },
+ [11551]={
+ ["next_chapter"]=11552,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1124,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=371036,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1019,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=102883,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1019,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=106486,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1155,
+ ["unit"]=0
+ }
+ },
+ [11552]={
+ ["next_chapter"]=11553,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1126,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=371569,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1029,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=103912,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1029,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=106486,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1155,
+ ["unit"]=0
+ }
+ },
+ [11553]={
+ ["next_chapter"]=11554,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1128,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=372103,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1039,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=104951,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1039,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=106486,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1155,
+ ["unit"]=0
+ }
+ },
+ [11554]={
+ ["next_chapter"]=11555,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1129,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=372637,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1050,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=106001,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1050,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=106486,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1155,
+ ["unit"]=0
+ }
+ },
+ [11555]={
+ ["next_chapter"]=11556,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1131,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=373172,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1060,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=107061,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1060,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=106486,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1155,
+ ["unit"]=0
+ }
+ },
+ [11556]={
+ ["next_chapter"]=11557,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1132,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=373707,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1071,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=108131,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1071,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=106486,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1155,
+ ["unit"]=0
+ }
+ },
+ [11557]={
+ ["next_chapter"]=11558,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1134,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=374243,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1081,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=109213,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1081,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=106486,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1155,
+ ["unit"]=0
+ }
+ },
+ [11558]={
+ ["next_chapter"]=11559,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1136,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=374780,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1092,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=110305,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1092,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=106486,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1155,
+ ["unit"]=0
+ }
+ },
+ [11559]={
+ ["next_chapter"]=11560,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1137,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=375317,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1103,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=111408,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1103,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=106486,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1155,
+ ["unit"]=0
+ }
+ },
+ [11560]={
+ ["next_chapter"]=11561,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=1139,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=375854,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1114,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=112522,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1114,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=117627,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1156,
+ ["unit"]=0
+ }
+ },
+ [11561]={
+ ["next_chapter"]=11562,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1141,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=376392,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1125,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=113647,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1125,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=117627,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1156,
+ ["unit"]=0
+ }
+ },
+ [11562]={
+ ["next_chapter"]=11563,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1142,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=376931,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1136,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=114783,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1136,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=117627,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1156,
+ ["unit"]=0
+ }
+ },
+ [11563]={
+ ["next_chapter"]=11564,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1144,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=377470,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1148,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=115931,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1148,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=117627,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1156,
+ ["unit"]=0
+ }
+ },
+ [11564]={
+ ["next_chapter"]=11565,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1145,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=378009,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1159,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=117091,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1159,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=117627,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1156,
+ ["unit"]=0
+ }
+ },
+ [11565]={
+ ["next_chapter"]=11566,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1147,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=378550,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1171,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=118262,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1171,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=117627,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1156,
+ ["unit"]=0
+ }
+ },
+ [11566]={
+ ["next_chapter"]=11567,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1149,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=379090,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1183,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=119444,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1183,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=117627,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1156,
+ ["unit"]=0
+ }
+ },
+ [11567]={
+ ["next_chapter"]=11568,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1150,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=379631,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1194,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=120639,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1194,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=117627,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1156,
+ ["unit"]=0
+ }
+ },
+ [11568]={
+ ["next_chapter"]=11569,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1152,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=380173,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1206,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=121845,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1206,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=117627,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1156,
+ ["unit"]=0
+ }
+ },
+ [11569]={
+ ["next_chapter"]=11570,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1154,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=380715,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1218,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=123063,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1218,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=117627,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1156,
+ ["unit"]=0
+ }
+ },
+ [11570]={
+ ["next_chapter"]=11571,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=1155,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=381258,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1231,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=124294,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1231,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=129933,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1157,
+ ["unit"]=0
+ }
+ },
+ [11571]={
+ ["next_chapter"]=11572,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1157,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=381801,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1243,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=125537,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1243,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=129933,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1157,
+ ["unit"]=0
+ }
+ },
+ [11572]={
+ ["next_chapter"]=11573,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1159,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=382345,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1255,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=126792,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1255,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=129933,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1157,
+ ["unit"]=0
+ }
+ },
+ [11573]={
+ ["next_chapter"]=11574,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1160,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=382889,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1268,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=128060,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1268,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=129933,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1157,
+ ["unit"]=0
+ }
+ },
+ [11574]={
+ ["next_chapter"]=11575,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1162,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=383434,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1281,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=129341,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1281,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=129933,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1157,
+ ["unit"]=0
+ }
+ },
+ [11575]={
+ ["next_chapter"]=11576,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1164,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=383979,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1293,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=130634,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1293,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=129933,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1157,
+ ["unit"]=0
+ }
+ },
+ [11576]={
+ ["next_chapter"]=11577,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1165,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=384525,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1306,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=131941,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1306,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=129933,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1157,
+ ["unit"]=0
+ }
+ },
+ [11577]={
+ ["next_chapter"]=11578,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1167,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=385072,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1319,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=133260,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1319,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=129933,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1157,
+ ["unit"]=0
+ }
+ },
+ [11578]={
+ ["next_chapter"]=11579,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1169,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=385619,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1333,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=134593,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1333,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=129933,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1157,
+ ["unit"]=0
+ }
+ },
+ [11579]={
+ ["next_chapter"]=11580,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1170,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=386166,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1346,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=135939,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1346,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=129933,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1157,
+ ["unit"]=0
+ }
+ },
+ [11580]={
+ ["next_chapter"]=11581,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=1172,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=386714,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1359,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=137298,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1359,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=143527,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1158,
+ ["unit"]=0
+ }
+ },
+ [11581]={
+ ["next_chapter"]=11582,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1174,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=387263,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1373,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=138671,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1373,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=143527,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1158,
+ ["unit"]=0
+ }
+ },
+ [11582]={
+ ["next_chapter"]=11583,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1175,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=387812,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1387,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=140058,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1387,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=143527,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1158,
+ ["unit"]=0
+ }
+ },
+ [11583]={
+ ["next_chapter"]=11584,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1177,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=388361,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1401,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=141458,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1401,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=143527,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1158,
+ ["unit"]=0
+ }
+ },
+ [11584]={
+ ["next_chapter"]=11585,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1179,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=388911,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1415,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=142873,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1415,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=143527,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1158,
+ ["unit"]=0
+ }
+ },
+ [11585]={
+ ["next_chapter"]=11586,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1180,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=389462,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1429,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=144302,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1429,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=143527,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1158,
+ ["unit"]=0
+ }
+ },
+ [11586]={
+ ["next_chapter"]=11587,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1182,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=390013,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1443,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=145745,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1443,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=143527,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1158,
+ ["unit"]=0
+ }
+ },
+ [11587]={
+ ["next_chapter"]=11588,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1184,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=390565,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1457,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=147202,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1457,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=143527,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1158,
+ ["unit"]=0
+ }
+ },
+ [11588]={
+ ["next_chapter"]=11589,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1185,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=391117,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1472,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=148674,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1472,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=143527,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1158,
+ ["unit"]=0
+ }
+ },
+ [11589]={
+ ["next_chapter"]=11590,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1187,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=391670,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1487,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=150161,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1487,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=143527,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1158,
+ ["unit"]=0
+ }
+ },
+ [11590]={
+ ["next_chapter"]=11591,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=1189,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=392223,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1502,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=151662,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1502,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=158543,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1159,
+ ["unit"]=0
+ }
+ },
+ [11591]={
+ ["next_chapter"]=11592,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1190,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=392777,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1517,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=153179,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1517,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=158543,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1159,
+ ["unit"]=0
+ }
+ },
+ [11592]={
+ ["next_chapter"]=11593,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1192,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=393331,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1532,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=154711,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1532,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=158543,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1159,
+ ["unit"]=0
+ }
+ },
+ [11593]={
+ ["next_chapter"]=11594,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1194,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=393886,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1547,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=156258,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1547,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=158543,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1159,
+ ["unit"]=0
+ }
+ },
+ [11594]={
+ ["next_chapter"]=11595,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1195,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=394441,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1563,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=157820,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1563,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=158543,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1159,
+ ["unit"]=0
+ }
+ },
+ [11595]={
+ ["next_chapter"]=11596,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1197,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=394997,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1578,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=159399,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1578,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=158543,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1159,
+ ["unit"]=0
+ }
+ },
+ [11596]={
+ ["next_chapter"]=11597,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1199,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=395554,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1594,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=160993,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1594,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=158543,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1159,
+ ["unit"]=0
+ }
+ },
+ [11597]={
+ ["next_chapter"]=11598,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1200,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=396111,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1610,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=162603,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1610,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=158543,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1159,
+ ["unit"]=0
+ }
+ },
+ [11598]={
+ ["next_chapter"]=11599,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1202,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=396668,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1626,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=164229,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1626,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=158543,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1159,
+ ["unit"]=0
+ }
+ },
+ [11599]={
+ ["next_chapter"]=11600,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1204,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=397226,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1642,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=165871,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1642,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=158543,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1159,
+ ["unit"]=0
+ }
+ },
+ [11600]={
+ ["next_chapter"]=11601,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=1205,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=397785,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1659,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=167530,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1659,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=175130,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1160,
+ ["unit"]=0
+ }
+ },
+ [11601]={
+ ["next_chapter"]=11602,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1207,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=398344,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1675,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=169205,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1675,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=175130,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1160,
+ ["unit"]=0
+ }
+ },
+ [11602]={
+ ["next_chapter"]=11603,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1209,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=398903,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1692,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=170897,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1692,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=175130,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1160,
+ ["unit"]=0
+ }
+ },
+ [11603]={
+ ["next_chapter"]=11604,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1210,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=399464,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1709,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=172606,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1709,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=175130,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1160,
+ ["unit"]=0
+ }
+ },
+ [11604]={
+ ["next_chapter"]=11605,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1212,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=400024,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1726,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=174332,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1726,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=175130,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1160,
+ ["unit"]=0
+ }
+ },
+ [11605]={
+ ["next_chapter"]=11606,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1214,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=400585,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1743,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=176075,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1743,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=175130,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1160,
+ ["unit"]=0
+ }
+ },
+ [11606]={
+ ["next_chapter"]=11607,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1216,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=401147,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1761,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=177836,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1761,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=175130,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1160,
+ ["unit"]=0
+ }
+ },
+ [11607]={
+ ["next_chapter"]=11608,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1217,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=401710,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1778,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=179614,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1778,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=175130,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1160,
+ ["unit"]=0
+ }
+ },
+ [11608]={
+ ["next_chapter"]=11609,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1219,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=402272,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1796,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=181411,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1796,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=175130,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1160,
+ ["unit"]=0
+ }
+ },
+ [11609]={
+ ["next_chapter"]=11610,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1221,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=402836,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1814,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=183225,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1814,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=175130,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1160,
+ ["unit"]=0
+ }
+ },
+ [11610]={
+ ["next_chapter"]=11611,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=1222,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=403400,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1832,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=185057,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1832,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=193452,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1161,
+ ["unit"]=0
+ }
+ },
+ [11611]={
+ ["next_chapter"]=11612,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1224,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=403964,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1851,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=186908,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1851,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=193452,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1161,
+ ["unit"]=0
+ }
+ },
+ [11612]={
+ ["next_chapter"]=11613,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1226,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=404529,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1869,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=188777,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1869,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=193452,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1161,
+ ["unit"]=0
+ }
+ },
+ [11613]={
+ ["next_chapter"]=11614,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1228,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=405095,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1888,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=190664,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1888,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=193452,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1161,
+ ["unit"]=0
+ }
+ },
+ [11614]={
+ ["next_chapter"]=11615,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1229,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=405661,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1907,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=192571,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1907,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=193452,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1161,
+ ["unit"]=0
+ }
+ },
+ [11615]={
+ ["next_chapter"]=11616,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1231,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=406227,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1926,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=194497,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1926,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=193452,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1161,
+ ["unit"]=0
+ }
+ },
+ [11616]={
+ ["next_chapter"]=11617,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1233,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=406794,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1945,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=196442,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1945,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=193452,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1161,
+ ["unit"]=0
+ }
+ },
+ [11617]={
+ ["next_chapter"]=11618,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1234,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=407362,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1964,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=198406,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1964,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=193452,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1161,
+ ["unit"]=0
+ }
+ },
+ [11618]={
+ ["next_chapter"]=11619,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1236,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=407930,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1984,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=200390,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=1984,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=193452,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1161,
+ ["unit"]=0
+ }
+ },
+ [11619]={
+ ["next_chapter"]=11620,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1238,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=408499,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2004,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=202394,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=2004,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=193452,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1161,
+ ["unit"]=0
+ }
+ },
+ [11620]={
+ ["next_chapter"]=11621,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=1240,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=409068,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2024,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=204418,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=2024,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=213692,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1162,
+ ["unit"]=0
+ }
+ },
+ [11621]={
+ ["next_chapter"]=11622,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1241,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=409638,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2044,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=206462,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=2044,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=213692,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1162,
+ ["unit"]=0
+ }
+ },
+ [11622]={
+ ["next_chapter"]=11623,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1243,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=410208,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2065,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=208527,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=2065,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=213692,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1162,
+ ["unit"]=0
+ }
+ },
+ [11623]={
+ ["next_chapter"]=11624,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1245,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=410779,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2085,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=210612,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=2085,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=213692,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1162,
+ ["unit"]=0
+ }
+ },
+ [11624]={
+ ["next_chapter"]=11625,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1247,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=411351,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2106,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=212718,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=2106,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=213692,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1162,
+ ["unit"]=0
+ }
+ },
+ [11625]={
+ ["next_chapter"]=11626,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1248,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=411923,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2127,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=214845,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=2127,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=213692,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1162,
+ ["unit"]=0
+ }
+ },
+ [11626]={
+ ["next_chapter"]=11627,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1250,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=412495,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2148,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=216994,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=2148,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=213692,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1162,
+ ["unit"]=0
+ }
+ },
+ [11627]={
+ ["next_chapter"]=11628,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1252,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=413068,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2170,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=219164,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=2170,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=213692,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1162,
+ ["unit"]=0
+ }
+ },
+ [11628]={
+ ["next_chapter"]=11629,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1253,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=413642,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2192,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=221355,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=2192,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=213692,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1162,
+ ["unit"]=0
+ }
+ },
+ [11629]={
+ ["next_chapter"]=11630,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1255,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=414216,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2214,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=223569,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=2214,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=213692,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1162,
+ ["unit"]=0
+ }
+ },
+ [11630]={
+ ["next_chapter"]=11631,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=1257,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=414790,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2236,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=225805,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=2236,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=236049,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1163,
+ ["unit"]=0
+ }
+ },
+ [11631]={
+ ["next_chapter"]=11632,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1259,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=415366,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2258,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=228063,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=2258,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=236049,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1163,
+ ["unit"]=0
+ }
+ },
+ [11632]={
+ ["next_chapter"]=11633,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1260,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=415941,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2281,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=230343,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=2281,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=236049,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1163,
+ ["unit"]=0
+ }
+ },
+ [11633]={
+ ["next_chapter"]=11634,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1262,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=416518,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2303,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=232647,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=2303,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=236049,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1163,
+ ["unit"]=0
+ }
+ },
+ [11634]={
+ ["next_chapter"]=11635,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1264,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=417094,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2326,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=234973,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=2326,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=236049,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1163,
+ ["unit"]=0
+ }
+ },
+ [11635]={
+ ["next_chapter"]=11636,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1266,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=417672,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2350,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=237323,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=2350,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=236049,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1163,
+ ["unit"]=0
+ }
+ },
+ [11636]={
+ ["next_chapter"]=11637,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1267,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=418250,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2373,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=239696,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=2373,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=236049,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1163,
+ ["unit"]=0
+ }
+ },
+ [11637]={
+ ["next_chapter"]=11638,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1269,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=418828,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2397,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=242093,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=2397,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=236049,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1163,
+ ["unit"]=0
+ }
+ },
+ [11638]={
+ ["next_chapter"]=11639,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1271,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=419407,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2421,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=244514,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=2421,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=236049,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1163,
+ ["unit"]=0
+ }
+ },
+ [11639]={
+ ["next_chapter"]=11640,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1273,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=419986,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2445,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=246959,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=2445,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=236049,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1163,
+ ["unit"]=0
+ }
+ },
+ [11640]={
+ ["next_chapter"]=11641,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=1274,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=420567,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2470,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=249429,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=2470,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=260745,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1164,
+ ["unit"]=0
+ }
+ },
+ [11641]={
+ ["next_chapter"]=11642,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1276,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=421147,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2494,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=251923,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=2494,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=260745,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1164,
+ ["unit"]=0
+ }
+ },
+ [11642]={
+ ["next_chapter"]=11643,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1278,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=421728,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2519,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=254442,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=2519,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=260745,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1164,
+ ["unit"]=0
+ }
+ },
+ [11643]={
+ ["next_chapter"]=11644,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1280,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=422310,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2544,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=256987,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=2544,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=260745,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1164,
+ ["unit"]=0
+ }
+ },
+ [11644]={
+ ["next_chapter"]=11645,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1281,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=422892,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2570,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=259557,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=2570,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=260745,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1164,
+ ["unit"]=0
+ }
+ },
+ [11645]={
+ ["next_chapter"]=11646,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1283,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=423475,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2596,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=262152,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=2596,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=260745,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1164,
+ ["unit"]=0
+ }
+ },
+ [11646]={
+ ["next_chapter"]=11647,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1285,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=424058,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2622,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=264774,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=2622,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=260745,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1164,
+ ["unit"]=0
+ }
+ },
+ [11647]={
+ ["next_chapter"]=11648,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1287,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=424642,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2648,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=267421,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=2648,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=260745,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1164,
+ ["unit"]=0
+ }
+ },
+ [11648]={
+ ["next_chapter"]=11649,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1289,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=425227,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2674,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=270096,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=2674,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=260745,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1164,
+ ["unit"]=0
+ }
+ },
+ [11649]={
+ ["next_chapter"]=11650,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1290,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=425811,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2701,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=272797,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=2701,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=260745,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1164,
+ ["unit"]=0
+ }
+ },
+ [11650]={
+ ["next_chapter"]=11651,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=1292,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=426397,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2728,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=275525,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=2728,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=288024,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1165,
+ ["unit"]=0
+ }
+ },
+ [11651]={
+ ["next_chapter"]=11652,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1294,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=426983,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2755,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=278280,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=2755,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=288024,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1165,
+ ["unit"]=0
+ }
+ },
+ [11652]={
+ ["next_chapter"]=11653,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1296,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=427570,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2783,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=281063,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=2783,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=288024,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1165,
+ ["unit"]=0
+ }
+ },
+ [11653]={
+ ["next_chapter"]=11654,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1297,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=428157,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2811,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=283873,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=2811,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=288024,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1165,
+ ["unit"]=0
+ }
+ },
+ [11654]={
+ ["next_chapter"]=11655,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1299,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=428744,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2839,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=286712,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=2839,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=288024,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1165,
+ ["unit"]=0
+ }
+ },
+ [11655]={
+ ["next_chapter"]=11656,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1301,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=429333,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2867,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=289579,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=2867,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=288024,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1165,
+ ["unit"]=0
+ }
+ },
+ [11656]={
+ ["next_chapter"]=11657,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1303,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=429921,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2896,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=292475,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=2896,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=288024,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1165,
+ ["unit"]=0
+ }
+ },
+ [11657]={
+ ["next_chapter"]=11658,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1305,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=430511,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2925,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=295400,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=2925,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=288024,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1165,
+ ["unit"]=0
+ }
+ },
+ [11658]={
+ ["next_chapter"]=11659,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1306,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=431101,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2954,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=298354,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=2954,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=288024,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1165,
+ ["unit"]=0
+ }
+ },
+ [11659]={
+ ["next_chapter"]=11660,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1308,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=431691,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2984,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=301337,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=2984,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=288024,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1165,
+ ["unit"]=0
+ }
+ },
+ [11660]={
+ ["next_chapter"]=11661,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=1310,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=432282,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3013,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=304351,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=3013,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=318158,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1166,
+ ["unit"]=0
+ }
+ },
+ [11661]={
+ ["next_chapter"]=11662,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1312,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=432873,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3044,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=307394,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=3044,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=318158,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1166,
+ ["unit"]=0
+ }
+ },
+ [11662]={
+ ["next_chapter"]=11663,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1314,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=433465,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3074,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=310468,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=3074,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=318158,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1166,
+ ["unit"]=0
+ }
+ },
+ [11663]={
+ ["next_chapter"]=11664,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1315,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=434058,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3105,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=313573,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=3105,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=318158,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1166,
+ ["unit"]=0
+ }
+ },
+ [11664]={
+ ["next_chapter"]=11665,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1317,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=434651,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3136,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=316708,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=3136,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=318158,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1166,
+ ["unit"]=0
+ }
+ },
+ [11665]={
+ ["next_chapter"]=11666,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1319,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=435245,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3167,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=319875,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=3167,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=318158,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1166,
+ ["unit"]=0
+ }
+ },
+ [11666]={
+ ["next_chapter"]=11667,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1321,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=435839,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3199,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=323074,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=3199,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=318158,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1166,
+ ["unit"]=0
+ }
+ },
+ [11667]={
+ ["next_chapter"]=11668,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1323,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=436434,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3231,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=326305,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=3231,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=318158,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1166,
+ ["unit"]=0
+ }
+ },
+ [11668]={
+ ["next_chapter"]=11669,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1324,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=437029,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3263,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=329568,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=3263,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=318158,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1166,
+ ["unit"]=0
+ }
+ },
+ [11669]={
+ ["next_chapter"]=11670,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1326,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=437625,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3296,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=332864,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=3296,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=318158,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1166,
+ ["unit"]=0
+ }
+ },
+ [11670]={
+ ["next_chapter"]=11671,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=1328,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=438222,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3329,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=336192,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=3329,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=351444,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1167,
+ ["unit"]=0
+ }
+ },
+ [11671]={
+ ["next_chapter"]=11672,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1330,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=438819,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3362,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=339554,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=3362,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=351444,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1167,
+ ["unit"]=0
+ }
+ },
+ [11672]={
+ ["next_chapter"]=11673,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1332,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=439416,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3396,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=342950,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=3396,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=351444,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1167,
+ ["unit"]=0
+ }
+ },
+ [11673]={
+ ["next_chapter"]=11674,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1333,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=440014,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3429,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=346379,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=3429,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=351444,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1167,
+ ["unit"]=0
+ }
+ },
+ [11674]={
+ ["next_chapter"]=11675,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1335,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=440613,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3464,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=349843,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=3464,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=351444,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1167,
+ ["unit"]=0
+ }
+ },
+ [11675]={
+ ["next_chapter"]=11676,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1337,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=441212,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3498,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=353342,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=3498,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=351444,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1167,
+ ["unit"]=0
+ }
+ },
+ [11676]={
+ ["next_chapter"]=11677,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1339,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=441812,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3533,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=356875,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=3533,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=351444,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1167,
+ ["unit"]=0
+ }
+ },
+ [11677]={
+ ["next_chapter"]=11678,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1341,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=442412,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3569,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=360444,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=3569,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=351444,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1167,
+ ["unit"]=0
+ }
+ },
+ [11678]={
+ ["next_chapter"]=11679,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1342,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=443013,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3604,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=364048,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=3604,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=351444,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1167,
+ ["unit"]=0
+ }
+ },
+ [11679]={
+ ["next_chapter"]=11680,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1344,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=443614,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3640,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=367689,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=3640,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=351444,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1167,
+ ["unit"]=0
+ }
+ },
+ [11680]={
+ ["next_chapter"]=11681,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=1346,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=444216,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3677,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=371365,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=3677,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=388213,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1168,
+ ["unit"]=0
+ }
+ },
+ [11681]={
+ ["next_chapter"]=11682,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1348,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=444819,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3714,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=375079,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=3714,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=388213,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1168,
+ ["unit"]=0
+ }
+ },
+ [11682]={
+ ["next_chapter"]=11683,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1350,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=445422,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3751,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=378830,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=3751,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=388213,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1168,
+ ["unit"]=0
+ }
+ },
+ [11683]={
+ ["next_chapter"]=11684,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1352,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=446025,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3788,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=382618,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=3788,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=388213,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1168,
+ ["unit"]=0
+ }
+ },
+ [11684]={
+ ["next_chapter"]=11685,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1353,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=446630,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3826,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=386444,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=3826,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=388213,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1168,
+ ["unit"]=0
+ }
+ },
+ [11685]={
+ ["next_chapter"]=11686,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1355,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=447234,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3864,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=390309,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=3864,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=388213,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1168,
+ ["unit"]=0
+ }
+ },
+ [11686]={
+ ["next_chapter"]=11687,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1357,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=447839,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3903,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=394212,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=3903,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=388213,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1168,
+ ["unit"]=0
+ }
+ },
+ [11687]={
+ ["next_chapter"]=11688,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1359,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=448445,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3942,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=398154,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=3942,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=388213,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1168,
+ ["unit"]=0
+ }
+ },
+ [11688]={
+ ["next_chapter"]=11689,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1361,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=449052,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3982,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=402136,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=3982,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=388213,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1168,
+ ["unit"]=0
+ }
+ },
+ [11689]={
+ ["next_chapter"]=11690,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1363,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=449659,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4021,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=406157,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=4021,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=388213,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1168,
+ ["unit"]=0
+ }
+ },
+ [11690]={
+ ["next_chapter"]=11691,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=1364,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=450266,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4062,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=410219,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=4062,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=428829,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1169,
+ ["unit"]=0
+ }
+ },
+ [11691]={
+ ["next_chapter"]=11692,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1366,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=450874,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4102,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=414321,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=4102,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=428829,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1169,
+ ["unit"]=0
+ }
+ },
+ [11692]={
+ ["next_chapter"]=11693,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1368,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=451483,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4143,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=418464,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=4143,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=428829,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1169,
+ ["unit"]=0
+ }
+ },
+ [11693]={
+ ["next_chapter"]=11694,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1370,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=452092,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4185,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=422649,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=4185,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=428829,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1169,
+ ["unit"]=0
+ }
+ },
+ [11694]={
+ ["next_chapter"]=11695,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1372,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=452702,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4226,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=426875,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=4226,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=428829,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1169,
+ ["unit"]=0
+ }
+ },
+ [11695]={
+ ["next_chapter"]=11696,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1374,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=453312,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4269,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=431144,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=4269,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=428829,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1169,
+ ["unit"]=0
+ }
+ },
+ [11696]={
+ ["next_chapter"]=11697,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1376,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=453923,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4311,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=435455,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=4311,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=428829,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1169,
+ ["unit"]=0
+ }
+ },
+ [11697]={
+ ["next_chapter"]=11698,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1377,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=454534,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4355,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=439810,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=4355,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=428829,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1169,
+ ["unit"]=0
+ }
+ },
+ [11698]={
+ ["next_chapter"]=11699,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1379,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=455146,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4398,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=444208,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=4398,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=428829,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1169,
+ ["unit"]=0
+ }
+ },
+ [11699]={
+ ["next_chapter"]=11700,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1381,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=455758,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4442,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=448650,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=4442,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=428829,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1169,
+ ["unit"]=0
+ }
+ },
+ [11700]={
+ ["next_chapter"]=11701,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=1383,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=456372,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4486,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=453136,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=4486,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=473694,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1170,
+ ["unit"]=0
+ }
+ },
+ [11701]={
+ ["next_chapter"]=11702,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1385,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=456985,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4531,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=457668,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=4531,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=473694,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1170,
+ ["unit"]=0
+ }
+ },
+ [11702]={
+ ["next_chapter"]=11703,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1387,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=457599,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4577,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=462245,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=4577,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=473694,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1170,
+ ["unit"]=0
+ }
+ },
+ [11703]={
+ ["next_chapter"]=11704,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1389,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=458214,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4622,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=466867,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=4622,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=473694,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1170,
+ ["unit"]=0
+ }
+ },
+ [11704]={
+ ["next_chapter"]=11705,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1390,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=458829,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4669,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=471536,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=4669,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=473694,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1170,
+ ["unit"]=0
+ }
+ },
+ [11705]={
+ ["next_chapter"]=11706,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1392,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=459445,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4715,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=476251,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=4715,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=473694,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1170,
+ ["unit"]=0
+ }
+ },
+ [11706]={
+ ["next_chapter"]=11707,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1394,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=460062,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4763,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=481013,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=4763,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=473694,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1170,
+ ["unit"]=0
+ }
+ },
+ [11707]={
+ ["next_chapter"]=11708,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1396,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=460678,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4810,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=485824,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=4810,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=473694,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1170,
+ ["unit"]=0
+ }
+ },
+ [11708]={
+ ["next_chapter"]=11709,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1398,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=461296,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4858,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=490682,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=4858,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=473694,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1170,
+ ["unit"]=0
+ }
+ },
+ [11709]={
+ ["next_chapter"]=11710,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1400,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=461914,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4907,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=495589,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=4907,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=473694,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1170,
+ ["unit"]=0
+ }
+ },
+ [11710]={
+ ["next_chapter"]=11711,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=1402,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=462533,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=4956,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=500545,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=4956,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=523253,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1171,
+ ["unit"]=0
+ }
+ },
+ [11711]={
+ ["next_chapter"]=11712,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1403,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=463152,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5005,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=505550,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=5005,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=523253,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1171,
+ ["unit"]=0
+ }
+ },
+ [11712]={
+ ["next_chapter"]=11713,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1405,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=463772,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5056,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=510606,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=5056,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=523253,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1171,
+ ["unit"]=0
+ }
+ },
+ [11713]={
+ ["next_chapter"]=11714,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1407,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=464392,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5106,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=515712,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=5106,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=523253,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1171,
+ ["unit"]=0
+ }
+ },
+ [11714]={
+ ["next_chapter"]=11715,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1409,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=465013,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5157,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=520869,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=5157,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=523253,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1171,
+ ["unit"]=0
+ }
+ },
+ [11715]={
+ ["next_chapter"]=11716,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1411,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=465634,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5209,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=526077,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=5209,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=523253,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1171,
+ ["unit"]=0
+ }
+ },
+ [11716]={
+ ["next_chapter"]=11717,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1413,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=466256,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5261,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=531338,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=5261,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=523253,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1171,
+ ["unit"]=0
+ }
+ },
+ [11717]={
+ ["next_chapter"]=11718,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1415,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=466879,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5313,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=536652,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=5313,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=523253,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1171,
+ ["unit"]=0
+ }
+ },
+ [11718]={
+ ["next_chapter"]=11719,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1417,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=467502,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5367,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=542018,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=5367,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=523253,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1171,
+ ["unit"]=0
+ }
+ },
+ [11719]={
+ ["next_chapter"]=11720,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1419,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=468126,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5420,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=547438,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=5420,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=523253,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1171,
+ ["unit"]=0
+ }
+ },
+ [11720]={
+ ["next_chapter"]=11721,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=1420,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=468750,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5474,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=552913,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=5474,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=577997,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1172,
+ ["unit"]=0
+ }
+ },
+ [11721]={
+ ["next_chapter"]=11722,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1422,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=469375,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5529,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=558442,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=5529,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=577997,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1172,
+ ["unit"]=0
+ }
+ },
+ [11722]={
+ ["next_chapter"]=11723,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1424,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=470000,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5584,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=564026,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=5584,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=577997,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1172,
+ ["unit"]=0
+ }
+ },
+ [11723]={
+ ["next_chapter"]=11724,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1426,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=470626,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5640,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=569666,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=5640,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=577997,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1172,
+ ["unit"]=0
+ }
+ },
+ [11724]={
+ ["next_chapter"]=11725,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1428,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=471252,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5697,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=575363,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=5697,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=577997,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1172,
+ ["unit"]=0
+ }
+ },
+ [11725]={
+ ["next_chapter"]=11726,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1430,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=471880,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5754,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=581117,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=5754,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=577997,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1172,
+ ["unit"]=0
+ }
+ },
+ [11726]={
+ ["next_chapter"]=11727,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1432,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=472507,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5811,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=586928,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=5811,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=577997,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1172,
+ ["unit"]=0
+ }
+ },
+ [11727]={
+ ["next_chapter"]=11728,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1434,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=473135,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5869,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=592797,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=5869,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=577997,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1172,
+ ["unit"]=0
+ }
+ },
+ [11728]={
+ ["next_chapter"]=11729,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1436,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=473764,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5928,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=598725,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=5928,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=577997,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1172,
+ ["unit"]=0
+ }
+ },
+ [11729]={
+ ["next_chapter"]=11730,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1438,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=474393,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=5987,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=604712,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=5987,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=577997,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1172,
+ ["unit"]=0
+ }
+ },
+ [11730]={
+ ["next_chapter"]=11731,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=1439,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=475023,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6047,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=610759,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=6047,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=638468,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1173,
+ ["unit"]=0
+ }
+ },
+ [11731]={
+ ["next_chapter"]=11732,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1441,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=475654,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6108,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=616867,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=6108,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=638468,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1173,
+ ["unit"]=0
+ }
+ },
+ [11732]={
+ ["next_chapter"]=11733,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1443,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=476285,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6169,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=623036,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=6169,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=638468,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1173,
+ ["unit"]=0
+ }
+ },
+ [11733]={
+ ["next_chapter"]=11734,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1445,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=476916,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6230,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=629266,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=6230,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=638468,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1173,
+ ["unit"]=0
+ }
+ },
+ [11734]={
+ ["next_chapter"]=11735,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1447,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=477548,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6293,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=635559,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=6293,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=638468,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1173,
+ ["unit"]=0
+ }
+ },
+ [11735]={
+ ["next_chapter"]=11736,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1449,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=478181,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6356,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=641914,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=6356,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=638468,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1173,
+ ["unit"]=0
+ }
+ },
+ [11736]={
+ ["next_chapter"]=11737,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1451,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=478814,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6419,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=648334,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=6419,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=638468,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1173,
+ ["unit"]=0
+ }
+ },
+ [11737]={
+ ["next_chapter"]=11738,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1453,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=479448,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6483,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=654817,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=6483,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=638468,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1173,
+ ["unit"]=0
+ }
+ },
+ [11738]={
+ ["next_chapter"]=11739,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1455,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=480083,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6548,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=661365,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=6548,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=638468,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1173,
+ ["unit"]=0
+ }
+ },
+ [11739]={
+ ["next_chapter"]=11740,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1457,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=480718,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6614,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=667979,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=6614,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=638468,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1173,
+ ["unit"]=0
+ }
+ },
+ [11740]={
+ ["next_chapter"]=11741,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=1459,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=481353,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6680,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=674658,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=6680,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=705266,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1174,
+ ["unit"]=0
+ }
+ },
+ [11741]={
+ ["next_chapter"]=11742,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1461,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=481989,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6747,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=681405,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=6747,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=705266,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1174,
+ ["unit"]=0
+ }
+ },
+ [11742]={
+ ["next_chapter"]=11743,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1463,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=482626,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6814,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=688219,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=6814,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=705266,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1174,
+ ["unit"]=0
+ }
+ },
+ [11743]={
+ ["next_chapter"]=11744,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1464,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=483263,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6882,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=695101,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=6882,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=705266,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1174,
+ ["unit"]=0
+ }
+ },
+ [11744]={
+ ["next_chapter"]=11745,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1466,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=483901,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=6951,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=702052,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=6951,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=705266,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1174,
+ ["unit"]=0
+ }
+ },
+ [11745]={
+ ["next_chapter"]=11746,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1468,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=484540,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7021,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=709073,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=7021,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=705266,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1174,
+ ["unit"]=0
+ }
+ },
+ [11746]={
+ ["next_chapter"]=11747,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1470,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=485178,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7091,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=716164,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=7091,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=705266,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1174,
+ ["unit"]=0
+ }
+ },
+ [11747]={
+ ["next_chapter"]=11748,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1472,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=485818,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7162,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=723325,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=7162,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=705266,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1174,
+ ["unit"]=0
+ }
+ },
+ [11748]={
+ ["next_chapter"]=11749,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1474,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=486458,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7233,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=730558,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=7233,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=705266,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1174,
+ ["unit"]=0
+ }
+ },
+ [11749]={
+ ["next_chapter"]=11750,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1476,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=487099,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7306,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=737864,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=7306,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=705266,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1174,
+ ["unit"]=0
+ }
+ },
+ [11750]={
+ ["next_chapter"]=11751,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=1478,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=487740,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7379,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=745243,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=7379,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=779052,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1175,
+ ["unit"]=0
+ }
+ },
+ [11751]={
+ ["next_chapter"]=11752,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1480,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=488382,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7452,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=752695,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=7452,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=779052,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1175,
+ ["unit"]=0
+ }
+ },
+ [11752]={
+ ["next_chapter"]=11753,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1482,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=489024,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7527,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=760222,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=7527,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=779052,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1175,
+ ["unit"]=0
+ }
+ },
+ [11753]={
+ ["next_chapter"]=11754,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1484,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=489667,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7602,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=767824,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=7602,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=779052,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1175,
+ ["unit"]=0
+ }
+ },
+ [11754]={
+ ["next_chapter"]=11755,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1486,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=490311,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7678,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=775502,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=7678,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=779052,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1175,
+ ["unit"]=0
+ }
+ },
+ [11755]={
+ ["next_chapter"]=11756,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1488,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=490955,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7755,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=783258,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=7755,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=779052,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1175,
+ ["unit"]=0
+ }
+ },
+ [11756]={
+ ["next_chapter"]=11757,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1490,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=491599,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7833,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=791090,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=7833,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=779052,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1175,
+ ["unit"]=0
+ }
+ },
+ [11757]={
+ ["next_chapter"]=11758,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1492,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=492245,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7911,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=799001,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=7911,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=779052,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1175,
+ ["unit"]=0
+ }
+ },
+ [11758]={
+ ["next_chapter"]=11759,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1494,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=492890,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=7990,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=806991,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=7990,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=779052,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1175,
+ ["unit"]=0
+ }
+ },
+ [11759]={
+ ["next_chapter"]=11760,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1496,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=493537,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8070,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=815061,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=8070,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=779052,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1175,
+ ["unit"]=0
+ }
+ },
+ [11760]={
+ ["next_chapter"]=11761,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=1498,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=494184,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8151,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=823212,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=8151,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=860558,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1176,
+ ["unit"]=0
+ }
+ },
+ [11761]={
+ ["next_chapter"]=11762,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1499,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=494831,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8232,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=831444,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=8232,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=860558,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1176,
+ ["unit"]=0
+ }
+ },
+ [11762]={
+ ["next_chapter"]=11763,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1501,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=495479,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8314,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=839758,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=8314,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=860558,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1176,
+ ["unit"]=0
+ }
+ },
+ [11763]={
+ ["next_chapter"]=11764,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1503,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=496128,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8398,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=848156,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=8398,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=860558,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1176,
+ ["unit"]=0
+ }
+ },
+ [11764]={
+ ["next_chapter"]=11765,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1505,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=496777,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8482,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=856637,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=8482,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=860558,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1176,
+ ["unit"]=0
+ }
+ },
+ [11765]={
+ ["next_chapter"]=11766,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1507,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=497427,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8566,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=865204,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=8566,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=860558,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1176,
+ ["unit"]=0
+ }
+ },
+ [11766]={
+ ["next_chapter"]=11767,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1509,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=498077,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8652,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=873856,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=8652,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=860558,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1176,
+ ["unit"]=0
+ }
+ },
+ [11767]={
+ ["next_chapter"]=11768,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1511,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=498728,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8739,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=882594,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=8739,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=860558,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1176,
+ ["unit"]=0
+ }
+ },
+ [11768]={
+ ["next_chapter"]=11769,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1513,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=499380,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8826,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=891420,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=8826,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=860558,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1176,
+ ["unit"]=0
+ }
+ },
+ [11769]={
+ ["next_chapter"]=11770,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1515,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=500032,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=8914,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=900334,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=8914,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=860558,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1176,
+ ["unit"]=0
+ }
+ },
+ [11770]={
+ ["next_chapter"]=11771,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=1517,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=500685,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9003,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=909338,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=9003,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=950592,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1177,
+ ["unit"]=0
+ }
+ },
+ [11771]={
+ ["next_chapter"]=11772,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1519,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=501338,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9093,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=918431,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=9093,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=950592,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1177,
+ ["unit"]=0
+ }
+ },
+ [11772]={
+ ["next_chapter"]=11773,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1521,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=501992,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9184,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=927615,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=9184,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=950592,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1177,
+ ["unit"]=0
+ }
+ },
+ [11773]={
+ ["next_chapter"]=11774,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1523,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=502646,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9276,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=936892,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=9276,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=950592,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1177,
+ ["unit"]=0
+ }
+ },
+ [11774]={
+ ["next_chapter"]=11775,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1525,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=503301,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9369,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=946260,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=9369,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=950592,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1177,
+ ["unit"]=0
+ }
+ },
+ [11775]={
+ ["next_chapter"]=11776,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1527,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=503957,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9463,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=955723,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=9463,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=950592,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1177,
+ ["unit"]=0
+ }
+ },
+ [11776]={
+ ["next_chapter"]=11777,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1529,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=504613,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9557,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=965280,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=9557,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=950592,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1177,
+ ["unit"]=0
+ }
+ },
+ [11777]={
+ ["next_chapter"]=11778,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1531,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=505270,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9653,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=974933,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=9653,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=950592,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1177,
+ ["unit"]=0
+ }
+ },
+ [11778]={
+ ["next_chapter"]=11779,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1533,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=505927,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9749,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=984682,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=9749,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=950592,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1177,
+ ["unit"]=0
+ }
+ },
+ [11779]={
+ ["next_chapter"]=11780,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1535,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=506585,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9847,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=994529,
+ ["unit"]=16
+ },
+ ["idle_gold"]={
+ ["value"]=9847,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=950592,
+ ["unit"]=16
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1177,
+ ["unit"]=0
+ }
+ },
+ [11780]={
+ ["next_chapter"]=11781,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=1537,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=507243,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=9945,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1004,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=9945,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1050,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1178,
+ ["unit"]=0
+ }
+ },
+ [11781]={
+ ["next_chapter"]=11782,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1539,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=507902,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10045,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1015,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=10045,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1050,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1178,
+ ["unit"]=0
+ }
+ },
+ [11782]={
+ ["next_chapter"]=11783,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1541,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=508562,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10145,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1025,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=10145,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1050,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1178,
+ ["unit"]=0
+ }
+ },
+ [11783]={
+ ["next_chapter"]=11784,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1543,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=509222,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10247,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1035,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=10247,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1050,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1178,
+ ["unit"]=0
+ }
+ },
+ [11784]={
+ ["next_chapter"]=11785,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1545,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=509883,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10349,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1045,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=10349,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1050,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1178,
+ ["unit"]=0
+ }
+ },
+ [11785]={
+ ["next_chapter"]=11786,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1547,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=510544,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10453,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1056,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=10453,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1050,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1178,
+ ["unit"]=0
+ }
+ },
+ [11786]={
+ ["next_chapter"]=11787,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1549,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=511206,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10557,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1066,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=10557,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1050,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1178,
+ ["unit"]=0
+ }
+ },
+ [11787]={
+ ["next_chapter"]=11788,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1551,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=511869,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10663,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1077,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=10663,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1050,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1178,
+ ["unit"]=0
+ }
+ },
+ [11788]={
+ ["next_chapter"]=11789,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1553,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=512532,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10769,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1088,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=10769,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1050,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1178,
+ ["unit"]=0
+ }
+ },
+ [11789]={
+ ["next_chapter"]=11790,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1555,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=513195,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10877,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1099,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=10877,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1050,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1178,
+ ["unit"]=0
+ }
+ },
+ [11790]={
+ ["next_chapter"]=11791,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=1557,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=513860,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=10986,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1110,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=10986,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1160,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1179,
+ ["unit"]=0
+ }
+ },
+ [11791]={
+ ["next_chapter"]=11792,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1559,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=514525,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=11096,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1121,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=11096,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1160,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1179,
+ ["unit"]=0
+ }
+ },
+ [11792]={
+ ["next_chapter"]=11793,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1561,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=515190,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=11207,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1132,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=11207,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1160,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1179,
+ ["unit"]=0
+ }
+ },
+ [11793]={
+ ["next_chapter"]=11794,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1563,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=515856,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=11319,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1143,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=11319,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1160,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1179,
+ ["unit"]=0
+ }
+ },
+ [11794]={
+ ["next_chapter"]=11795,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1565,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=516522,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=11432,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1155,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=11432,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1160,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1179,
+ ["unit"]=0
+ }
+ },
+ [11795]={
+ ["next_chapter"]=11796,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1567,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=517190,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=11546,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1166,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=11546,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1160,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1179,
+ ["unit"]=0
+ }
+ },
+ [11796]={
+ ["next_chapter"]=11797,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1569,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=517857,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=11662,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1178,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=11662,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1160,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1179,
+ ["unit"]=0
+ }
+ },
+ [11797]={
+ ["next_chapter"]=11798,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1571,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=518526,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=11778,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1190,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=11778,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1160,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1179,
+ ["unit"]=0
+ }
+ },
+ [11798]={
+ ["next_chapter"]=11799,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1573,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=519195,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=11896,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1201,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=11896,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1160,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1179,
+ ["unit"]=0
+ }
+ },
+ [11799]={
+ ["next_chapter"]=11800,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1575,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=519864,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=12015,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1214,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=12015,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1160,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1179,
+ ["unit"]=0
+ }
+ },
+ [11800]={
+ ["next_chapter"]=11801,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=1577,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=520534,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=12135,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1226,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=12135,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1281,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1180,
+ ["unit"]=0
+ }
+ },
+ [11801]={
+ ["next_chapter"]=11802,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1579,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=521205,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=12256,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1238,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=12256,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1281,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1180,
+ ["unit"]=0
+ }
+ },
+ [11802]={
+ ["next_chapter"]=11803,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1581,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=521876,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=12379,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1250,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=12379,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1281,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1180,
+ ["unit"]=0
+ }
+ },
+ [11803]={
+ ["next_chapter"]=11804,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1583,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=522548,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=12503,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1263,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=12503,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1281,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1180,
+ ["unit"]=0
+ }
+ },
+ [11804]={
+ ["next_chapter"]=11805,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1586,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=523220,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=12628,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1275,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=12628,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1281,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1180,
+ ["unit"]=0
+ }
+ },
+ [11805]={
+ ["next_chapter"]=11806,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1588,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=523893,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=12754,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1288,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=12754,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1281,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1180,
+ ["unit"]=0
+ }
+ },
+ [11806]={
+ ["next_chapter"]=11807,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1590,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=524567,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=12882,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1301,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=12882,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1281,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1180,
+ ["unit"]=0
+ }
+ },
+ [11807]={
+ ["next_chapter"]=11808,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1592,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=525241,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=13011,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1314,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=13011,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1281,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1180,
+ ["unit"]=0
+ }
+ },
+ [11808]={
+ ["next_chapter"]=11809,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1594,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=525916,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=13141,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1327,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=13141,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1281,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1180,
+ ["unit"]=0
+ }
+ },
+ [11809]={
+ ["next_chapter"]=11810,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1596,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=526591,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=13272,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1340,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=13272,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1281,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1180,
+ ["unit"]=0
+ }
+ },
+ [11810]={
+ ["next_chapter"]=11811,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=1598,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=527267,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=13405,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1354,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=13405,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1415,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1181,
+ ["unit"]=0
+ }
+ },
+ [11811]={
+ ["next_chapter"]=11812,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1600,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=527943,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=13539,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1367,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=13539,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1415,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1181,
+ ["unit"]=0
+ }
+ },
+ [11812]={
+ ["next_chapter"]=11813,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1602,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=528620,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=13674,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1381,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=13674,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1415,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1181,
+ ["unit"]=0
+ }
+ },
+ [11813]={
+ ["next_chapter"]=11814,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1604,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=529298,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=13811,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1395,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=13811,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1415,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1181,
+ ["unit"]=0
+ }
+ },
+ [11814]={
+ ["next_chapter"]=11815,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1606,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=529976,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=13949,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1409,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=13949,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1415,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1181,
+ ["unit"]=0
+ }
+ },
+ [11815]={
+ ["next_chapter"]=11816,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1608,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=530655,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=14089,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1423,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=14089,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1415,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1181,
+ ["unit"]=0
+ }
+ },
+ [11816]={
+ ["next_chapter"]=11817,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1610,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=531334,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=14229,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1437,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=14229,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1415,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1181,
+ ["unit"]=0
+ }
+ },
+ [11817]={
+ ["next_chapter"]=11818,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1612,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=532014,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=14372,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1452,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=14372,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1415,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1181,
+ ["unit"]=0
+ }
+ },
+ [11818]={
+ ["next_chapter"]=11819,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1614,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=532695,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=14515,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1466,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=14515,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1415,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1181,
+ ["unit"]=0
+ }
+ },
+ [11819]={
+ ["next_chapter"]=11820,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1616,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=533376,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=14661,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1481,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=14661,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1415,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1181,
+ ["unit"]=0
+ }
+ },
+ [11820]={
+ ["next_chapter"]=11821,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=1618,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=534058,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=14807,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1496,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=14807,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1563,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1182,
+ ["unit"]=0
+ }
+ },
+ [11821]={
+ ["next_chapter"]=11822,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1620,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=534740,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=14955,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1510,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=14955,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1563,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1182,
+ ["unit"]=0
+ }
+ },
+ [11822]={
+ ["next_chapter"]=11823,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1622,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=535423,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=15105,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1526,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=15105,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1563,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1182,
+ ["unit"]=0
+ }
+ },
+ [11823]={
+ ["next_chapter"]=11824,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1625,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=536107,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=15256,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1541,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=15256,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1563,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1182,
+ ["unit"]=0
+ }
+ },
+ [11824]={
+ ["next_chapter"]=11825,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1627,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=536791,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=15408,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1556,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=15408,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1563,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1182,
+ ["unit"]=0
+ }
+ },
+ [11825]={
+ ["next_chapter"]=11826,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1629,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=537476,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=15563,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1572,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=15563,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1563,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1182,
+ ["unit"]=0
+ }
+ },
+ [11826]={
+ ["next_chapter"]=11827,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1631,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=538161,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=15718,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1588,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=15718,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1563,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1182,
+ ["unit"]=0
+ }
+ },
+ [11827]={
+ ["next_chapter"]=11828,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1633,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=538847,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=15875,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1603,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=15875,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1563,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1182,
+ ["unit"]=0
+ }
+ },
+ [11828]={
+ ["next_chapter"]=11829,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1635,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=539533,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=16034,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1619,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=16034,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1563,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1182,
+ ["unit"]=0
+ }
+ },
+ [11829]={
+ ["next_chapter"]=11830,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1637,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=540220,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=16194,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1636,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=16194,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1563,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1182,
+ ["unit"]=0
+ }
+ },
+ [11830]={
+ ["next_chapter"]=11831,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=1639,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=540908,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=16356,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1652,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=16356,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1727,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1183,
+ ["unit"]=0
+ }
+ },
+ [11831]={
+ ["next_chapter"]=11832,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1641,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=541596,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=16520,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1669,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=16520,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1727,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1183,
+ ["unit"]=0
+ }
+ },
+ [11832]={
+ ["next_chapter"]=11833,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1643,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=542285,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=16685,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1685,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=16685,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1727,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1183,
+ ["unit"]=0
+ }
+ },
+ [11833]={
+ ["next_chapter"]=11834,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1645,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=542975,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=16852,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1702,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=16852,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1727,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1183,
+ ["unit"]=0
+ }
+ },
+ [11834]={
+ ["next_chapter"]=11835,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1647,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=543665,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=17020,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1719,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=17020,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1727,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1183,
+ ["unit"]=0
+ }
+ },
+ [11835]={
+ ["next_chapter"]=11836,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1650,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=544355,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=17191,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1736,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=17191,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1727,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1183,
+ ["unit"]=0
+ }
+ },
+ [11836]={
+ ["next_chapter"]=11837,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1652,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=545046,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=17363,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1754,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=17363,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1727,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1183,
+ ["unit"]=0
+ }
+ },
+ [11837]={
+ ["next_chapter"]=11838,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1654,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=545738,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=17536,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1771,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=17536,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1727,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1183,
+ ["unit"]=0
+ }
+ },
+ [11838]={
+ ["next_chapter"]=11839,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1656,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=546431,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=17712,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1789,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=17712,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1727,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1183,
+ ["unit"]=0
+ }
+ },
+ [11839]={
+ ["next_chapter"]=11840,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1658,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=547123,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=17889,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1807,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=17889,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1727,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1183,
+ ["unit"]=0
+ }
+ },
+ [11840]={
+ ["next_chapter"]=11841,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=1660,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=547817,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=18068,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1825,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=18068,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1908,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1184,
+ ["unit"]=0
+ }
+ },
+ [11841]={
+ ["next_chapter"]=11842,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1662,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=548511,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=18248,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1843,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=18248,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1908,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1184,
+ ["unit"]=0
+ }
+ },
+ [11842]={
+ ["next_chapter"]=11843,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1664,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=549206,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=18431,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1862,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=18431,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1908,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1184,
+ ["unit"]=0
+ }
+ },
+ [11843]={
+ ["next_chapter"]=11844,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1666,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=549901,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=18615,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1880,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=18615,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1908,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1184,
+ ["unit"]=0
+ }
+ },
+ [11844]={
+ ["next_chapter"]=11845,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1668,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=550597,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=18801,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1899,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=18801,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1908,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1184,
+ ["unit"]=0
+ }
+ },
+ [11845]={
+ ["next_chapter"]=11846,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1671,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=551294,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=18989,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1918,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=18989,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1908,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1184,
+ ["unit"]=0
+ }
+ },
+ [11846]={
+ ["next_chapter"]=11847,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1673,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=551991,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=19179,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1937,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=19179,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1908,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1184,
+ ["unit"]=0
+ }
+ },
+ [11847]={
+ ["next_chapter"]=11848,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1675,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=552689,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=19371,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1956,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=19371,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1908,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1184,
+ ["unit"]=0
+ }
+ },
+ [11848]={
+ ["next_chapter"]=11849,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1677,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=553387,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=19565,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1976,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=19565,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1908,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1184,
+ ["unit"]=0
+ }
+ },
+ [11849]={
+ ["next_chapter"]=11850,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1679,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=554086,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=19760,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1996,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=19760,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=1908,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1184,
+ ["unit"]=0
+ }
+ },
+ [11850]={
+ ["next_chapter"]=11851,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=1681,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=554785,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=19958,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2016,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=19958,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2107,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1185,
+ ["unit"]=0
+ }
+ },
+ [11851]={
+ ["next_chapter"]=11852,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1683,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=555486,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=20157,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2036,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=20157,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2107,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1185,
+ ["unit"]=0
+ }
+ },
+ [11852]={
+ ["next_chapter"]=11853,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1685,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=556186,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=20359,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2056,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=20359,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2107,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1185,
+ ["unit"]=0
+ }
+ },
+ [11853]={
+ ["next_chapter"]=11854,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1688,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=556888,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=20563,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2077,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=20563,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2107,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1185,
+ ["unit"]=0
+ }
+ },
+ [11854]={
+ ["next_chapter"]=11855,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1690,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=557589,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=20768,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2098,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=20768,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2107,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1185,
+ ["unit"]=0
+ }
+ },
+ [11855]={
+ ["next_chapter"]=11856,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1692,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=558292,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=20976,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2119,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=20976,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2107,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1185,
+ ["unit"]=0
+ }
+ },
+ [11856]={
+ ["next_chapter"]=11857,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1694,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=558995,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=21186,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2140,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=21186,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2107,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1185,
+ ["unit"]=0
+ }
+ },
+ [11857]={
+ ["next_chapter"]=11858,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1696,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=559699,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=21398,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2161,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=21398,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2107,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1185,
+ ["unit"]=0
+ }
+ },
+ [11858]={
+ ["next_chapter"]=11859,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1698,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=560403,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=21611,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2183,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=21611,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2107,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1185,
+ ["unit"]=0
+ }
+ },
+ [11859]={
+ ["next_chapter"]=11860,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1700,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=561108,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=21828,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2205,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=21828,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2107,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1185,
+ ["unit"]=0
+ }
+ },
+ [11860]={
+ ["next_chapter"]=11861,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=1702,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=561813,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=22046,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2227,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=22046,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2328,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1186,
+ ["unit"]=0
+ }
+ },
+ [11861]={
+ ["next_chapter"]=11862,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1705,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=562519,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=22266,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2249,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=22266,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2328,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1186,
+ ["unit"]=0
+ }
+ },
+ [11862]={
+ ["next_chapter"]=11863,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1707,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=563226,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=22489,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2271,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=22489,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2328,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1186,
+ ["unit"]=0
+ }
+ },
+ [11863]={
+ ["next_chapter"]=11864,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1709,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=563933,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=22714,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2294,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=22714,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2328,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1186,
+ ["unit"]=0
+ }
+ },
+ [11864]={
+ ["next_chapter"]=11865,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1711,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=564641,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=22941,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2317,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=22941,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2328,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1186,
+ ["unit"]=0
+ }
+ },
+ [11865]={
+ ["next_chapter"]=11866,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1713,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=565350,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=23170,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2340,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=23170,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2328,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1186,
+ ["unit"]=0
+ }
+ },
+ [11866]={
+ ["next_chapter"]=11867,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1715,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=566059,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=23402,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2364,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=23402,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2328,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1186,
+ ["unit"]=0
+ }
+ },
+ [11867]={
+ ["next_chapter"]=11868,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1717,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=566768,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=23636,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2387,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=23636,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2328,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1186,
+ ["unit"]=0
+ }
+ },
+ [11868]={
+ ["next_chapter"]=11869,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1720,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=567479,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=23873,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2411,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=23873,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2328,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1186,
+ ["unit"]=0
+ }
+ },
+ [11869]={
+ ["next_chapter"]=11870,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1722,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=568190,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=24111,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2435,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=24111,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2328,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1186,
+ ["unit"]=0
+ }
+ },
+ [11870]={
+ ["next_chapter"]=11871,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=1724,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=568901,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=24352,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2460,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=24352,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2571,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1187,
+ ["unit"]=0
+ }
+ },
+ [11871]={
+ ["next_chapter"]=11872,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1726,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=569613,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=24596,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2484,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=24596,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2571,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1187,
+ ["unit"]=0
+ }
+ },
+ [11872]={
+ ["next_chapter"]=11873,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1728,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=570326,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=24842,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2509,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=24842,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2571,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1187,
+ ["unit"]=0
+ }
+ },
+ [11873]={
+ ["next_chapter"]=11874,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1730,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=571039,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=25090,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2534,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=25090,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2571,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1187,
+ ["unit"]=0
+ }
+ },
+ [11874]={
+ ["next_chapter"]=11875,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1733,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=571753,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=25341,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2559,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=25341,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2571,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1187,
+ ["unit"]=0
+ }
+ },
+ [11875]={
+ ["next_chapter"]=11876,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1735,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=572468,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=25595,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2585,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=25595,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2571,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1187,
+ ["unit"]=0
+ }
+ },
+ [11876]={
+ ["next_chapter"]=11877,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1737,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=573183,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=25851,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2611,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=25851,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2571,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1187,
+ ["unit"]=0
+ }
+ },
+ [11877]={
+ ["next_chapter"]=11878,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1739,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=573898,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=26109,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2637,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=26109,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2571,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1187,
+ ["unit"]=0
+ }
+ },
+ [11878]={
+ ["next_chapter"]=11879,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1741,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=574615,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=26370,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2663,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=26370,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2571,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1187,
+ ["unit"]=0
+ }
+ },
+ [11879]={
+ ["next_chapter"]=11880,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1743,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=575331,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=26634,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2690,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=26634,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2571,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1187,
+ ["unit"]=0
+ }
+ },
+ [11880]={
+ ["next_chapter"]=11881,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=1746,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=576049,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=26900,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2717,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=26900,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2840,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1188,
+ ["unit"]=0
+ }
+ },
+ [11881]={
+ ["next_chapter"]=11882,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1748,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=576767,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=27169,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2744,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=27169,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2840,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1188,
+ ["unit"]=0
+ }
+ },
+ [11882]={
+ ["next_chapter"]=11883,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1750,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=577486,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=27441,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2772,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=27441,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2840,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1188,
+ ["unit"]=0
+ }
+ },
+ [11883]={
+ ["next_chapter"]=11884,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1752,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=578205,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=27715,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2799,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=27715,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2840,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1188,
+ ["unit"]=0
+ }
+ },
+ [11884]={
+ ["next_chapter"]=11885,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1754,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=578925,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=27992,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2827,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=27992,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2840,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1188,
+ ["unit"]=0
+ }
+ },
+ [11885]={
+ ["next_chapter"]=11886,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1757,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=579645,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=28272,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2856,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=28272,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2840,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1188,
+ ["unit"]=0
+ }
+ },
+ [11886]={
+ ["next_chapter"]=11887,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1759,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=580367,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=28555,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2884,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=28555,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2840,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1188,
+ ["unit"]=0
+ }
+ },
+ [11887]={
+ ["next_chapter"]=11888,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1761,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=581088,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=28841,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2913,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=28841,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2840,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1188,
+ ["unit"]=0
+ }
+ },
+ [11888]={
+ ["next_chapter"]=11889,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1763,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=581811,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=29129,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2942,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=29129,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2840,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1188,
+ ["unit"]=0
+ }
+ },
+ [11889]={
+ ["next_chapter"]=11890,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1765,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=582534,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=29420,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2971,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=29420,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=2840,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1188,
+ ["unit"]=0
+ }
+ },
+ [11890]={
+ ["next_chapter"]=11891,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=1767,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=583257,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=29715,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3001,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=29715,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3137,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1189,
+ ["unit"]=0
+ }
+ },
+ [11891]={
+ ["next_chapter"]=11892,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1770,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=583981,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=30012,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3031,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=30012,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3137,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1189,
+ ["unit"]=0
+ }
+ },
+ [11892]={
+ ["next_chapter"]=11893,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1772,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=584706,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=30312,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3061,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=30312,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3137,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1189,
+ ["unit"]=0
+ }
+ },
+ [11893]={
+ ["next_chapter"]=11894,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1774,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=585431,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=30615,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3092,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=30615,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3137,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1189,
+ ["unit"]=0
+ }
+ },
+ [11894]={
+ ["next_chapter"]=11895,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1776,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=586157,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=30921,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3123,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=30921,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3137,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1189,
+ ["unit"]=0
+ }
+ },
+ [11895]={
+ ["next_chapter"]=11896,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1778,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=586884,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=31230,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3154,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=31230,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3137,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1189,
+ ["unit"]=0
+ }
+ },
+ [11896]={
+ ["next_chapter"]=11897,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1781,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=587611,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=31543,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3186,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=31543,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3137,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1189,
+ ["unit"]=0
+ }
+ },
+ [11897]={
+ ["next_chapter"]=11898,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1783,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=588339,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=31858,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3218,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=31858,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3137,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1189,
+ ["unit"]=0
+ }
+ },
+ [11898]={
+ ["next_chapter"]=11899,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1785,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=589067,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=32177,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3250,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=32177,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3137,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1189,
+ ["unit"]=0
+ }
+ },
+ [11899]={
+ ["next_chapter"]=11900,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1787,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=589796,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=32498,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3282,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=32498,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3137,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1189,
+ ["unit"]=0
+ }
+ },
+ [11900]={
+ ["next_chapter"]=11901,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=1789,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=590526,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=32823,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3315,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=32823,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3466,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1190,
+ ["unit"]=0
+ }
+ },
+ [11901]={
+ ["next_chapter"]=11902,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1792,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=591256,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=33152,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3348,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=33152,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3466,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1190,
+ ["unit"]=0
+ }
+ },
+ [11902]={
+ ["next_chapter"]=11903,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1794,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=591987,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=33483,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3382,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=33483,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3466,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1190,
+ ["unit"]=0
+ }
+ },
+ [11903]={
+ ["next_chapter"]=11904,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1796,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=592718,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=33818,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3416,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=33818,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3466,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1190,
+ ["unit"]=0
+ }
+ },
+ [11904]={
+ ["next_chapter"]=11905,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1798,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=593450,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=34156,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3450,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=34156,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3466,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1190,
+ ["unit"]=0
+ }
+ },
+ [11905]={
+ ["next_chapter"]=11906,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1801,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=594183,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=34498,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3484,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=34498,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3466,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1190,
+ ["unit"]=0
+ }
+ },
+ [11906]={
+ ["next_chapter"]=11907,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1803,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=594916,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=34843,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3519,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=34843,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3466,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1190,
+ ["unit"]=0
+ }
+ },
+ [11907]={
+ ["next_chapter"]=11908,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1805,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=595650,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=35191,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3554,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=35191,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3466,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1190,
+ ["unit"]=0
+ }
+ },
+ [11908]={
+ ["next_chapter"]=11909,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1807,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=596385,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=35543,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3590,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=35543,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3466,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1190,
+ ["unit"]=0
+ }
+ },
+ [11909]={
+ ["next_chapter"]=11910,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1809,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=597120,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=35898,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3626,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=35898,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3466,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1190,
+ ["unit"]=0
+ }
+ },
+ [11910]={
+ ["next_chapter"]=11911,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=1812,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=597855,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=36257,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3662,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=36257,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3828,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1191,
+ ["unit"]=0
+ }
+ },
+ [11911]={
+ ["next_chapter"]=11912,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1814,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=598592,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=36620,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3699,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=36620,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3828,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1191,
+ ["unit"]=0
+ }
+ },
+ [11912]={
+ ["next_chapter"]=11913,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1816,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=599329,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=36986,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3736,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=36986,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3828,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1191,
+ ["unit"]=0
+ }
+ },
+ [11913]={
+ ["next_chapter"]=11914,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1818,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=600066,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=37356,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3773,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=37356,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3828,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1191,
+ ["unit"]=0
+ }
+ },
+ [11914]={
+ ["next_chapter"]=11915,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1821,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=600804,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=37730,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3811,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=37730,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3828,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1191,
+ ["unit"]=0
+ }
+ },
+ [11915]={
+ ["next_chapter"]=11916,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1823,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=601543,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=38107,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3849,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=38107,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3828,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1191,
+ ["unit"]=0
+ }
+ },
+ [11916]={
+ ["next_chapter"]=11917,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1825,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=602282,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=38488,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3887,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=38488,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3828,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1191,
+ ["unit"]=0
+ }
+ },
+ [11917]={
+ ["next_chapter"]=11918,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1827,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=603022,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=38873,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3926,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=38873,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3828,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1191,
+ ["unit"]=0
+ }
+ },
+ [11918]={
+ ["next_chapter"]=11919,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1830,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=603763,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=39262,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3965,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=39262,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3828,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1191,
+ ["unit"]=0
+ }
+ },
+ [11919]={
+ ["next_chapter"]=11920,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1832,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=604504,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=39654,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4005,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=39654,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=3828,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1191,
+ ["unit"]=0
+ }
+ },
+ [11920]={
+ ["next_chapter"]=11921,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=1834,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=605246,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=40051,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4045,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=40051,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=4229,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1192,
+ ["unit"]=0
+ }
+ },
+ [11921]={
+ ["next_chapter"]=11922,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1836,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=605988,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=40451,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4086,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=40451,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=4229,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1192,
+ ["unit"]=0
+ }
+ },
+ [11922]={
+ ["next_chapter"]=11923,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1839,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=606731,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=40856,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4126,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=40856,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=4229,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1192,
+ ["unit"]=0
+ }
+ },
+ [11923]={
+ ["next_chapter"]=11924,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1841,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=607475,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=41264,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4168,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=41264,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=4229,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1192,
+ ["unit"]=0
+ }
+ },
+ [11924]={
+ ["next_chapter"]=11925,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1843,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=608219,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=41677,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4209,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=41677,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=4229,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1192,
+ ["unit"]=0
+ }
+ },
+ [11925]={
+ ["next_chapter"]=11926,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1845,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=608964,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=42094,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4251,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=42094,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=4229,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1192,
+ ["unit"]=0
+ }
+ },
+ [11926]={
+ ["next_chapter"]=11927,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1848,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=609710,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=42515,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4294,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=42515,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=4229,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1192,
+ ["unit"]=0
+ }
+ },
+ [11927]={
+ ["next_chapter"]=11928,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1850,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=610456,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=42940,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4337,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=42940,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=4229,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1192,
+ ["unit"]=0
+ }
+ },
+ [11928]={
+ ["next_chapter"]=11929,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1852,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=611203,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=43369,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4380,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=43369,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=4229,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1192,
+ ["unit"]=0
+ }
+ },
+ [11929]={
+ ["next_chapter"]=11930,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1854,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=611950,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=43803,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4424,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=43803,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=4229,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1192,
+ ["unit"]=0
+ }
+ },
+ [11930]={
+ ["next_chapter"]=11931,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=1857,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=612698,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=44241,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4468,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=44241,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=4671,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1193,
+ ["unit"]=0
+ }
+ },
+ [11931]={
+ ["next_chapter"]=11932,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1859,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=613446,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=44683,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4513,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=44683,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=4671,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1193,
+ ["unit"]=0
+ }
+ },
+ [11932]={
+ ["next_chapter"]=11933,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1861,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=614196,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=45130,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4558,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=45130,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=4671,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1193,
+ ["unit"]=0
+ }
+ },
+ [11933]={
+ ["next_chapter"]=11934,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1863,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=614945,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=45581,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4604,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=45581,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=4671,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1193,
+ ["unit"]=0
+ }
+ },
+ [11934]={
+ ["next_chapter"]=11935,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1866,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=615696,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=46037,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4650,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=46037,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=4671,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1193,
+ ["unit"]=0
+ }
+ },
+ [11935]={
+ ["next_chapter"]=11936,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1868,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=616447,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=46498,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4696,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=46498,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=4671,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1193,
+ ["unit"]=0
+ }
+ },
+ [11936]={
+ ["next_chapter"]=11937,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1870,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=617199,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=46963,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4743,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=46963,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=4671,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1193,
+ ["unit"]=0
+ }
+ },
+ [11937]={
+ ["next_chapter"]=11938,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1873,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=617951,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=47432,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4791,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=47432,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=4671,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1193,
+ ["unit"]=0
+ }
+ },
+ [11938]={
+ ["next_chapter"]=11939,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1875,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=618704,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=47907,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4839,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=47907,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=4671,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1193,
+ ["unit"]=0
+ }
+ },
+ [11939]={
+ ["next_chapter"]=11940,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1877,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=619457,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=48386,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4887,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=48386,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=4671,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1193,
+ ["unit"]=0
+ }
+ },
+ [11940]={
+ ["next_chapter"]=11941,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=1879,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=620211,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=48869,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4936,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=48869,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=5160,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1194,
+ ["unit"]=0
+ }
+ },
+ [11941]={
+ ["next_chapter"]=11942,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1882,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=620966,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=49358,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4985,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=49358,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=5160,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1194,
+ ["unit"]=0
+ }
+ },
+ [11942]={
+ ["next_chapter"]=11943,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1884,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=621721,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=49852,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5035,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=49852,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=5160,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1194,
+ ["unit"]=0
+ }
+ },
+ [11943]={
+ ["next_chapter"]=11944,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1886,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=622477,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=50350,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5085,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=50350,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=5160,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1194,
+ ["unit"]=0
+ }
+ },
+ [11944]={
+ ["next_chapter"]=11945,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1889,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=623234,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=50854,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5136,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=50854,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=5160,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1194,
+ ["unit"]=0
+ }
+ },
+ [11945]={
+ ["next_chapter"]=11946,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1891,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=623991,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=51362,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5188,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=51362,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=5160,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1194,
+ ["unit"]=0
+ }
+ },
+ [11946]={
+ ["next_chapter"]=11947,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1893,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=624749,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=51876,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5239,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=51876,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=5160,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1194,
+ ["unit"]=0
+ }
+ },
+ [11947]={
+ ["next_chapter"]=11948,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1895,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=625508,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=52395,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5292,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=52395,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=5160,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1194,
+ ["unit"]=0
+ }
+ },
+ [11948]={
+ ["next_chapter"]=11949,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1898,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=626267,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=52919,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5345,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=52919,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=5160,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1194,
+ ["unit"]=0
+ }
+ },
+ [11949]={
+ ["next_chapter"]=11950,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1900,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=627026,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=53448,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5398,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=53448,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=5160,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1194,
+ ["unit"]=0
+ }
+ },
+ [11950]={
+ ["next_chapter"]=11951,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=1902,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=627787,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=53982,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5452,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=53982,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=5700,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1195,
+ ["unit"]=0
+ }
+ },
+ [11951]={
+ ["next_chapter"]=11952,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1905,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=628548,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=54522,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5507,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=54522,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=5700,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1195,
+ ["unit"]=0
+ }
+ },
+ [11952]={
+ ["next_chapter"]=11953,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1907,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=629309,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=55067,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5562,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=55067,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=5700,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1195,
+ ["unit"]=0
+ }
+ },
+ [11953]={
+ ["next_chapter"]=11954,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1909,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=630071,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=55618,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5617,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=55618,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=5700,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1195,
+ ["unit"]=0
+ }
+ },
+ [11954]={
+ ["next_chapter"]=11955,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1912,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=630834,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=56174,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5674,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=56174,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=5700,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1195,
+ ["unit"]=0
+ }
+ },
+ [11955]={
+ ["next_chapter"]=11956,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1914,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=631598,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=56736,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5730,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=56736,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=5700,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1195,
+ ["unit"]=0
+ }
+ },
+ [11956]={
+ ["next_chapter"]=11957,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1916,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=632362,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=57303,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5788,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=57303,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=5700,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1195,
+ ["unit"]=0
+ }
+ },
+ [11957]={
+ ["next_chapter"]=11958,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1919,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=633126,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=57876,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5846,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=57876,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=5700,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1195,
+ ["unit"]=0
+ }
+ },
+ [11958]={
+ ["next_chapter"]=11959,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1921,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=633892,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=58455,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5904,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=58455,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=5700,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1195,
+ ["unit"]=0
+ }
+ },
+ [11959]={
+ ["next_chapter"]=11960,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1923,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=634658,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=59040,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5963,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=59040,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=5700,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1195,
+ ["unit"]=0
+ }
+ },
+ [11960]={
+ ["next_chapter"]=11961,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=1926,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=635424,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=59630,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6023,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=59630,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=6296,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1196,
+ ["unit"]=0
+ }
+ },
+ [11961]={
+ ["next_chapter"]=11962,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1928,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=636191,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=60226,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6083,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=60226,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=6296,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1196,
+ ["unit"]=0
+ }
+ },
+ [11962]={
+ ["next_chapter"]=11963,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1930,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=636959,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=60829,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6144,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=60829,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=6296,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1196,
+ ["unit"]=0
+ }
+ },
+ [11963]={
+ ["next_chapter"]=11964,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1933,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=637728,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=61437,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6205,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=61437,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=6296,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1196,
+ ["unit"]=0
+ }
+ },
+ [11964]={
+ ["next_chapter"]=11965,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1935,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=638497,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=62051,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6267,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=62051,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=6296,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1196,
+ ["unit"]=0
+ }
+ },
+ [11965]={
+ ["next_chapter"]=11966,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1937,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=639266,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=62672,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6330,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=62672,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=6296,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1196,
+ ["unit"]=0
+ }
+ },
+ [11966]={
+ ["next_chapter"]=11967,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1940,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=640037,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=63298,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6393,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=63298,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=6296,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1196,
+ ["unit"]=0
+ }
+ },
+ [11967]={
+ ["next_chapter"]=11968,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1942,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=640807,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=63931,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6457,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=63931,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=6296,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1196,
+ ["unit"]=0
+ }
+ },
+ [11968]={
+ ["next_chapter"]=11969,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1944,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=641579,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=64571,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6522,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=64571,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=6296,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1196,
+ ["unit"]=0
+ }
+ },
+ [11969]={
+ ["next_chapter"]=11970,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1947,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=642351,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=65216,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6587,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=65216,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=6296,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1196,
+ ["unit"]=0
+ }
+ },
+ [11970]={
+ ["next_chapter"]=11971,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=1949,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=643124,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=65869,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6653,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=65869,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=6955,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1197,
+ ["unit"]=0
+ }
+ },
+ [11971]={
+ ["next_chapter"]=11972,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1951,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=643897,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=66527,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6719,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=66527,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=6955,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1197,
+ ["unit"]=0
+ }
+ },
+ [11972]={
+ ["next_chapter"]=11973,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1954,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=644671,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=67193,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6786,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=67193,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=6955,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1197,
+ ["unit"]=0
+ }
+ },
+ [11973]={
+ ["next_chapter"]=11974,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1956,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=645446,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=67865,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6854,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=67865,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=6955,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1197,
+ ["unit"]=0
+ }
+ },
+ [11974]={
+ ["next_chapter"]=11975,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1958,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=646221,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=68543,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6923,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=68543,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=6955,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1197,
+ ["unit"]=0
+ }
+ },
+ [11975]={
+ ["next_chapter"]=11976,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1961,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=646997,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=69229,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6992,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=69229,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=6955,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1197,
+ ["unit"]=0
+ }
+ },
+ [11976]={
+ ["next_chapter"]=11977,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1963,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=647774,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=69921,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7062,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=69921,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=6955,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1197,
+ ["unit"]=0
+ }
+ },
+ [11977]={
+ ["next_chapter"]=11978,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1965,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=648551,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=70620,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7133,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=70620,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=6955,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1197,
+ ["unit"]=0
+ }
+ },
+ [11978]={
+ ["next_chapter"]=11979,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1968,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=649329,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=71326,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7204,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=71326,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=6955,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1197,
+ ["unit"]=0
+ }
+ },
+ [11979]={
+ ["next_chapter"]=11980,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1970,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=650107,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=72040,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7276,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=72040,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=6955,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1197,
+ ["unit"]=0
+ }
+ },
+ [11980]={
+ ["next_chapter"]=11981,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=1972,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=650886,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=72760,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7349,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=72760,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=7682,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1198,
+ ["unit"]=0
+ }
+ },
+ [11981]={
+ ["next_chapter"]=11982,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1975,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=651666,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=73488,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7422,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=73488,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=7682,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1198,
+ ["unit"]=0
+ }
+ },
+ [11982]={
+ ["next_chapter"]=11983,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1977,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=652446,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=74222,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7496,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=74222,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=7682,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1198,
+ ["unit"]=0
+ }
+ },
+ [11983]={
+ ["next_chapter"]=11984,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1979,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=653227,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=74965,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7571,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=74965,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=7682,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1198,
+ ["unit"]=0
+ }
+ },
+ [11984]={
+ ["next_chapter"]=11985,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1982,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=654009,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=75714,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7647,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=75714,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=7682,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1198,
+ ["unit"]=0
+ }
+ },
+ [11985]={
+ ["next_chapter"]=11986,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1984,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=654791,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=76471,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7724,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=76471,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=7682,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1198,
+ ["unit"]=0
+ }
+ },
+ [11986]={
+ ["next_chapter"]=11987,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1987,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=655574,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=77236,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7801,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=77236,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=7682,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1198,
+ ["unit"]=0
+ }
+ },
+ [11987]={
+ ["next_chapter"]=11988,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1989,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=656357,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=78008,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7879,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=78008,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=7682,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1198,
+ ["unit"]=0
+ }
+ },
+ [11988]={
+ ["next_chapter"]=11989,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1991,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=657142,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=78789,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7958,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=78789,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=7682,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1198,
+ ["unit"]=0
+ }
+ },
+ [11989]={
+ ["next_chapter"]=11990,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1994,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=657926,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=79576,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8037,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=79576,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=7682,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1198,
+ ["unit"]=0
+ }
+ },
+ [11990]={
+ ["next_chapter"]=11991,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=1996,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=658712,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=80372,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8118,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=80372,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=8486,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1199,
+ ["unit"]=0
+ }
+ },
+ [11991]={
+ ["next_chapter"]=11992,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=1998,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=659498,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=81176,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8199,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=81176,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=8486,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1199,
+ ["unit"]=0
+ }
+ },
+ [11992]={
+ ["next_chapter"]=11993,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2001,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=660284,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=81988,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8281,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=81988,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=8486,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1199,
+ ["unit"]=0
+ }
+ },
+ [11993]={
+ ["next_chapter"]=11994,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2003,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=661072,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=82808,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8364,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=82808,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=8486,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1199,
+ ["unit"]=0
+ }
+ },
+ [11994]={
+ ["next_chapter"]=11995,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2006,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=661859,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=83636,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8447,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=83636,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=8486,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1199,
+ ["unit"]=0
+ }
+ },
+ [11995]={
+ ["next_chapter"]=11996,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2008,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=662648,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=84472,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8532,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=84472,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=8486,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1199,
+ ["unit"]=0
+ }
+ },
+ [11996]={
+ ["next_chapter"]=11997,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2010,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=663437,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=85317,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8617,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=85317,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=8486,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1199,
+ ["unit"]=0
+ }
+ },
+ [11997]={
+ ["next_chapter"]=11998,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2013,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=664227,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=86170,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8703,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=86170,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=8486,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1199,
+ ["unit"]=0
+ }
+ },
+ [11998]={
+ ["next_chapter"]=11999,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2015,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=665017,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=87032,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8790,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=87032,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=8486,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1199,
+ ["unit"]=0
+ }
+ },
+ [11999]={
+ ["next_chapter"]=12000,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2018,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=665808,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=87902,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8878,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=87902,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=8486,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1199,
+ ["unit"]=0
+ }
+ },
+ [12000]={
+ ["next_chapter"]=12001,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=2020,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=666600,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=88781,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8967,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=88781,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=9374,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1200,
+ ["unit"]=0
+ }
+ },
+ [12001]={
+ ["next_chapter"]=12002,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2022,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=667392,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=89669,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9057,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=89669,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=9374,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1200,
+ ["unit"]=0
+ }
+ },
+ [12002]={
+ ["next_chapter"]=12003,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2025,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=668185,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=90565,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9147,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=90565,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=9374,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1200,
+ ["unit"]=0
+ }
+ },
+ [12003]={
+ ["next_chapter"]=12004,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2027,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=668979,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=91471,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9239,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=91471,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=9374,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1200,
+ ["unit"]=0
+ }
+ },
+ [12004]={
+ ["next_chapter"]=12005,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2030,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=669773,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=92386,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9331,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=92386,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=9374,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1200,
+ ["unit"]=0
+ }
+ },
+ [12005]={
+ ["next_chapter"]=12006,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2032,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=670568,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=93310,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9424,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=93310,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=9374,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1200,
+ ["unit"]=0
+ }
+ },
+ [12006]={
+ ["next_chapter"]=12007,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2034,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=671363,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=94243,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9519,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=94243,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=9374,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1200,
+ ["unit"]=0
+ }
+ },
+ [12007]={
+ ["next_chapter"]=12008,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2037,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=672160,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=95185,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9614,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=95185,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=9374,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1200,
+ ["unit"]=0
+ }
+ },
+ [12008]={
+ ["next_chapter"]=12009,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2039,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=672956,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=96137,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9710,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=96137,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=9374,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1200,
+ ["unit"]=0
+ }
+ },
+ [12009]={
+ ["next_chapter"]=12010,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2042,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=673754,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=97098,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9807,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=97098,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=9374,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1200,
+ ["unit"]=0
+ }
+ },
+ [12010]={
+ ["next_chapter"]=12011,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=2044,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=674552,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=98069,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9905,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=98069,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=10354,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1201,
+ ["unit"]=0
+ }
+ },
+ [12011]={
+ ["next_chapter"]=12012,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2047,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=675350,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=99050,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10004,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=99050,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=10354,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1201,
+ ["unit"]=0
+ }
+ },
+ [12012]={
+ ["next_chapter"]=12013,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2049,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=676150,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=100041,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10104,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=100041,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=10354,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1201,
+ ["unit"]=0
+ }
+ },
+ [12013]={
+ ["next_chapter"]=12014,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2051,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=676950,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=101041,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10205,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=101041,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=10354,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1201,
+ ["unit"]=0
+ }
+ },
+ [12014]={
+ ["next_chapter"]=12015,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2054,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=677750,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=102051,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10307,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=102051,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=10354,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1201,
+ ["unit"]=0
+ }
+ },
+ [12015]={
+ ["next_chapter"]=12016,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2056,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=678551,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=103072,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10410,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=103072,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=10354,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1201,
+ ["unit"]=0
+ }
+ },
+ [12016]={
+ ["next_chapter"]=12017,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2059,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=679353,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=104103,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10514,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=104103,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=10354,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1201,
+ ["unit"]=0
+ }
+ },
+ [12017]={
+ ["next_chapter"]=12018,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2061,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=680156,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=105144,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10620,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=105144,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=10354,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1201,
+ ["unit"]=0
+ }
+ },
+ [12018]={
+ ["next_chapter"]=12019,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2064,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=680959,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=106195,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10726,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=106195,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=10354,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1201,
+ ["unit"]=0
+ }
+ },
+ [12019]={
+ ["next_chapter"]=12020,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2066,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=681763,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=107257,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10833,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=107257,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=10354,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1201,
+ ["unit"]=0
+ }
+ },
+ [12020]={
+ ["next_chapter"]=12021,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=2068,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=682567,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=108330,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10941,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=108330,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=11438,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1202,
+ ["unit"]=0
+ }
+ },
+ [12021]={
+ ["next_chapter"]=12022,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2071,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=683372,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=109413,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11051,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=109413,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=11438,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1202,
+ ["unit"]=0
+ }
+ },
+ [12022]={
+ ["next_chapter"]=12023,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2073,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=684178,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=110507,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11161,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=110507,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=11438,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1202,
+ ["unit"]=0
+ }
+ },
+ [12023]={
+ ["next_chapter"]=12024,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2076,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=684984,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=111612,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11273,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=111612,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=11438,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1202,
+ ["unit"]=0
+ }
+ },
+ [12024]={
+ ["next_chapter"]=12025,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2078,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=685791,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=112728,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11386,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=112728,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=11438,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1202,
+ ["unit"]=0
+ }
+ },
+ [12025]={
+ ["next_chapter"]=12026,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2081,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=686599,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=113856,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11499,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=113856,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=11438,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1202,
+ ["unit"]=0
+ }
+ },
+ [12026]={
+ ["next_chapter"]=12027,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2083,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=687407,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=114994,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11614,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=114994,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=11438,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1202,
+ ["unit"]=0
+ }
+ },
+ [12027]={
+ ["next_chapter"]=12028,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2086,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=688216,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=116144,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11731,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=116144,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=11438,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1202,
+ ["unit"]=0
+ }
+ },
+ [12028]={
+ ["next_chapter"]=12029,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2088,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=689025,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=117305,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11848,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=117305,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=11438,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1202,
+ ["unit"]=0
+ }
+ },
+ [12029]={
+ ["next_chapter"]=12030,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2090,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=689835,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=118479,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11966,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=118479,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=11438,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1202,
+ ["unit"]=0
+ }
+ },
+ [12030]={
+ ["next_chapter"]=12031,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=2093,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=690646,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=119663,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12086,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=119663,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=12634,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1203,
+ ["unit"]=0
+ }
+ },
+ [12031]={
+ ["next_chapter"]=12032,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2095,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=691458,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=120860,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12207,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=120860,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=12634,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1203,
+ ["unit"]=0
+ }
+ },
+ [12032]={
+ ["next_chapter"]=12033,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2098,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=692270,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=122069,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12329,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=122069,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=12634,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1203,
+ ["unit"]=0
+ }
+ },
+ [12033]={
+ ["next_chapter"]=12034,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2100,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=693083,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=123289,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12452,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=123289,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=12634,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1203,
+ ["unit"]=0
+ }
+ },
+ [12034]={
+ ["next_chapter"]=12035,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2103,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=693896,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=124522,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12577,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=124522,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=12634,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1203,
+ ["unit"]=0
+ }
+ },
+ [12035]={
+ ["next_chapter"]=12036,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2105,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=694710,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=125767,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12703,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=125767,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=12634,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1203,
+ ["unit"]=0
+ }
+ },
+ [12036]={
+ ["next_chapter"]=12037,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2108,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=695525,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=127025,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12830,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=127025,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=12634,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1203,
+ ["unit"]=0
+ }
+ },
+ [12037]={
+ ["next_chapter"]=12038,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2110,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=696340,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=128295,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12958,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=128295,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=12634,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1203,
+ ["unit"]=0
+ }
+ },
+ [12038]={
+ ["next_chapter"]=12039,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2113,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=697156,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=129578,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13087,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=129578,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=12634,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1203,
+ ["unit"]=0
+ }
+ },
+ [12039]={
+ ["next_chapter"]=12040,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2115,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=697972,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=130874,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13218,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=130874,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=12634,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1203,
+ ["unit"]=0
+ }
+ },
+ [12040]={
+ ["next_chapter"]=12041,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=2118,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=698790,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=132183,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13350,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=132183,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=13956,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1204,
+ ["unit"]=0
+ }
+ },
+ [12041]={
+ ["next_chapter"]=12042,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2120,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=699607,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=133505,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13484,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=133505,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=13956,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1204,
+ ["unit"]=0
+ }
+ },
+ [12042]={
+ ["next_chapter"]=12043,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2123,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=700426,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=134840,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13619,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=134840,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=13956,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1204,
+ ["unit"]=0
+ }
+ },
+ [12043]={
+ ["next_chapter"]=12044,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2125,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=701245,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=136188,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13755,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=136188,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=13956,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1204,
+ ["unit"]=0
+ }
+ },
+ [12044]={
+ ["next_chapter"]=12045,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2127,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=702065,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=137550,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13893,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=137550,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=13956,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1204,
+ ["unit"]=0
+ }
+ },
+ [12045]={
+ ["next_chapter"]=12046,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2130,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=702885,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=138925,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14031,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=138925,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=13956,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1204,
+ ["unit"]=0
+ }
+ },
+ [12046]={
+ ["next_chapter"]=12047,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2132,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=703706,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=140315,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14172,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=140315,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=13956,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1204,
+ ["unit"]=0
+ }
+ },
+ [12047]={
+ ["next_chapter"]=12048,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2135,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=704528,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=141718,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14313,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=141718,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=13956,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1204,
+ ["unit"]=0
+ }
+ },
+ [12048]={
+ ["next_chapter"]=12049,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2137,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=705351,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=143135,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14457,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=143135,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=13956,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1204,
+ ["unit"]=0
+ }
+ },
+ [12049]={
+ ["next_chapter"]=12050,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2140,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=706174,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=144566,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14601,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=144566,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=13956,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1204,
+ ["unit"]=0
+ }
+ },
+ [12050]={
+ ["next_chapter"]=12051,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=2142,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=706997,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=146012,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14747,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=146012,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=15416,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1205,
+ ["unit"]=0
+ }
+ },
+ [12051]={
+ ["next_chapter"]=12052,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2145,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=707822,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=147472,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14895,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=147472,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=15416,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1205,
+ ["unit"]=0
+ }
+ },
+ [12052]={
+ ["next_chapter"]=12053,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2147,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=708647,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=148947,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15044,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=148947,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=15416,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1205,
+ ["unit"]=0
+ }
+ },
+ [12053]={
+ ["next_chapter"]=12054,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2150,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=709472,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=150436,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15194,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=150436,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=15416,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1205,
+ ["unit"]=0
+ }
+ },
+ [12054]={
+ ["next_chapter"]=12055,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2152,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=710298,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=151941,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15346,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=151941,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=15416,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1205,
+ ["unit"]=0
+ }
+ },
+ [12055]={
+ ["next_chapter"]=12056,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2155,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=711125,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=153460,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15499,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=153460,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=15416,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1205,
+ ["unit"]=0
+ }
+ },
+ [12056]={
+ ["next_chapter"]=12057,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2157,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=711953,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=154995,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15654,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=154995,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=15416,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1205,
+ ["unit"]=0
+ }
+ },
+ [12057]={
+ ["next_chapter"]=12058,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2160,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=712781,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=156545,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15811,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=156545,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=15416,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1205,
+ ["unit"]=0
+ }
+ },
+ [12058]={
+ ["next_chapter"]=12059,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2162,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=713610,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=158110,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15969,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=158110,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=15416,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1205,
+ ["unit"]=0
+ }
+ },
+ [12059]={
+ ["next_chapter"]=12060,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2165,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=714439,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=159691,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16129,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=159691,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=15416,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1205,
+ ["unit"]=0
+ }
+ },
+ [12060]={
+ ["next_chapter"]=12061,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=2167,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=715270,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=161288,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16290,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=161288,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=17029,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1206,
+ ["unit"]=0
+ }
+ },
+ [12061]={
+ ["next_chapter"]=12062,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2170,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=716100,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=162901,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16453,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=162901,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=17029,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1206,
+ ["unit"]=0
+ }
+ },
+ [12062]={
+ ["next_chapter"]=12063,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2173,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=716932,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=164530,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16618,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=164530,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=17029,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1206,
+ ["unit"]=0
+ }
+ },
+ [12063]={
+ ["next_chapter"]=12064,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2175,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=717764,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=166175,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16784,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=166175,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=17029,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1206,
+ ["unit"]=0
+ }
+ },
+ [12064]={
+ ["next_chapter"]=12065,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2178,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=718597,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=167837,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16952,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=167837,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=17029,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1206,
+ ["unit"]=0
+ }
+ },
+ [12065]={
+ ["next_chapter"]=12066,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2180,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=719430,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=169515,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17121,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=169515,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=17029,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1206,
+ ["unit"]=0
+ }
+ },
+ [12066]={
+ ["next_chapter"]=12067,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2183,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=720264,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=171211,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17292,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=171211,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=17029,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1206,
+ ["unit"]=0
+ }
+ },
+ [12067]={
+ ["next_chapter"]=12068,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2185,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=721099,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=172923,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17465,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=172923,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=17029,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1206,
+ ["unit"]=0
+ }
+ },
+ [12068]={
+ ["next_chapter"]=12069,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2188,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=721934,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=174652,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17640,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=174652,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=17029,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1206,
+ ["unit"]=0
+ }
+ },
+ [12069]={
+ ["next_chapter"]=12070,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2190,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=722770,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=176398,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17816,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=176398,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=17029,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1206,
+ ["unit"]=0
+ }
+ },
+ [12070]={
+ ["next_chapter"]=12071,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=2193,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=723607,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=178162,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17994,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=178162,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=18811,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1207,
+ ["unit"]=0
+ }
+ },
+ [12071]={
+ ["next_chapter"]=12072,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2195,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=724444,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=179944,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18174,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=179944,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=18811,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1207,
+ ["unit"]=0
+ }
+ },
+ [12072]={
+ ["next_chapter"]=12073,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2198,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=725282,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=181743,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18356,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=181743,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=18811,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1207,
+ ["unit"]=0
+ }
+ },
+ [12073]={
+ ["next_chapter"]=12074,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2200,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=726121,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=183561,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18540,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=183561,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=18811,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1207,
+ ["unit"]=0
+ }
+ },
+ [12074]={
+ ["next_chapter"]=12075,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2203,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=726960,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=185396,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18725,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=185396,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=18811,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1207,
+ ["unit"]=0
+ }
+ },
+ [12075]={
+ ["next_chapter"]=12076,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2205,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=727800,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=187250,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18912,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=187250,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=18811,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1207,
+ ["unit"]=0
+ }
+ },
+ [12076]={
+ ["next_chapter"]=12077,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2208,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=728640,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=189123,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19101,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=189123,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=18811,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1207,
+ ["unit"]=0
+ }
+ },
+ [12077]={
+ ["next_chapter"]=12078,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2211,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=729482,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=191014,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19292,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=191014,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=18811,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1207,
+ ["unit"]=0
+ }
+ },
+ [12078]={
+ ["next_chapter"]=12079,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2213,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=730323,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=192924,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19485,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=192924,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=18811,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1207,
+ ["unit"]=0
+ }
+ },
+ [12079]={
+ ["next_chapter"]=12080,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2216,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=731166,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=194854,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19680,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=194854,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=18811,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1207,
+ ["unit"]=0
+ }
+ },
+ [12080]={
+ ["next_chapter"]=12081,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=2218,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=732009,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=196802,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19877,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=196802,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=20779,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1208,
+ ["unit"]=0
+ }
+ },
+ [12081]={
+ ["next_chapter"]=12082,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2221,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=732853,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=198770,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20076,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=198770,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=20779,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1208,
+ ["unit"]=0
+ }
+ },
+ [12082]={
+ ["next_chapter"]=12083,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2223,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=733697,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=200758,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20277,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=200758,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=20779,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1208,
+ ["unit"]=0
+ }
+ },
+ [12083]={
+ ["next_chapter"]=12084,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2226,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=734543,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=202765,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20479,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=202765,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=20779,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1208,
+ ["unit"]=0
+ }
+ },
+ [12084]={
+ ["next_chapter"]=12085,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2228,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=735388,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=204793,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20684,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=204793,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=20779,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1208,
+ ["unit"]=0
+ }
+ },
+ [12085]={
+ ["next_chapter"]=12086,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2231,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=736235,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=206841,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20891,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=206841,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=20779,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1208,
+ ["unit"]=0
+ }
+ },
+ [12086]={
+ ["next_chapter"]=12087,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2234,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=737082,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=208909,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21100,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=208909,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=20779,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1208,
+ ["unit"]=0
+ }
+ },
+ [12087]={
+ ["next_chapter"]=12088,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2236,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=737930,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=210998,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21311,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=210998,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=20779,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1208,
+ ["unit"]=0
+ }
+ },
+ [12088]={
+ ["next_chapter"]=12089,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2239,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=738778,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=213108,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21524,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=213108,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=20779,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1208,
+ ["unit"]=0
+ }
+ },
+ [12089]={
+ ["next_chapter"]=12090,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2241,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=739627,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=215240,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21739,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=215240,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=20779,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1208,
+ ["unit"]=0
+ }
+ },
+ [12090]={
+ ["next_chapter"]=12091,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=2244,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=740477,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=217392,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21957,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=217392,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=22953,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1209,
+ ["unit"]=0
+ }
+ },
+ [12091]={
+ ["next_chapter"]=12092,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2246,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=741327,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=219566,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22176,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=219566,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=22953,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1209,
+ ["unit"]=0
+ }
+ },
+ [12092]={
+ ["next_chapter"]=12093,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2249,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=742178,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=221762,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22398,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=221762,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=22953,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1209,
+ ["unit"]=0
+ }
+ },
+ [12093]={
+ ["next_chapter"]=12094,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2252,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=743030,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=223979,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22622,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=223979,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=22953,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1209,
+ ["unit"]=0
+ }
+ },
+ [12094]={
+ ["next_chapter"]=12095,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2254,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=743882,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=226219,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22848,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=226219,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=22953,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1209,
+ ["unit"]=0
+ }
+ },
+ [12095]={
+ ["next_chapter"]=12096,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2257,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=744735,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=228481,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23077,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=228481,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=22953,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1209,
+ ["unit"]=0
+ }
+ },
+ [12096]={
+ ["next_chapter"]=12097,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2259,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=745589,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=230766,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23307,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=230766,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=22953,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1209,
+ ["unit"]=0
+ }
+ },
+ [12097]={
+ ["next_chapter"]=12098,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2262,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=746443,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=233074,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23540,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=233074,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=22953,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1209,
+ ["unit"]=0
+ }
+ },
+ [12098]={
+ ["next_chapter"]=12099,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2265,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=747298,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=235404,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23776,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=235404,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=22953,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1209,
+ ["unit"]=0
+ }
+ },
+ [12099]={
+ ["next_chapter"]=12100,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2267,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=748154,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=237758,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24014,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=237758,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=22953,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1209,
+ ["unit"]=0
+ }
+ },
+ [12100]={
+ ["next_chapter"]=12101,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=2270,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=749010,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=240136,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24254,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=240136,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=59,
+ ["grasp_gold_reward"]={
+ ["value"]=25354,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1210,
+ ["unit"]=0
+ }
+ },
+ [12101]={
+ ["next_chapter"]=12102,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2272,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=749867,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=242537,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24496,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=242537,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=25354,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1210,
+ ["unit"]=0
+ }
+ },
+ [12102]={
+ ["next_chapter"]=12103,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2275,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=750725,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=244963,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24741,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=244963,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=25354,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1210,
+ ["unit"]=0
+ }
+ },
+ [12103]={
+ ["next_chapter"]=12104,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2278,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=751583,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=247412,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24989,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=247412,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=25354,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1210,
+ ["unit"]=0
+ }
+ },
+ [12104]={
+ ["next_chapter"]=12105,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2280,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=752442,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=249886,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25239,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=249886,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=25354,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1210,
+ ["unit"]=0
+ }
+ },
+ [12105]={
+ ["next_chapter"]=12106,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2283,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=753302,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=252385,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25491,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=252385,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=25354,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1210,
+ ["unit"]=0
+ }
+ },
+ [12106]={
+ ["next_chapter"]=12107,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2285,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=754162,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=254909,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25746,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=254909,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=25354,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1210,
+ ["unit"]=0
+ }
+ },
+ [12107]={
+ ["next_chapter"]=12108,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2288,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=755023,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=257458,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26003,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=257458,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=25354,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1210,
+ ["unit"]=0
+ }
+ },
+ [12108]={
+ ["next_chapter"]=12109,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2291,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=755884,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=260033,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26263,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=260033,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=25354,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1210,
+ ["unit"]=0
+ }
+ },
+ [12109]={
+ ["next_chapter"]=12110,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2293,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=756747,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=262633,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26526,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=262633,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=25354,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1210,
+ ["unit"]=0
+ }
+ },
+ [12110]={
+ ["next_chapter"]=12111,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=2296,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=757610,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=265259,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26791,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=265259,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=28007,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1211,
+ ["unit"]=0
+ }
+ },
+ [12111]={
+ ["next_chapter"]=12112,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2298,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=758473,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=267912,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27059,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=267912,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=28007,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1211,
+ ["unit"]=0
+ }
+ },
+ [12112]={
+ ["next_chapter"]=12113,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2301,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=759337,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=270591,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27330,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=270591,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=28007,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1211,
+ ["unit"]=0
+ }
+ },
+ [12113]={
+ ["next_chapter"]=12114,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2304,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=760202,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=273297,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27603,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=273297,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=28007,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1211,
+ ["unit"]=0
+ }
+ },
+ [12114]={
+ ["next_chapter"]=12115,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2306,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=761068,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=276030,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27879,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=276030,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=28007,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1211,
+ ["unit"]=0
+ }
+ },
+ [12115]={
+ ["next_chapter"]=12116,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2309,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=761934,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=278790,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28158,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=278790,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=28007,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1211,
+ ["unit"]=0
+ }
+ },
+ [12116]={
+ ["next_chapter"]=12117,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2312,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=762801,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=281578,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28439,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=281578,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=28007,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1211,
+ ["unit"]=0
+ }
+ },
+ [12117]={
+ ["next_chapter"]=12118,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2314,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=763668,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=284394,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28724,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=284394,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=28007,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1211,
+ ["unit"]=0
+ }
+ },
+ [12118]={
+ ["next_chapter"]=12119,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2317,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=764537,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=287238,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29011,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=287238,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=28007,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1211,
+ ["unit"]=0
+ }
+ },
+ [12119]={
+ ["next_chapter"]=12120,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2319,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=765405,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=290110,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29301,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=290110,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=28007,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1211,
+ ["unit"]=0
+ }
+ },
+ [12120]={
+ ["next_chapter"]=12121,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=2322,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=766275,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=293011,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29594,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=293011,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=30937,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1212,
+ ["unit"]=0
+ }
+ },
+ [12121]={
+ ["next_chapter"]=12122,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2325,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=767145,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=295942,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29890,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=295942,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=30937,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1212,
+ ["unit"]=0
+ }
+ },
+ [12122]={
+ ["next_chapter"]=12123,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2327,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=768016,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=298901,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30189,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=298901,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=30937,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1212,
+ ["unit"]=0
+ }
+ },
+ [12123]={
+ ["next_chapter"]=12124,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2330,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=768887,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=301890,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30491,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=301890,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=30937,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1212,
+ ["unit"]=0
+ }
+ },
+ [12124]={
+ ["next_chapter"]=12125,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2333,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=769760,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=304909,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30796,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=304909,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=30937,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1212,
+ ["unit"]=0
+ }
+ },
+ [12125]={
+ ["next_chapter"]=12126,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2335,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=770633,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=307958,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31104,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=307958,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=30937,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1212,
+ ["unit"]=0
+ }
+ },
+ [12126]={
+ ["next_chapter"]=12127,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2338,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=771506,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=311038,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31415,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=311038,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=30937,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1212,
+ ["unit"]=0
+ }
+ },
+ [12127]={
+ ["next_chapter"]=12128,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2341,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=772380,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=314148,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31729,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=314148,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=30937,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1212,
+ ["unit"]=0
+ }
+ },
+ [12128]={
+ ["next_chapter"]=12129,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2343,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=773255,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=317289,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32046,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=317289,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=30937,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1212,
+ ["unit"]=0
+ }
+ },
+ [12129]={
+ ["next_chapter"]=12130,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2346,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=774131,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=320462,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32367,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=320462,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=30937,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1212,
+ ["unit"]=0
+ }
+ },
+ [12130]={
+ ["next_chapter"]=12131,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=2349,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=775007,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=323667,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32690,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=323667,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=34173,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1213,
+ ["unit"]=0
+ }
+ },
+ [12131]={
+ ["next_chapter"]=12132,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2351,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=775884,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=326904,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33017,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=326904,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=34173,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1213,
+ ["unit"]=0
+ }
+ },
+ [12132]={
+ ["next_chapter"]=12133,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2354,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=776761,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=330173,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33347,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=330173,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=34173,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1213,
+ ["unit"]=0
+ }
+ },
+ [12133]={
+ ["next_chapter"]=12134,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2356,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=777639,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=333474,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33681,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=333474,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=34173,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1213,
+ ["unit"]=0
+ }
+ },
+ [12134]={
+ ["next_chapter"]=12135,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2359,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=778518,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=336809,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34018,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=336809,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=34173,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1213,
+ ["unit"]=0
+ }
+ },
+ [12135]={
+ ["next_chapter"]=12136,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2362,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=779398,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=340177,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34358,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=340177,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=34173,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1213,
+ ["unit"]=0
+ }
+ },
+ [12136]={
+ ["next_chapter"]=12137,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2364,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=780278,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=343579,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34701,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=343579,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=34173,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1213,
+ ["unit"]=0
+ }
+ },
+ [12137]={
+ ["next_chapter"]=12138,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2367,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=781159,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=347015,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35048,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=347015,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=34173,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1213,
+ ["unit"]=0
+ }
+ },
+ [12138]={
+ ["next_chapter"]=12139,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2370,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=782040,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=350485,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35399,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=350485,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=34173,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1213,
+ ["unit"]=0
+ }
+ },
+ [12139]={
+ ["next_chapter"]=12140,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2372,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=782922,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=353990,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35753,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=353990,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=34173,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1213,
+ ["unit"]=0
+ }
+ },
+ [12140]={
+ ["next_chapter"]=12141,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=2375,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=783805,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=357530,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36110,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=357530,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=37749,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1214,
+ ["unit"]=0
+ }
+ },
+ [12141]={
+ ["next_chapter"]=12142,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2378,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=784689,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=361105,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36472,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=361105,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=37749,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1214,
+ ["unit"]=0
+ }
+ },
+ [12142]={
+ ["next_chapter"]=12143,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2381,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=785573,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=364716,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36836,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=364716,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=37749,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1214,
+ ["unit"]=0
+ }
+ },
+ [12143]={
+ ["next_chapter"]=12144,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2383,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=786458,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=368363,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37205,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=368363,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=37749,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1214,
+ ["unit"]=0
+ }
+ },
+ [12144]={
+ ["next_chapter"]=12145,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2386,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=787343,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=372047,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37577,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=372047,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=37749,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1214,
+ ["unit"]=0
+ }
+ },
+ [12145]={
+ ["next_chapter"]=12146,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2389,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=788229,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=375767,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37952,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=375767,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=37749,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1214,
+ ["unit"]=0
+ }
+ },
+ [12146]={
+ ["next_chapter"]=12147,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2391,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=789116,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=379525,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=38332,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=379525,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=37749,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1214,
+ ["unit"]=0
+ }
+ },
+ [12147]={
+ ["next_chapter"]=12148,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2394,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=790004,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=383320,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=38715,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=383320,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=37749,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1214,
+ ["unit"]=0
+ }
+ },
+ [12148]={
+ ["next_chapter"]=12149,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2397,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=790892,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=387153,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39102,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=387153,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=37749,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1214,
+ ["unit"]=0
+ }
+ },
+ [12149]={
+ ["next_chapter"]=12150,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2399,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=791781,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=391025,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39494,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=391025,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=37749,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1214,
+ ["unit"]=0
+ }
+ },
+ [12150]={
+ ["next_chapter"]=12151,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=2402,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=792671,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=394935,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39888,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=394935,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=41698,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1215,
+ ["unit"]=0
+ }
+ },
+ [12151]={
+ ["next_chapter"]=12152,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2405,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=793561,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=398885,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=40287,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=398885,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=41698,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1215,
+ ["unit"]=0
+ }
+ },
+ [12152]={
+ ["next_chapter"]=12153,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2407,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=794452,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=402873,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=40690,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=402873,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=41698,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1215,
+ ["unit"]=0
+ }
+ },
+ [12153]={
+ ["next_chapter"]=12154,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2410,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=795343,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=406902,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41097,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=406902,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=41698,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1215,
+ ["unit"]=0
+ }
+ },
+ [12154]={
+ ["next_chapter"]=12155,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2413,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=796236,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=410971,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41508,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=410971,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=41698,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1215,
+ ["unit"]=0
+ }
+ },
+ [12155]={
+ ["next_chapter"]=12156,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2416,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=797128,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=415081,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41923,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=415081,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=41698,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1215,
+ ["unit"]=0
+ }
+ },
+ [12156]={
+ ["next_chapter"]=12157,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2418,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=798022,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=419232,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=42342,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=419232,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=41698,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1215,
+ ["unit"]=0
+ }
+ },
+ [12157]={
+ ["next_chapter"]=12158,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2421,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=798916,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=423424,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=42766,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=423424,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=41698,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1215,
+ ["unit"]=0
+ }
+ },
+ [12158]={
+ ["next_chapter"]=12159,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2424,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=799811,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=427658,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=43193,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=427658,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=41698,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1215,
+ ["unit"]=0
+ }
+ },
+ [12159]={
+ ["next_chapter"]=12160,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2426,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=800707,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=431935,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=43625,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=431935,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=41698,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1215,
+ ["unit"]=0
+ }
+ },
+ [12160]={
+ ["next_chapter"]=12161,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=2429,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=801603,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=436254,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=44062,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=436254,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=46061,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1216,
+ ["unit"]=0
+ }
+ },
+ [12161]={
+ ["next_chapter"]=12162,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2432,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=802500,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=440617,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=44502,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=440617,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=46061,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1216,
+ ["unit"]=0
+ }
+ },
+ [12162]={
+ ["next_chapter"]=12163,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2435,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=803398,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=445023,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=44947,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=445023,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=46061,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1216,
+ ["unit"]=0
+ }
+ },
+ [12163]={
+ ["next_chapter"]=12164,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2437,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=804296,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=449473,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=45397,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=449473,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=46061,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1216,
+ ["unit"]=0
+ }
+ },
+ [12164]={
+ ["next_chapter"]=12165,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2440,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=805195,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=453968,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=45851,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=453968,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=46061,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1216,
+ ["unit"]=0
+ }
+ },
+ [12165]={
+ ["next_chapter"]=12166,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2443,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=806095,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=458508,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=46309,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=458508,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=46061,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1216,
+ ["unit"]=0
+ }
+ },
+ [12166]={
+ ["next_chapter"]=12167,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2445,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=806995,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=463093,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=46772,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=463093,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=46061,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1216,
+ ["unit"]=0
+ }
+ },
+ [12167]={
+ ["next_chapter"]=12168,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2448,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=807896,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=467724,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=47240,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=467724,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=46061,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1216,
+ ["unit"]=0
+ }
+ },
+ [12168]={
+ ["next_chapter"]=12169,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2451,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=808798,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=472401,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=47712,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=472401,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=46061,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1216,
+ ["unit"]=0
+ }
+ },
+ [12169]={
+ ["next_chapter"]=12170,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2454,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=809700,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=477125,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=48190,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=477125,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=46061,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1216,
+ ["unit"]=0
+ }
+ },
+ [12170]={
+ ["next_chapter"]=12171,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=2456,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=810603,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=481896,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=48671,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=481896,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=50880,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1217,
+ ["unit"]=0
+ }
+ },
+ [12171]={
+ ["next_chapter"]=12172,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2459,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=811507,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=486715,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=49158,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=486715,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=50880,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1217,
+ ["unit"]=0
+ }
+ },
+ [12172]={
+ ["next_chapter"]=12173,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2462,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=812411,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=491582,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=49650,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=491582,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=50880,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1217,
+ ["unit"]=0
+ }
+ },
+ [12173]={
+ ["next_chapter"]=12174,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2465,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=813316,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=496498,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=50146,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=496498,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=50880,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1217,
+ ["unit"]=0
+ }
+ },
+ [12174]={
+ ["next_chapter"]=12175,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2467,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=814222,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=501463,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=50648,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=501463,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=50880,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1217,
+ ["unit"]=0
+ }
+ },
+ [12175]={
+ ["next_chapter"]=12176,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2470,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=815128,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=506478,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=51154,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=506478,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=50880,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1217,
+ ["unit"]=0
+ }
+ },
+ [12176]={
+ ["next_chapter"]=12177,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2473,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=816035,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=511542,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=51666,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=511542,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=50880,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1217,
+ ["unit"]=0
+ }
+ },
+ [12177]={
+ ["next_chapter"]=12178,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2476,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=816943,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=516658,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=52182,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=516658,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=50880,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1217,
+ ["unit"]=0
+ }
+ },
+ [12178]={
+ ["next_chapter"]=12179,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2478,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=817852,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=521824,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=52704,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=521824,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=50880,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1217,
+ ["unit"]=0
+ }
+ },
+ [12179]={
+ ["next_chapter"]=12180,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2481,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=818761,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=527043,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=53231,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=527043,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=50880,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1217,
+ ["unit"]=0
+ }
+ },
+ [12180]={
+ ["next_chapter"]=12181,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=2484,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=819671,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=532313,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=53764,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=532313,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=56203,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1218,
+ ["unit"]=0
+ }
+ },
+ [12181]={
+ ["next_chapter"]=12182,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2487,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=820581,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=537636,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=54301,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=537636,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=56203,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1218,
+ ["unit"]=0
+ }
+ },
+ [12182]={
+ ["next_chapter"]=12183,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2489,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=821492,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=543012,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=54844,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=543012,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=56203,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1218,
+ ["unit"]=0
+ }
+ },
+ [12183]={
+ ["next_chapter"]=12184,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2492,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=822404,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=548443,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=55393,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=548443,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=56203,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1218,
+ ["unit"]=0
+ }
+ },
+ [12184]={
+ ["next_chapter"]=12185,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2495,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=823317,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=553927,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=55947,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=553927,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=56203,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1218,
+ ["unit"]=0
+ }
+ },
+ [12185]={
+ ["next_chapter"]=12186,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2498,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=824230,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=559466,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=56506,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=559466,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=56203,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1218,
+ ["unit"]=0
+ }
+ },
+ [12186]={
+ ["next_chapter"]=12187,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2500,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=825144,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=565061,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=57071,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=565061,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=56203,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1218,
+ ["unit"]=0
+ }
+ },
+ [12187]={
+ ["next_chapter"]=12188,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2503,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=826058,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=570712,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=57642,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=570712,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=56203,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1218,
+ ["unit"]=0
+ }
+ },
+ [12188]={
+ ["next_chapter"]=12189,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2506,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=826974,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=576419,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=58218,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=576419,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=56203,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1218,
+ ["unit"]=0
+ }
+ },
+ [12189]={
+ ["next_chapter"]=12190,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2509,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=827890,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=582183,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=58800,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=582183,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=56203,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1218,
+ ["unit"]=0
+ }
+ },
+ [12190]={
+ ["next_chapter"]=12191,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=2512,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=828806,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=588005,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=59388,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=588005,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=62083,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1219,
+ ["unit"]=0
+ }
+ },
+ [12191]={
+ ["next_chapter"]=12192,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2514,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=829724,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=593885,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=59982,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=593885,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=62083,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1219,
+ ["unit"]=0
+ }
+ },
+ [12192]={
+ ["next_chapter"]=12193,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2517,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=830641,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=599824,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=60582,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=599824,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=62083,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1219,
+ ["unit"]=0
+ }
+ },
+ [12193]={
+ ["next_chapter"]=12194,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2520,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=831560,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=605822,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=61188,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=605822,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=62083,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1219,
+ ["unit"]=0
+ }
+ },
+ [12194]={
+ ["next_chapter"]=12195,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2523,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=832479,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=611880,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=61800,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=611880,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=62083,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1219,
+ ["unit"]=0
+ }
+ },
+ [12195]={
+ ["next_chapter"]=12196,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2525,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=833400,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=617999,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=62418,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=617999,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=62083,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1219,
+ ["unit"]=0
+ }
+ },
+ [12196]={
+ ["next_chapter"]=12197,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2528,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=834320,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=624179,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=63042,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=624179,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=62083,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1219,
+ ["unit"]=0
+ }
+ },
+ [12197]={
+ ["next_chapter"]=12198,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2531,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=835242,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=630421,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=63672,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=630421,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=62083,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1219,
+ ["unit"]=0
+ }
+ },
+ [12198]={
+ ["next_chapter"]=12199,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2534,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=836164,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=636725,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=64309,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=636725,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=62083,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1219,
+ ["unit"]=0
+ }
+ },
+ [12199]={
+ ["next_chapter"]=12200,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2537,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=837086,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=643092,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=64952,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=643092,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=62083,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1219,
+ ["unit"]=0
+ }
+ },
+ [12200]={
+ ["next_chapter"]=12201,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=2539,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=838010,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=649523,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=65602,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=649523,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=68578,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1220,
+ ["unit"]=0
+ }
+ },
+ [12201]={
+ ["next_chapter"]=12202,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2542,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=838934,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=656018,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=66258,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=656018,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=68578,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1220,
+ ["unit"]=0
+ }
+ },
+ [12202]={
+ ["next_chapter"]=12203,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2545,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=839859,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=662578,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=66920,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=662578,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=68578,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1220,
+ ["unit"]=0
+ }
+ },
+ [12203]={
+ ["next_chapter"]=12204,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2548,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=840784,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=669204,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=67590,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=669204,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=68578,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1220,
+ ["unit"]=0
+ }
+ },
+ [12204]={
+ ["next_chapter"]=12205,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2551,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=841711,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=675896,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=68266,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=675896,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=68578,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1220,
+ ["unit"]=0
+ }
+ },
+ [12205]={
+ ["next_chapter"]=12206,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2553,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=842637,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=682655,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=68948,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=682655,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=68578,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1220,
+ ["unit"]=0
+ }
+ },
+ [12206]={
+ ["next_chapter"]=12207,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2556,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=843565,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=689482,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=69638,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=689482,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=68578,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1220,
+ ["unit"]=0
+ }
+ },
+ [12207]={
+ ["next_chapter"]=12208,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2559,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=844493,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=696377,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=70334,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=696377,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=68578,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1220,
+ ["unit"]=0
+ }
+ },
+ [12208]={
+ ["next_chapter"]=12209,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2562,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=845422,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=703340,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=71037,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=703340,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=68578,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1220,
+ ["unit"]=0
+ }
+ },
+ [12209]={
+ ["next_chapter"]=12210,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2565,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=846352,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=710374,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=71748,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=710374,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=68578,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1220,
+ ["unit"]=0
+ }
+ },
+ [12210]={
+ ["next_chapter"]=12211,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=2568,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=847282,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=717477,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=72465,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=717477,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=75753,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1221,
+ ["unit"]=0
+ }
+ },
+ [12211]={
+ ["next_chapter"]=12212,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2570,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=848213,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=724652,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=73190,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=724652,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=75753,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1221,
+ ["unit"]=0
+ }
+ },
+ [12212]={
+ ["next_chapter"]=12213,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2573,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=849145,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=731899,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=73922,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=731899,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=75753,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1221,
+ ["unit"]=0
+ }
+ },
+ [12213]={
+ ["next_chapter"]=12214,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2576,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=850077,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=739218,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=74661,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=739218,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=75753,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1221,
+ ["unit"]=0
+ }
+ },
+ [12214]={
+ ["next_chapter"]=12215,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2579,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=851010,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=746610,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=75408,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=746610,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=75753,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1221,
+ ["unit"]=0
+ }
+ },
+ [12215]={
+ ["next_chapter"]=12216,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2582,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=851944,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=754076,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=76162,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=754076,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=75753,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1221,
+ ["unit"]=0
+ }
+ },
+ [12216]={
+ ["next_chapter"]=12217,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2584,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=852878,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=761617,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=76923,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=761617,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=75753,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1221,
+ ["unit"]=0
+ }
+ },
+ [12217]={
+ ["next_chapter"]=12218,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2587,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=853813,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=769233,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=77693,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=769233,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=75753,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1221,
+ ["unit"]=0
+ }
+ },
+ [12218]={
+ ["next_chapter"]=12219,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2590,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=854749,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=776925,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=78469,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=776925,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=75753,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1221,
+ ["unit"]=0
+ }
+ },
+ [12219]={
+ ["next_chapter"]=12220,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2593,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=855686,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=784695,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=79254,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=784695,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=75753,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1221,
+ ["unit"]=0
+ }
+ },
+ [12220]={
+ ["next_chapter"]=12221,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=2596,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=856623,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=792541,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=80047,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=792541,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=83678,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1222,
+ ["unit"]=0
+ }
+ },
+ [12221]={
+ ["next_chapter"]=12222,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2599,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=857561,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=800467,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=80847,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=800467,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=83678,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1222,
+ ["unit"]=0
+ }
+ },
+ [12222]={
+ ["next_chapter"]=12223,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2602,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=858499,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=808472,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=81656,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=808472,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=83678,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1222,
+ ["unit"]=0
+ }
+ },
+ [12223]={
+ ["next_chapter"]=12224,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2604,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=859439,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=816556,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=82472,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=816556,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=83678,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1222,
+ ["unit"]=0
+ }
+ },
+ [12224]={
+ ["next_chapter"]=12225,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2607,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=860379,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=824722,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=83297,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=824722,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=83678,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1222,
+ ["unit"]=0
+ }
+ },
+ [12225]={
+ ["next_chapter"]=12226,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2610,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=861319,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=832969,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=84130,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=832969,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=83678,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1222,
+ ["unit"]=0
+ }
+ },
+ [12226]={
+ ["next_chapter"]=12227,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2613,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=862260,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=841299,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=84971,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=841299,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=83678,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1222,
+ ["unit"]=0
+ }
+ },
+ [12227]={
+ ["next_chapter"]=12228,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2616,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=863202,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=849712,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=85821,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=849712,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=83678,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1222,
+ ["unit"]=0
+ }
+ },
+ [12228]={
+ ["next_chapter"]=12229,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2619,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=864145,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=858209,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=86679,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=858209,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=83678,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1222,
+ ["unit"]=0
+ }
+ },
+ [12229]={
+ ["next_chapter"]=12230,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2621,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=865089,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=866791,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=87546,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=866791,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=83678,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1222,
+ ["unit"]=0
+ }
+ },
+ [12230]={
+ ["next_chapter"]=12231,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=2624,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=866033,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=875459,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=88421,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=875459,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=92433,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1223,
+ ["unit"]=0
+ }
+ },
+ [12231]={
+ ["next_chapter"]=12232,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2627,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=866977,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=884213,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=89306,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=884213,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=92433,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1223,
+ ["unit"]=0
+ }
+ },
+ [12232]={
+ ["next_chapter"]=12233,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2630,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=867923,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=893056,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=90199,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=893056,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=92433,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1223,
+ ["unit"]=0
+ }
+ },
+ [12233]={
+ ["next_chapter"]=12234,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2633,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=868869,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=901986,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=91101,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=901986,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=92433,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1223,
+ ["unit"]=0
+ }
+ },
+ [12234]={
+ ["next_chapter"]=12235,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2636,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=869816,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=911006,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=92012,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=911006,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=92433,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1223,
+ ["unit"]=0
+ }
+ },
+ [12235]={
+ ["next_chapter"]=12236,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2639,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=870763,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=920116,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=92932,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=920116,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=92433,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1223,
+ ["unit"]=0
+ }
+ },
+ [12236]={
+ ["next_chapter"]=12237,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2642,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=871712,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=929317,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=93861,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=929317,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=92433,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1223,
+ ["unit"]=0
+ }
+ },
+ [12237]={
+ ["next_chapter"]=12238,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2644,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=872661,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=938610,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=94800,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=938610,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=92433,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1223,
+ ["unit"]=0
+ }
+ },
+ [12238]={
+ ["next_chapter"]=12239,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2647,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=873610,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=947997,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=95748,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=947997,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=92433,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1223,
+ ["unit"]=0
+ }
+ },
+ [12239]={
+ ["next_chapter"]=12240,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2650,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=874561,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=957476,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=96705,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=957476,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=92433,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1223,
+ ["unit"]=0
+ }
+ },
+ [12240]={
+ ["next_chapter"]=12241,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=2653,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=875512,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=967051,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=97672,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=967051,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=102103,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1224,
+ ["unit"]=0
+ }
+ },
+ [12241]={
+ ["next_chapter"]=12242,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2656,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=876463,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=976722,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=98649,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=976722,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=102103,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1224,
+ ["unit"]=0
+ }
+ },
+ [12242]={
+ ["next_chapter"]=12243,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2659,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=877416,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=986489,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=99635,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=986489,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=102103,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1224,
+ ["unit"]=0
+ }
+ },
+ [12243]={
+ ["next_chapter"]=12244,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2662,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=878369,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=996354,
+ ["unit"]=16
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=100632,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=996354,
+ ["unit"]=16
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=102103,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1224,
+ ["unit"]=0
+ }
+ },
+ [12244]={
+ ["next_chapter"]=12245,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2665,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=879323,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1006,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=101638,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1006,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=102103,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1224,
+ ["unit"]=0
+ }
+ },
+ [12245]={
+ ["next_chapter"]=12246,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2668,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=880277,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1016,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=102654,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1016,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=102103,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1224,
+ ["unit"]=0
+ }
+ },
+ [12246]={
+ ["next_chapter"]=12247,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2670,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=881232,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1027,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=103681,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1027,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=102103,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1224,
+ ["unit"]=0
+ }
+ },
+ [12247]={
+ ["next_chapter"]=12248,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2673,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=882188,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1037,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=104718,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1037,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=102103,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1224,
+ ["unit"]=0
+ }
+ },
+ [12248]={
+ ["next_chapter"]=12249,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2676,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=883145,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1047,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=105765,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1047,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=102103,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1224,
+ ["unit"]=0
+ }
+ },
+ [12249]={
+ ["next_chapter"]=12250,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2679,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=884102,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1058,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=106823,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1058,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=102103,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1224,
+ ["unit"]=0
+ }
+ },
+ [12250]={
+ ["next_chapter"]=12251,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=2682,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=885060,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1068,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=107891,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1068,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=112786,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1225,
+ ["unit"]=0
+ }
+ },
+ [12251]={
+ ["next_chapter"]=12252,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2685,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=886019,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1079,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=108970,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1079,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=112786,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1225,
+ ["unit"]=0
+ }
+ },
+ [12252]={
+ ["next_chapter"]=12253,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2688,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=886978,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1090,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=110059,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1090,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=112786,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1225,
+ ["unit"]=0
+ }
+ },
+ [12253]={
+ ["next_chapter"]=12254,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2691,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=887938,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1101,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=111160,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1101,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=112786,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1225,
+ ["unit"]=0
+ }
+ },
+ [12254]={
+ ["next_chapter"]=12255,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2694,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=888899,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1112,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=112272,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1112,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=112786,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1225,
+ ["unit"]=0
+ }
+ },
+ [12255]={
+ ["next_chapter"]=12256,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2697,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=889860,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1123,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=113394,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1123,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=112786,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1225,
+ ["unit"]=0
+ }
+ },
+ [12256]={
+ ["next_chapter"]=12257,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2699,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=890822,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1134,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=114528,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1134,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=112786,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1225,
+ ["unit"]=0
+ }
+ },
+ [12257]={
+ ["next_chapter"]=12258,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2702,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=891785,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1145,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=115674,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1145,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=112786,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1225,
+ ["unit"]=0
+ }
+ },
+ [12258]={
+ ["next_chapter"]=12259,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2705,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=892749,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1157,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=116830,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1157,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=112786,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1225,
+ ["unit"]=0
+ }
+ },
+ [12259]={
+ ["next_chapter"]=12260,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2708,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=893713,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1168,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=117999,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1168,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=112786,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1225,
+ ["unit"]=0
+ }
+ },
+ [12260]={
+ ["next_chapter"]=12261,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=2711,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=894678,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1180,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=119179,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1180,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=124585,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1226,
+ ["unit"]=0
+ }
+ },
+ [12261]={
+ ["next_chapter"]=12262,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2714,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=895644,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1192,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=120370,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1192,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=124585,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1226,
+ ["unit"]=0
+ }
+ },
+ [12262]={
+ ["next_chapter"]=12263,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2717,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=896610,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1204,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=121574,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1204,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=124585,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1226,
+ ["unit"]=0
+ }
+ },
+ [12263]={
+ ["next_chapter"]=12264,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2720,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=897577,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1216,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=122790,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1216,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=124585,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1226,
+ ["unit"]=0
+ }
+ },
+ [12264]={
+ ["next_chapter"]=12265,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2723,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=898545,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1228,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=124018,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1228,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=124585,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1226,
+ ["unit"]=0
+ }
+ },
+ [12265]={
+ ["next_chapter"]=12266,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2726,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=899513,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1240,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=125258,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1240,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=124585,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1226,
+ ["unit"]=0
+ }
+ },
+ [12266]={
+ ["next_chapter"]=12267,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2729,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=900483,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1253,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=126511,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1253,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=124585,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1226,
+ ["unit"]=0
+ }
+ },
+ [12267]={
+ ["next_chapter"]=12268,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2732,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=901452,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1265,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=127776,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1265,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=124585,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1226,
+ ["unit"]=0
+ }
+ },
+ [12268]={
+ ["next_chapter"]=12269,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2735,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=902423,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1278,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=129053,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1278,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=124585,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1226,
+ ["unit"]=0
+ }
+ },
+ [12269]={
+ ["next_chapter"]=12270,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2738,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=903394,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1291,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=130344,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1291,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=124585,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1226,
+ ["unit"]=0
+ }
+ },
+ [12270]={
+ ["next_chapter"]=12271,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=2741,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=904366,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1303,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=131647,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1303,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=137620,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1227,
+ ["unit"]=0
+ }
+ },
+ [12271]={
+ ["next_chapter"]=12272,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2743,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=905339,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1316,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=132964,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1316,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=137620,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1227,
+ ["unit"]=0
+ }
+ },
+ [12272]={
+ ["next_chapter"]=12273,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2746,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=906312,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1330,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=134293,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1330,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=137620,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1227,
+ ["unit"]=0
+ }
+ },
+ [12273]={
+ ["next_chapter"]=12274,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2749,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=907286,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1343,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=135636,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1343,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=137620,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1227,
+ ["unit"]=0
+ }
+ },
+ [12274]={
+ ["next_chapter"]=12275,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2752,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=908261,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1356,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=136993,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1356,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=137620,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1227,
+ ["unit"]=0
+ }
+ },
+ [12275]={
+ ["next_chapter"]=12276,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2755,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=909236,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1370,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=138363,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1370,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=137620,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1227,
+ ["unit"]=0
+ }
+ },
+ [12276]={
+ ["next_chapter"]=12277,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2758,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=910213,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1384,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=139746,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1384,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=137620,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1227,
+ ["unit"]=0
+ }
+ },
+ [12277]={
+ ["next_chapter"]=12278,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2761,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=911190,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1397,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=141144,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1397,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=137620,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1227,
+ ["unit"]=0
+ }
+ },
+ [12278]={
+ ["next_chapter"]=12279,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2764,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=912167,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1411,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=142555,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1411,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=137620,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1227,
+ ["unit"]=0
+ }
+ },
+ [12279]={
+ ["next_chapter"]=12280,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2767,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=913145,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1426,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=143981,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1426,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=137620,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1227,
+ ["unit"]=0
+ }
+ },
+ [12280]={
+ ["next_chapter"]=12281,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=2770,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=914124,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1440,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=145421,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1440,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=152018,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1228,
+ ["unit"]=0
+ }
+ },
+ [12281]={
+ ["next_chapter"]=12282,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2773,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=915104,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1454,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=146875,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1454,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=152018,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1228,
+ ["unit"]=0
+ }
+ },
+ [12282]={
+ ["next_chapter"]=12283,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2776,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=916084,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1469,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=148344,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1469,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=152018,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1228,
+ ["unit"]=0
+ }
+ },
+ [12283]={
+ ["next_chapter"]=12284,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2779,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=917066,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1483,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=149827,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1483,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=152018,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1228,
+ ["unit"]=0
+ }
+ },
+ [12284]={
+ ["next_chapter"]=12285,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2782,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=918047,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1498,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=151325,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1498,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=152018,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1228,
+ ["unit"]=0
+ }
+ },
+ [12285]={
+ ["next_chapter"]=12286,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2785,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=919030,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1513,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=152838,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1513,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=152018,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1228,
+ ["unit"]=0
+ }
+ },
+ [12286]={
+ ["next_chapter"]=12287,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2788,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=920013,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1528,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=154367,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1528,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=152018,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1228,
+ ["unit"]=0
+ }
+ },
+ [12287]={
+ ["next_chapter"]=12288,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2791,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=920997,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1544,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=155911,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1544,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=152018,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1228,
+ ["unit"]=0
+ }
+ },
+ [12288]={
+ ["next_chapter"]=12289,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2794,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=921982,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1559,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=157470,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1559,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=152018,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1228,
+ ["unit"]=0
+ }
+ },
+ [12289]={
+ ["next_chapter"]=12290,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2797,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=922967,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1575,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=159044,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1575,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=152018,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1228,
+ ["unit"]=0
+ }
+ },
+ [12290]={
+ ["next_chapter"]=12291,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=2800,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=923953,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1590,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=160635,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1590,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=167922,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1229,
+ ["unit"]=0
+ }
+ },
+ [12291]={
+ ["next_chapter"]=12292,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2803,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=924940,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1606,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=162241,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1606,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=167922,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1229,
+ ["unit"]=0
+ }
+ },
+ [12292]={
+ ["next_chapter"]=12293,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2806,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=925927,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1622,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=163864,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1622,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=167922,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1229,
+ ["unit"]=0
+ }
+ },
+ [12293]={
+ ["next_chapter"]=12294,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2809,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=926915,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1639,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=165502,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1639,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=167922,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1229,
+ ["unit"]=0
+ }
+ },
+ [12294]={
+ ["next_chapter"]=12295,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2812,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=927904,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1655,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=167157,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1655,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=167922,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1229,
+ ["unit"]=0
+ }
+ },
+ [12295]={
+ ["next_chapter"]=12296,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2815,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=928894,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1672,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=168829,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1672,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=167922,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1229,
+ ["unit"]=0
+ }
+ },
+ [12296]={
+ ["next_chapter"]=12297,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2818,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=929884,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1688,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=170517,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1688,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=167922,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1229,
+ ["unit"]=0
+ }
+ },
+ [12297]={
+ ["next_chapter"]=12298,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2821,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=930875,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1705,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=172222,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1705,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=167922,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1229,
+ ["unit"]=0
+ }
+ },
+ [12298]={
+ ["next_chapter"]=12299,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2824,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=931867,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1722,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=173944,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1722,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=167922,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1229,
+ ["unit"]=0
+ }
+ },
+ [12299]={
+ ["next_chapter"]=12300,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2827,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=932859,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1739,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=175684,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1739,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=167922,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1229,
+ ["unit"]=0
+ }
+ },
+ [12300]={
+ ["next_chapter"]=12301,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=2830,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=933852,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1757,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=177441,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1757,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=185491,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1230,
+ ["unit"]=0
+ }
+ },
+ [12301]={
+ ["next_chapter"]=12302,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2833,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=934846,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1774,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=179215,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1774,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=185491,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1230,
+ ["unit"]=0
+ }
+ },
+ [12302]={
+ ["next_chapter"]=12303,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2836,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=935841,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1792,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=181007,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1792,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=185491,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1230,
+ ["unit"]=0
+ }
+ },
+ [12303]={
+ ["next_chapter"]=12304,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2839,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=936836,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1810,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=182817,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1810,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=185491,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1230,
+ ["unit"]=0
+ }
+ },
+ [12304]={
+ ["next_chapter"]=12305,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2842,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=937832,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1828,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=184646,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1828,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=185491,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1230,
+ ["unit"]=0
+ }
+ },
+ [12305]={
+ ["next_chapter"]=12306,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2845,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=938829,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1846,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=186492,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1846,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=185491,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1230,
+ ["unit"]=0
+ }
+ },
+ [12306]={
+ ["next_chapter"]=12307,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2848,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=939826,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1865,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=188357,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1865,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=185491,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1230,
+ ["unit"]=0
+ }
+ },
+ [12307]={
+ ["next_chapter"]=12308,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2851,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=940824,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1884,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=190240,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1884,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=185491,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1230,
+ ["unit"]=0
+ }
+ },
+ [12308]={
+ ["next_chapter"]=12309,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2854,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=941823,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1902,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=192143,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1902,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=185491,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1230,
+ ["unit"]=0
+ }
+ },
+ [12309]={
+ ["next_chapter"]=12310,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2857,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=942823,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1921,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=194064,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1921,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=185491,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1230,
+ ["unit"]=0
+ }
+ },
+ [12310]={
+ ["next_chapter"]=12311,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=2860,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=943823,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1941,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=196005,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1941,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=204897,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1231,
+ ["unit"]=0
+ }
+ },
+ [12311]={
+ ["next_chapter"]=12312,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2863,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=944824,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1960,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=197965,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1960,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=204897,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1231,
+ ["unit"]=0
+ }
+ },
+ [12312]={
+ ["next_chapter"]=12313,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2866,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=945825,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1980,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=199945,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1980,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=204897,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1231,
+ ["unit"]=0
+ }
+ },
+ [12313]={
+ ["next_chapter"]=12314,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2869,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=946828,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=1999,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=201944,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=1999,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=204897,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1231,
+ ["unit"]=0
+ }
+ },
+ [12314]={
+ ["next_chapter"]=12315,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2872,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=947831,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2019,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=203964,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=2019,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=204897,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1231,
+ ["unit"]=0
+ }
+ },
+ [12315]={
+ ["next_chapter"]=12316,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2875,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=948835,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2040,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=206003,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=2040,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=204897,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1231,
+ ["unit"]=0
+ }
+ },
+ [12316]={
+ ["next_chapter"]=12317,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2878,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=949839,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2060,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=208063,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=2060,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=204897,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1231,
+ ["unit"]=0
+ }
+ },
+ [12317]={
+ ["next_chapter"]=12318,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2881,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=950844,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2081,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=210144,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=2081,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=204897,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1231,
+ ["unit"]=0
+ }
+ },
+ [12318]={
+ ["next_chapter"]=12319,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2884,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=951850,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2101,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=212245,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=2101,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=204897,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1231,
+ ["unit"]=0
+ }
+ },
+ [12319]={
+ ["next_chapter"]=12320,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2887,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=952857,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2122,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=214368,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=2122,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=204897,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1231,
+ ["unit"]=0
+ }
+ },
+ [12320]={
+ ["next_chapter"]=12321,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=2890,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=953864,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2144,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=216511,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=2144,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=226334,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1232,
+ ["unit"]=0
+ }
+ },
+ [12321]={
+ ["next_chapter"]=12322,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2894,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=954873,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2165,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=218677,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=2165,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=226334,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1232,
+ ["unit"]=0
+ }
+ },
+ [12322]={
+ ["next_chapter"]=12323,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2897,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=955881,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2187,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=220863,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=2187,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=226334,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1232,
+ ["unit"]=0
+ }
+ },
+ [12323]={
+ ["next_chapter"]=12324,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2900,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=956891,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2209,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=223072,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=2209,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=226334,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1232,
+ ["unit"]=0
+ }
+ },
+ [12324]={
+ ["next_chapter"]=12325,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2903,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=957901,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2231,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=225303,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=2231,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=226334,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1232,
+ ["unit"]=0
+ }
+ },
+ [12325]={
+ ["next_chapter"]=12326,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2906,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=958912,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2253,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=227556,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=2253,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=226334,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1232,
+ ["unit"]=0
+ }
+ },
+ [12326]={
+ ["next_chapter"]=12327,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2909,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=959924,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2276,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=229831,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=2276,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=226334,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1232,
+ ["unit"]=0
+ }
+ },
+ [12327]={
+ ["next_chapter"]=12328,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2912,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=960936,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2298,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=232130,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=2298,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=226334,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1232,
+ ["unit"]=0
+ }
+ },
+ [12328]={
+ ["next_chapter"]=12329,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2915,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=961949,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2321,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=234451,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=2321,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=226334,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1232,
+ ["unit"]=0
+ }
+ },
+ [12329]={
+ ["next_chapter"]=12330,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2918,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=962963,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2345,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=236795,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=2345,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=226334,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1232,
+ ["unit"]=0
+ }
+ },
+ [12330]={
+ ["next_chapter"]=12331,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=2921,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=963977,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2368,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=239163,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=2368,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=250013,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1233,
+ ["unit"]=0
+ }
+ },
+ [12331]={
+ ["next_chapter"]=12332,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2924,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=964993,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2392,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=241555,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=2392,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=250013,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1233,
+ ["unit"]=0
+ }
+ },
+ [12332]={
+ ["next_chapter"]=12333,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2927,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=966009,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2416,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=243970,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=2416,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=250013,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1233,
+ ["unit"]=0
+ }
+ },
+ [12333]={
+ ["next_chapter"]=12334,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2930,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=967025,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2440,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=246410,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=2440,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=250013,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1233,
+ ["unit"]=0
+ }
+ },
+ [12334]={
+ ["next_chapter"]=12335,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2933,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=968043,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2464,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=248874,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=2464,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=250013,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1233,
+ ["unit"]=0
+ }
+ },
+ [12335]={
+ ["next_chapter"]=12336,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2937,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=969061,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2489,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=251363,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=2489,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=250013,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1233,
+ ["unit"]=0
+ }
+ },
+ [12336]={
+ ["next_chapter"]=12337,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2940,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=970080,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2514,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=253877,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=2514,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=250013,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1233,
+ ["unit"]=0
+ }
+ },
+ [12337]={
+ ["next_chapter"]=12338,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2943,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=971099,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2539,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=256415,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=2539,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=250013,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1233,
+ ["unit"]=0
+ }
+ },
+ [12338]={
+ ["next_chapter"]=12339,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2946,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=972120,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2564,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=258980,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=2564,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=250013,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1233,
+ ["unit"]=0
+ }
+ },
+ [12339]={
+ ["next_chapter"]=12340,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2949,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=973141,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2590,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=261569,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=2590,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=250013,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1233,
+ ["unit"]=0
+ }
+ },
+ [12340]={
+ ["next_chapter"]=12341,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=2952,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=974162,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2616,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=264185,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=2616,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=276170,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1234,
+ ["unit"]=0
+ }
+ },
+ [12341]={
+ ["next_chapter"]=12342,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2955,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=975185,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2642,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=266827,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=2642,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=276170,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1234,
+ ["unit"]=0
+ }
+ },
+ [12342]={
+ ["next_chapter"]=12343,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2958,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=976208,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2668,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=269495,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=2668,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=276170,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1234,
+ ["unit"]=0
+ }
+ },
+ [12343]={
+ ["next_chapter"]=12344,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2961,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=977232,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2695,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=272190,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=2695,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=276170,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1234,
+ ["unit"]=0
+ }
+ },
+ [12344]={
+ ["next_chapter"]=12345,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2964,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=978256,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2722,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=274912,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=2722,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=276170,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1234,
+ ["unit"]=0
+ }
+ },
+ [12345]={
+ ["next_chapter"]=12346,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2968,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=979282,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2749,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=277661,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=2749,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=276170,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1234,
+ ["unit"]=0
+ }
+ },
+ [12346]={
+ ["next_chapter"]=12347,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2971,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=980308,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2777,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=280438,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=2777,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=276170,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1234,
+ ["unit"]=0
+ }
+ },
+ [12347]={
+ ["next_chapter"]=12348,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2974,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=981334,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2804,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=283242,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=2804,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=276170,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1234,
+ ["unit"]=0
+ }
+ },
+ [12348]={
+ ["next_chapter"]=12349,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2977,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=982362,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2832,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=286075,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=2832,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=276170,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1234,
+ ["unit"]=0
+ }
+ },
+ [12349]={
+ ["next_chapter"]=12350,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2980,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=983390,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2861,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=288935,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=2861,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=276170,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1234,
+ ["unit"]=0
+ }
+ },
+ [12350]={
+ ["next_chapter"]=12351,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=2983,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=984419,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2889,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=291825,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=2889,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=305064,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1235,
+ ["unit"]=0
+ }
+ },
+ [12351]={
+ ["next_chapter"]=12352,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2986,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=985449,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2918,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=294743,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=2918,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=305064,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1235,
+ ["unit"]=0
+ }
+ },
+ [12352]={
+ ["next_chapter"]=12353,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2989,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=986479,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2947,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=297690,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=2947,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=305064,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1235,
+ ["unit"]=0
+ }
+ },
+ [12353]={
+ ["next_chapter"]=12354,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2992,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=987510,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=2977,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=300667,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=2977,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=305064,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1235,
+ ["unit"]=0
+ }
+ },
+ [12354]={
+ ["next_chapter"]=12355,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2996,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=988542,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3007,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=303674,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=3007,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=305064,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1235,
+ ["unit"]=0
+ }
+ },
+ [12355]={
+ ["next_chapter"]=12356,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=2999,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=989574,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3037,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=306711,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=3037,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=305064,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1235,
+ ["unit"]=0
+ }
+ },
+ [12356]={
+ ["next_chapter"]=12357,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3002,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=990608,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3067,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=309778,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=3067,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=305064,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1235,
+ ["unit"]=0
+ }
+ },
+ [12357]={
+ ["next_chapter"]=12358,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3005,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=991642,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3098,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=312876,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=3098,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=305064,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1235,
+ ["unit"]=0
+ }
+ },
+ [12358]={
+ ["next_chapter"]=12359,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3008,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=992676,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3129,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=316004,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=3129,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=305064,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1235,
+ ["unit"]=0
+ }
+ },
+ [12359]={
+ ["next_chapter"]=12360,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3011,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=993712,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3160,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=319164,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=3160,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=305064,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1235,
+ ["unit"]=0
+ }
+ },
+ [12360]={
+ ["next_chapter"]=12361,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=3014,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=994748,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3192,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=322356,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=3192,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=336980,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1236,
+ ["unit"]=0
+ }
+ },
+ [12361]={
+ ["next_chapter"]=12362,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3018,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=995785,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3224,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=325580,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=3224,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=336980,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1236,
+ ["unit"]=0
+ }
+ },
+ [12362]={
+ ["next_chapter"]=12363,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3021,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=996823,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3256,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=328835,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=3256,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=336980,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1236,
+ ["unit"]=0
+ }
+ },
+ [12363]={
+ ["next_chapter"]=12364,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3024,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=997861,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3288,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=332124,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=3288,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=336980,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1236,
+ ["unit"]=0
+ }
+ },
+ [12364]={
+ ["next_chapter"]=12365,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3027,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=998900,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3321,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=335445,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=3321,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=336980,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1236,
+ ["unit"]=0
+ }
+ },
+ [12365]={
+ ["next_chapter"]=12366,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3030,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=999940,
+ ["unit"]=9
+ },
+ ["gold_reward"]={
+ ["value"]=3354,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=338799,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=3354,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=336980,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1236,
+ ["unit"]=0
+ }
+ },
+ [12366]={
+ ["next_chapter"]=12367,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3033,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1001,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3388,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=342187,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=3388,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=336980,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1236,
+ ["unit"]=0
+ }
+ },
+ [12367]={
+ ["next_chapter"]=12368,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3036,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1002,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3422,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=345609,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=3422,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=336980,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1236,
+ ["unit"]=0
+ }
+ },
+ [12368]={
+ ["next_chapter"]=12369,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3040,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1003,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3456,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=349065,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=3456,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=336980,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1236,
+ ["unit"]=0
+ }
+ },
+ [12369]={
+ ["next_chapter"]=12370,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3043,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1004,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3491,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=352556,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=3491,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=336980,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1236,
+ ["unit"]=0
+ }
+ },
+ [12370]={
+ ["next_chapter"]=12371,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=3046,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1005,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3526,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=356082,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=3526,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=372236,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1237,
+ ["unit"]=0
+ }
+ },
+ [12371]={
+ ["next_chapter"]=12372,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3049,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1006,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3561,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=359642,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=3561,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=372236,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1237,
+ ["unit"]=0
+ }
+ },
+ [12372]={
+ ["next_chapter"]=12373,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3052,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1007,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3596,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=363239,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=3596,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=372236,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1237,
+ ["unit"]=0
+ }
+ },
+ [12373]={
+ ["next_chapter"]=12374,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3055,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1008,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3632,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=366871,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=3632,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=372236,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1237,
+ ["unit"]=0
+ }
+ },
+ [12374]={
+ ["next_chapter"]=12375,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3059,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1009,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3669,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=370540,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=3669,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=372236,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1237,
+ ["unit"]=0
+ }
+ },
+ [12375]={
+ ["next_chapter"]=12376,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3062,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1010,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3705,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=374245,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=3705,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=372236,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1237,
+ ["unit"]=0
+ }
+ },
+ [12376]={
+ ["next_chapter"]=12377,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3065,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1011,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3742,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=377988,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=3742,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=372236,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1237,
+ ["unit"]=0
+ }
+ },
+ [12377]={
+ ["next_chapter"]=12378,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3068,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1012,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3780,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=381768,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=3780,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=372236,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1237,
+ ["unit"]=0
+ }
+ },
+ [12378]={
+ ["next_chapter"]=12379,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3071,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1014,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3818,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=385585,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=3818,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=372236,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1237,
+ ["unit"]=0
+ }
+ },
+ [12379]={
+ ["next_chapter"]=12380,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3074,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1015,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3856,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=389441,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=3856,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=372236,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1237,
+ ["unit"]=0
+ }
+ },
+ [12380]={
+ ["next_chapter"]=12381,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=3078,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1016,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3894,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=393336,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=3894,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=411180,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1238,
+ ["unit"]=0
+ }
+ },
+ [12381]={
+ ["next_chapter"]=12382,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3081,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1017,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3933,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=397269,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=3933,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=411180,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1238,
+ ["unit"]=0
+ }
+ },
+ [12382]={
+ ["next_chapter"]=12383,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3084,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1018,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3973,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=401242,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=3973,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=411180,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1238,
+ ["unit"]=0
+ }
+ },
+ [12383]={
+ ["next_chapter"]=12384,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3087,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1019,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4012,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=405254,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=4012,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=411180,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1238,
+ ["unit"]=0
+ }
+ },
+ [12384]={
+ ["next_chapter"]=12385,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3090,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1020,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4053,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=409307,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=4053,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=411180,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1238,
+ ["unit"]=0
+ }
+ },
+ [12385]={
+ ["next_chapter"]=12386,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3094,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1021,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4093,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=413400,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=4093,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=411180,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1238,
+ ["unit"]=0
+ }
+ },
+ [12386]={
+ ["next_chapter"]=12387,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3097,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1022,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4134,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=417534,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=4134,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=411180,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1238,
+ ["unit"]=0
+ }
+ },
+ [12387]={
+ ["next_chapter"]=12388,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3100,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1023,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4175,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=421709,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=4175,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=411180,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1238,
+ ["unit"]=0
+ }
+ },
+ [12388]={
+ ["next_chapter"]=12389,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3103,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1024,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4217,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=425926,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=4217,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=411180,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1238,
+ ["unit"]=0
+ }
+ },
+ [12389]={
+ ["next_chapter"]=12390,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3106,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1025,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4259,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=430185,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=4259,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=411180,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1238,
+ ["unit"]=0
+ }
+ },
+ [12390]={
+ ["next_chapter"]=12391,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=3110,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1026,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4302,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=434487,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=4302,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=454199,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1239,
+ ["unit"]=0
+ }
+ },
+ [12391]={
+ ["next_chapter"]=12392,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3113,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1027,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4345,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=438832,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=4345,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=454199,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1239,
+ ["unit"]=0
+ }
+ },
+ [12392]={
+ ["next_chapter"]=12393,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3116,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1028,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4388,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=443220,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=4388,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=454199,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1239,
+ ["unit"]=0
+ }
+ },
+ [12393]={
+ ["next_chapter"]=12394,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3119,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1029,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4432,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=447653,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=4432,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=454199,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1239,
+ ["unit"]=0
+ }
+ },
+ [12394]={
+ ["next_chapter"]=12395,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3122,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1030,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4477,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=452129,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=4477,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=454199,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1239,
+ ["unit"]=0
+ }
+ },
+ [12395]={
+ ["next_chapter"]=12396,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3126,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1031,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4521,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=456650,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=4521,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=454199,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1239,
+ ["unit"]=0
+ }
+ },
+ [12396]={
+ ["next_chapter"]=12397,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3129,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1033,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4567,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=461217,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=4567,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=454199,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1239,
+ ["unit"]=0
+ }
+ },
+ [12397]={
+ ["next_chapter"]=12398,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3132,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1034,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4612,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=465829,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=4612,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=454199,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1239,
+ ["unit"]=0
+ }
+ },
+ [12398]={
+ ["next_chapter"]=12399,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3135,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1035,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4658,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=470487,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=4658,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=454199,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1239,
+ ["unit"]=0
+ }
+ },
+ [12399]={
+ ["next_chapter"]=12400,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3139,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1036,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4705,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=475192,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=4705,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=454199,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1239,
+ ["unit"]=0
+ }
+ },
+ [12400]={
+ ["next_chapter"]=12401,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=3142,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1037,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4752,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=479944,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=4752,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=501718,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1240,
+ ["unit"]=0
+ }
+ },
+ [12401]={
+ ["next_chapter"]=12402,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3145,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1038,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4799,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=484744,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=4799,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=501718,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1240,
+ ["unit"]=0
+ }
+ },
+ [12402]={
+ ["next_chapter"]=12403,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3148,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1039,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4847,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=489591,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=4847,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=501718,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1240,
+ ["unit"]=0
+ }
+ },
+ [12403]={
+ ["next_chapter"]=12404,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3151,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1040,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4896,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=494487,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=4896,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=501718,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1240,
+ ["unit"]=0
+ }
+ },
+ [12404]={
+ ["next_chapter"]=12405,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3155,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1041,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4945,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=499432,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=4945,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=501718,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1240,
+ ["unit"]=0
+ }
+ },
+ [12405]={
+ ["next_chapter"]=12406,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3158,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1042,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4994,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=504426,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=4994,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=501718,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1240,
+ ["unit"]=0
+ }
+ },
+ [12406]={
+ ["next_chapter"]=12407,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3161,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1043,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5044,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=509470,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=5044,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=501718,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1240,
+ ["unit"]=0
+ }
+ },
+ [12407]={
+ ["next_chapter"]=12408,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3164,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1044,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5095,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=514565,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=5095,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=501718,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1240,
+ ["unit"]=0
+ }
+ },
+ [12408]={
+ ["next_chapter"]=12409,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3168,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1045,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5146,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=519711,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=5146,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=501718,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1240,
+ ["unit"]=0
+ }
+ },
+ [12409]={
+ ["next_chapter"]=12410,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3171,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1046,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5197,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=524908,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=5197,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=501718,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1240,
+ ["unit"]=0
+ }
+ },
+ [12410]={
+ ["next_chapter"]=12411,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=3174,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1047,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5249,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=530157,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=5249,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=554209,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1241,
+ ["unit"]=0
+ }
+ },
+ [12411]={
+ ["next_chapter"]=12412,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3177,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1049,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5302,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=535458,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=5302,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=554209,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1241,
+ ["unit"]=0
+ }
+ },
+ [12412]={
+ ["next_chapter"]=12413,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3181,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1050,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5355,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=540813,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=5355,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=554209,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1241,
+ ["unit"]=0
+ }
+ },
+ [12413]={
+ ["next_chapter"]=12414,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3184,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1051,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5408,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=546221,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=5408,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=554209,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1241,
+ ["unit"]=0
+ }
+ },
+ [12414]={
+ ["next_chapter"]=12415,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3187,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1052,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5462,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=551683,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=5462,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=554209,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1241,
+ ["unit"]=0
+ }
+ },
+ [12415]={
+ ["next_chapter"]=12416,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3190,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1053,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5517,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=557200,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=5517,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=554209,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1241,
+ ["unit"]=0
+ }
+ },
+ [12416]={
+ ["next_chapter"]=12417,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3194,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1054,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5572,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=562772,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=5572,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=554209,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1241,
+ ["unit"]=0
+ }
+ },
+ [12417]={
+ ["next_chapter"]=12418,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3197,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1055,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5628,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=568400,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=5628,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=554209,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1241,
+ ["unit"]=0
+ }
+ },
+ [12418]={
+ ["next_chapter"]=12419,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3200,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1056,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5684,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=574084,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=5684,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=554209,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1241,
+ ["unit"]=0
+ }
+ },
+ [12419]={
+ ["next_chapter"]=12420,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3204,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1057,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5741,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=579825,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=5741,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=554209,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1241,
+ ["unit"]=0
+ }
+ },
+ [12420]={
+ ["next_chapter"]=12421,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=3207,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1058,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5798,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=585623,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=5798,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=612191,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1242,
+ ["unit"]=0
+ }
+ },
+ [12421]={
+ ["next_chapter"]=12422,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3210,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1059,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5856,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=591479,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=5856,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=612191,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1242,
+ ["unit"]=0
+ }
+ },
+ [12422]={
+ ["next_chapter"]=12423,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3213,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1060,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5915,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=597394,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=5915,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=612191,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1242,
+ ["unit"]=0
+ }
+ },
+ [12423]={
+ ["next_chapter"]=12424,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3217,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1061,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5974,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=603368,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=5974,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=612191,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1242,
+ ["unit"]=0
+ }
+ },
+ [12424]={
+ ["next_chapter"]=12425,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3220,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1063,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6034,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=609402,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=6034,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=612191,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1242,
+ ["unit"]=0
+ }
+ },
+ [12425]={
+ ["next_chapter"]=12426,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3223,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1064,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6094,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=615496,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=6094,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=612191,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1242,
+ ["unit"]=0
+ }
+ },
+ [12426]={
+ ["next_chapter"]=12427,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3227,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1065,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6155,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=621651,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=6155,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=612191,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1242,
+ ["unit"]=0
+ }
+ },
+ [12427]={
+ ["next_chapter"]=12428,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3230,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1066,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6217,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=627867,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=6217,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=612191,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1242,
+ ["unit"]=0
+ }
+ },
+ [12428]={
+ ["next_chapter"]=12429,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3233,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1067,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6279,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=634146,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=6279,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=612191,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1242,
+ ["unit"]=0
+ }
+ },
+ [12429]={
+ ["next_chapter"]=12430,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3236,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1068,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6341,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=640487,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=6341,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=612191,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1242,
+ ["unit"]=0
+ }
+ },
+ [12430]={
+ ["next_chapter"]=12431,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=3240,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1069,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6405,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=646892,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=6405,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=676240,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1243,
+ ["unit"]=0
+ }
+ },
+ [12431]={
+ ["next_chapter"]=12432,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3243,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1070,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6469,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=653361,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=6469,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=676240,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1243,
+ ["unit"]=0
+ }
+ },
+ [12432]={
+ ["next_chapter"]=12433,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3246,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1071,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6534,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=659895,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=6534,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=676240,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1243,
+ ["unit"]=0
+ }
+ },
+ [12433]={
+ ["next_chapter"]=12434,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3250,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1072,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6599,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=666494,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=6599,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=676240,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1243,
+ ["unit"]=0
+ }
+ },
+ [12434]={
+ ["next_chapter"]=12435,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3253,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1073,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6665,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=673159,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=6665,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=676240,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1243,
+ ["unit"]=0
+ }
+ },
+ [12435]={
+ ["next_chapter"]=12436,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3256,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1075,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6732,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=679890,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=6732,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=676240,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1243,
+ ["unit"]=0
+ }
+ },
+ [12436]={
+ ["next_chapter"]=12437,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3260,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1076,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6799,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=686689,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=6799,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=676240,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1243,
+ ["unit"]=0
+ }
+ },
+ [12437]={
+ ["next_chapter"]=12438,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3263,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1077,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6867,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=693556,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=6867,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=676240,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1243,
+ ["unit"]=0
+ }
+ },
+ [12438]={
+ ["next_chapter"]=12439,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3266,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1078,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6936,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=700491,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=6936,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=676240,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1243,
+ ["unit"]=0
+ }
+ },
+ [12439]={
+ ["next_chapter"]=12440,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3269,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1079,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7005,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=707496,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=7005,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=676240,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1243,
+ ["unit"]=0
+ }
+ },
+ [12440]={
+ ["next_chapter"]=12441,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=3273,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1080,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7075,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=714571,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=7075,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=746989,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1244,
+ ["unit"]=0
+ }
+ },
+ [12441]={
+ ["next_chapter"]=12442,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3276,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1081,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7146,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=721717,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=7146,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=746989,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1244,
+ ["unit"]=0
+ }
+ },
+ [12442]={
+ ["next_chapter"]=12443,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3279,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1082,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7217,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=728934,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=7217,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=746989,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1244,
+ ["unit"]=0
+ }
+ },
+ [12443]={
+ ["next_chapter"]=12444,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3283,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1083,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7289,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=736224,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=7289,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=746989,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1244,
+ ["unit"]=0
+ }
+ },
+ [12444]={
+ ["next_chapter"]=12445,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3286,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1084,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7362,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=743586,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=7362,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=746989,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1244,
+ ["unit"]=0
+ }
+ },
+ [12445]={
+ ["next_chapter"]=12446,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3289,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1085,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7436,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=751022,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=7436,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=746989,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1244,
+ ["unit"]=0
+ }
+ },
+ [12446]={
+ ["next_chapter"]=12447,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3293,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1087,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7510,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=758532,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=7510,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=746989,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1244,
+ ["unit"]=0
+ }
+ },
+ [12447]={
+ ["next_chapter"]=12448,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3296,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1088,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7585,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=766117,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=7585,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=746989,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1244,
+ ["unit"]=0
+ }
+ },
+ [12448]={
+ ["next_chapter"]=12449,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3299,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1089,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7661,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=773778,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=7661,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=746989,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1244,
+ ["unit"]=0
+ }
+ },
+ [12449]={
+ ["next_chapter"]=12450,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3303,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1090,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7738,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=781516,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=7738,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=746989,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1244,
+ ["unit"]=0
+ }
+ },
+ [12450]={
+ ["next_chapter"]=12451,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=3306,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1091,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7815,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=789331,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=7815,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=825141,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1245,
+ ["unit"]=0
+ }
+ },
+ [12451]={
+ ["next_chapter"]=12452,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3309,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1092,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7893,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=797225,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=7893,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=825141,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1245,
+ ["unit"]=0
+ }
+ },
+ [12452]={
+ ["next_chapter"]=12453,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3313,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1093,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7972,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=805197,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=7972,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=825141,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1245,
+ ["unit"]=0
+ }
+ },
+ [12453]={
+ ["next_chapter"]=12454,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3316,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1094,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8052,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=813249,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=8052,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=825141,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1245,
+ ["unit"]=0
+ }
+ },
+ [12454]={
+ ["next_chapter"]=12455,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3319,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1095,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8132,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=821381,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=8132,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=825141,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1245,
+ ["unit"]=0
+ }
+ },
+ [12455]={
+ ["next_chapter"]=12456,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3323,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1097,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8214,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=829595,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=8214,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=825141,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1245,
+ ["unit"]=0
+ }
+ },
+ [12456]={
+ ["next_chapter"]=12457,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3326,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1098,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8296,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=837891,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=8296,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=825141,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1245,
+ ["unit"]=0
+ }
+ },
+ [12457]={
+ ["next_chapter"]=12458,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3330,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1099,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8379,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=846270,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=8379,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=825141,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1245,
+ ["unit"]=0
+ }
+ },
+ [12458]={
+ ["next_chapter"]=12459,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3333,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1100,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8463,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=854733,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=8463,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=825141,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1245,
+ ["unit"]=0
+ }
+ },
+ [12459]={
+ ["next_chapter"]=12460,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3336,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1101,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8547,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=863280,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=8547,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=825141,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1245,
+ ["unit"]=0
+ }
+ },
+ [12460]={
+ ["next_chapter"]=12461,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=3340,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1102,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8633,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=871913,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=8633,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=911469,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1246,
+ ["unit"]=0
+ }
+ },
+ [12461]={
+ ["next_chapter"]=12462,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3343,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1103,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8719,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=880632,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=8719,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=911469,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1246,
+ ["unit"]=0
+ }
+ },
+ [12462]={
+ ["next_chapter"]=12463,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3346,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1104,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8806,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=889438,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=8806,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=911469,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1246,
+ ["unit"]=0
+ }
+ },
+ [12463]={
+ ["next_chapter"]=12464,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3350,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1105,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8894,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=898333,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=8894,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=911469,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1246,
+ ["unit"]=0
+ }
+ },
+ [12464]={
+ ["next_chapter"]=12465,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3353,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1107,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8983,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=907316,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=8983,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=911469,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1246,
+ ["unit"]=0
+ }
+ },
+ [12465]={
+ ["next_chapter"]=12466,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3356,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1108,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=9073,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=916389,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=9073,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=911469,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1246,
+ ["unit"]=0
+ }
+ },
+ [12466]={
+ ["next_chapter"]=12467,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3360,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1109,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=9164,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=925553,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=9164,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=911469,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1246,
+ ["unit"]=0
+ }
+ },
+ [12467]={
+ ["next_chapter"]=12468,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3363,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1110,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=9256,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=934809,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=9256,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=911469,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1246,
+ ["unit"]=0
+ }
+ },
+ [12468]={
+ ["next_chapter"]=12469,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3367,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1111,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=9348,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=944157,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=9348,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=911469,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1246,
+ ["unit"]=0
+ }
+ },
+ [12469]={
+ ["next_chapter"]=12470,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3370,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1112,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=9442,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=953598,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=9442,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=911469,
+ ["unit"]=17
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1246,
+ ["unit"]=0
+ }
+ },
+ [12470]={
+ ["next_chapter"]=12471,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=3373,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1113,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=9536,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=963134,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=9536,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1007,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1247,
+ ["unit"]=0
+ }
+ },
+ [12471]={
+ ["next_chapter"]=12472,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3377,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1114,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=9631,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=972766,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=9631,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1007,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1247,
+ ["unit"]=0
+ }
+ },
+ [12472]={
+ ["next_chapter"]=12473,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3380,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1115,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=9728,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=982493,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=9728,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1007,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1247,
+ ["unit"]=0
+ }
+ },
+ [12473]={
+ ["next_chapter"]=12474,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3384,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1117,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=9825,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=992318,
+ ["unit"]=17
+ },
+ ["idle_gold"]={
+ ["value"]=9825,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1007,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1247,
+ ["unit"]=0
+ }
+ },
+ [12474]={
+ ["next_chapter"]=12475,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3387,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1118,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=9923,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1002,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=9923,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1007,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1247,
+ ["unit"]=0
+ }
+ },
+ [12475]={
+ ["next_chapter"]=12476,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3390,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1119,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=10022,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1012,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=10022,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1007,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1247,
+ ["unit"]=0
+ }
+ },
+ [12476]={
+ ["next_chapter"]=12477,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3394,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1120,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=10123,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1022,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=10123,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1007,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1247,
+ ["unit"]=0
+ }
+ },
+ [12477]={
+ ["next_chapter"]=12478,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3397,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1121,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=10224,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1033,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=10224,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1007,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1247,
+ ["unit"]=0
+ }
+ },
+ [12478]={
+ ["next_chapter"]=12479,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3401,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1122,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=10326,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1043,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=10326,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1007,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1247,
+ ["unit"]=0
+ }
+ },
+ [12479]={
+ ["next_chapter"]=12480,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3404,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1123,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=10429,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1053,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=10429,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1007,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1247,
+ ["unit"]=0
+ }
+ },
+ [12480]={
+ ["next_chapter"]=12481,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=3407,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1124,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=10534,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1064,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=10534,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1112,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1248,
+ ["unit"]=0
+ }
+ },
+ [12481]={
+ ["next_chapter"]=12482,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3411,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1126,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=10639,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1075,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=10639,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1112,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1248,
+ ["unit"]=0
+ }
+ },
+ [12482]={
+ ["next_chapter"]=12483,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3414,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1127,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=10745,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1085,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=10745,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1112,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1248,
+ ["unit"]=0
+ }
+ },
+ [12483]={
+ ["next_chapter"]=12484,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3418,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1128,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=10853,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1096,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=10853,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1112,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1248,
+ ["unit"]=0
+ }
+ },
+ [12484]={
+ ["next_chapter"]=12485,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3421,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1129,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=10961,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1107,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=10961,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1112,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1248,
+ ["unit"]=0
+ }
+ },
+ [12485]={
+ ["next_chapter"]=12486,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3424,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1130,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=11071,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1118,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=11071,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1112,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1248,
+ ["unit"]=0
+ }
+ },
+ [12486]={
+ ["next_chapter"]=12487,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3428,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1131,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=11182,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1129,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=11182,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1112,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1248,
+ ["unit"]=0
+ }
+ },
+ [12487]={
+ ["next_chapter"]=12488,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3431,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1132,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=11294,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1141,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=11294,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1112,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1248,
+ ["unit"]=0
+ }
+ },
+ [12488]={
+ ["next_chapter"]=12489,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3435,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1133,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=11406,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1152,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=11406,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1112,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1248,
+ ["unit"]=0
+ }
+ },
+ [12489]={
+ ["next_chapter"]=12490,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3438,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1135,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=11521,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1164,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=11521,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1112,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1248,
+ ["unit"]=0
+ }
+ },
+ [12490]={
+ ["next_chapter"]=12491,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=3442,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1136,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=11636,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1175,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=11636,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1229,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1249,
+ ["unit"]=0
+ }
+ },
+ [12491]={
+ ["next_chapter"]=12492,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3445,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1137,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=11752,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1187,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=11752,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1229,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1249,
+ ["unit"]=0
+ }
+ },
+ [12492]={
+ ["next_chapter"]=12493,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3448,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1138,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=11870,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1199,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=11870,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1229,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1249,
+ ["unit"]=0
+ }
+ },
+ [12493]={
+ ["next_chapter"]=12494,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3452,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1139,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=11988,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1211,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=11988,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1229,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1249,
+ ["unit"]=0
+ }
+ },
+ [12494]={
+ ["next_chapter"]=12495,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3455,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1140,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=12108,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1223,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=12108,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1229,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1249,
+ ["unit"]=0
+ }
+ },
+ [12495]={
+ ["next_chapter"]=12496,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3459,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1141,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=12229,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1235,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=12229,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1229,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1249,
+ ["unit"]=0
+ }
+ },
+ [12496]={
+ ["next_chapter"]=12497,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3462,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1143,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=12352,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1248,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=12352,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1229,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1249,
+ ["unit"]=0
+ }
+ },
+ [12497]={
+ ["next_chapter"]=12498,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3466,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1144,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=12475,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1260,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=12475,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1229,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1249,
+ ["unit"]=0
+ }
+ },
+ [12498]={
+ ["next_chapter"]=12499,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3469,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1145,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=12600,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1273,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=12600,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1229,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1249,
+ ["unit"]=0
+ }
+ },
+ [12499]={
+ ["next_chapter"]=12500,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3473,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1146,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=12726,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1285,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=12726,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1229,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1249,
+ ["unit"]=0
+ }
+ },
+ [12500]={
+ ["next_chapter"]=12501,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=3476,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1147,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=12853,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1298,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=12853,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1357,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1250,
+ ["unit"]=0
+ }
+ },
+ [12501]={
+ ["next_chapter"]=12502,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3479,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1148,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=12982,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1311,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=12982,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1357,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1250,
+ ["unit"]=0
+ }
+ },
+ [12502]={
+ ["next_chapter"]=12503,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3483,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1149,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=13111,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1324,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=13111,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1357,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1250,
+ ["unit"]=0
+ }
+ },
+ [12503]={
+ ["next_chapter"]=12504,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3486,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1151,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=13243,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1337,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=13243,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1357,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1250,
+ ["unit"]=0
+ }
+ },
+ [12504]={
+ ["next_chapter"]=12505,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3490,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1152,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=13375,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1351,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=13375,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1357,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1250,
+ ["unit"]=0
+ }
+ },
+ [12505]={
+ ["next_chapter"]=12506,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3493,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1153,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=13509,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1364,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=13509,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1357,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1250,
+ ["unit"]=0
+ }
+ },
+ [12506]={
+ ["next_chapter"]=12507,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3497,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1154,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=13644,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1378,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=13644,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1357,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1250,
+ ["unit"]=0
+ }
+ },
+ [12507]={
+ ["next_chapter"]=12508,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3500,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1155,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=13780,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1392,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=13780,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1357,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1250,
+ ["unit"]=0
+ }
+ },
+ [12508]={
+ ["next_chapter"]=12509,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3504,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1156,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=13918,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1406,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=13918,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1357,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1250,
+ ["unit"]=0
+ }
+ },
+ [12509]={
+ ["next_chapter"]=12510,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3507,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1157,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=14057,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1420,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=14057,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1357,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1250,
+ ["unit"]=0
+ }
+ },
+ [12510]={
+ ["next_chapter"]=12511,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=3511,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1159,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=14198,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1434,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=14198,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1499,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1251,
+ ["unit"]=0
+ }
+ },
+ [12511]={
+ ["next_chapter"]=12512,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3514,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1160,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=14340,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1448,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=14340,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1499,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1251,
+ ["unit"]=0
+ }
+ },
+ [12512]={
+ ["next_chapter"]=12513,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3518,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1161,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=14483,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1463,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=14483,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1499,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1251,
+ ["unit"]=0
+ }
+ },
+ [12513]={
+ ["next_chapter"]=12514,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3521,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1162,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=14628,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1477,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=14628,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1499,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1251,
+ ["unit"]=0
+ }
+ },
+ [12514]={
+ ["next_chapter"]=12515,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3525,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1163,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=14774,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1492,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=14774,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1499,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1251,
+ ["unit"]=0
+ }
+ },
+ [12515]={
+ ["next_chapter"]=12516,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3528,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1164,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=14922,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1507,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=14922,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1499,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1251,
+ ["unit"]=0
+ }
+ },
+ [12516]={
+ ["next_chapter"]=12517,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3532,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1165,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=15071,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1522,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=15071,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1499,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1251,
+ ["unit"]=0
+ }
+ },
+ [12517]={
+ ["next_chapter"]=12518,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3535,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1167,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=15222,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1537,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=15222,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1499,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1251,
+ ["unit"]=0
+ }
+ },
+ [12518]={
+ ["next_chapter"]=12519,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3539,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1168,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=15374,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1553,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=15374,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1499,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1251,
+ ["unit"]=0
+ }
+ },
+ [12519]={
+ ["next_chapter"]=12520,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3542,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1169,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=15528,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1568,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=15528,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1499,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1251,
+ ["unit"]=0
+ }
+ },
+ [12520]={
+ ["next_chapter"]=12521,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=3546,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1170,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=15683,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1584,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=15683,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1656,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1252,
+ ["unit"]=0
+ }
+ },
+ [12521]={
+ ["next_chapter"]=12522,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3549,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1171,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=15840,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1600,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=15840,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1656,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1252,
+ ["unit"]=0
+ }
+ },
+ [12522]={
+ ["next_chapter"]=12523,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3553,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1172,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=15998,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1616,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=15998,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1656,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1252,
+ ["unit"]=0
+ }
+ },
+ [12523]={
+ ["next_chapter"]=12524,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3556,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1174,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=16158,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1632,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=16158,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1656,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1252,
+ ["unit"]=0
+ }
+ },
+ [12524]={
+ ["next_chapter"]=12525,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3560,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1175,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=16320,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1648,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=16320,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1656,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1252,
+ ["unit"]=0
+ }
+ },
+ [12525]={
+ ["next_chapter"]=12526,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3563,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1176,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=16483,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1665,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=16483,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1656,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1252,
+ ["unit"]=0
+ }
+ },
+ [12526]={
+ ["next_chapter"]=12527,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3567,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1177,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=16648,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1681,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=16648,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1656,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1252,
+ ["unit"]=0
+ }
+ },
+ [12527]={
+ ["next_chapter"]=12528,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3570,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1178,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=16814,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1698,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=16814,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1656,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1252,
+ ["unit"]=0
+ }
+ },
+ [12528]={
+ ["next_chapter"]=12529,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3574,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1179,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=16983,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1715,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=16983,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1656,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1252,
+ ["unit"]=0
+ }
+ },
+ [12529]={
+ ["next_chapter"]=12530,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3577,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1180,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=17152,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1732,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=17152,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1656,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1252,
+ ["unit"]=0
+ }
+ },
+ [12530]={
+ ["next_chapter"]=12531,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=3581,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1182,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=17324,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1750,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=17324,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1829,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1253,
+ ["unit"]=0
+ }
+ },
+ [12531]={
+ ["next_chapter"]=12532,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3584,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1183,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=17497,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1767,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=17497,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1829,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1253,
+ ["unit"]=0
+ }
+ },
+ [12532]={
+ ["next_chapter"]=12533,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3588,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1184,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=17672,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1785,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=17672,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1829,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1253,
+ ["unit"]=0
+ }
+ },
+ [12533]={
+ ["next_chapter"]=12534,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3591,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1185,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=17849,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1803,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=17849,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1829,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1253,
+ ["unit"]=0
+ }
+ },
+ [12534]={
+ ["next_chapter"]=12535,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3595,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1186,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=18027,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1821,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=18027,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1829,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1253,
+ ["unit"]=0
+ }
+ },
+ [12535]={
+ ["next_chapter"]=12536,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3598,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1187,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=18208,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1839,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=18208,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1829,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1253,
+ ["unit"]=0
+ }
+ },
+ [12536]={
+ ["next_chapter"]=12537,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3602,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1189,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=18390,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1857,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=18390,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1829,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1253,
+ ["unit"]=0
+ }
+ },
+ [12537]={
+ ["next_chapter"]=12538,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3605,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1190,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=18574,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1876,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=18574,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1829,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1253,
+ ["unit"]=0
+ }
+ },
+ [12538]={
+ ["next_chapter"]=12539,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3609,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1191,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=18759,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1895,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=18759,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1829,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1253,
+ ["unit"]=0
+ }
+ },
+ [12539]={
+ ["next_chapter"]=12540,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3613,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1192,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=18947,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1914,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=18947,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=1829,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1253,
+ ["unit"]=0
+ }
+ },
+ [12540]={
+ ["next_chapter"]=12541,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=3616,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1193,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=19136,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1933,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=19136,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=2020,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1254,
+ ["unit"]=0
+ }
+ },
+ [12541]={
+ ["next_chapter"]=12542,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3620,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1194,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=19328,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1952,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=19328,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=2020,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1254,
+ ["unit"]=0
+ }
+ },
+ [12542]={
+ ["next_chapter"]=12543,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3623,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1196,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=19521,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1972,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=19521,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=2020,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1254,
+ ["unit"]=0
+ }
+ },
+ [12543]={
+ ["next_chapter"]=12544,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3627,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1197,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=19716,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1991,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=19716,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=2020,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1254,
+ ["unit"]=0
+ }
+ },
+ [12544]={
+ ["next_chapter"]=12545,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3630,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1198,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=19913,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2011,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=19913,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=2020,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1254,
+ ["unit"]=0
+ }
+ },
+ [12545]={
+ ["next_chapter"]=12546,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3634,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1199,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=20113,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2031,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=20113,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=2020,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1254,
+ ["unit"]=0
+ }
+ },
+ [12546]={
+ ["next_chapter"]=12547,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3637,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1200,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=20314,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2052,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=20314,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=2020,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1254,
+ ["unit"]=0
+ }
+ },
+ [12547]={
+ ["next_chapter"]=12548,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3641,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1202,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=20517,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2072,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=20517,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=2020,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1254,
+ ["unit"]=0
+ }
+ },
+ [12548]={
+ ["next_chapter"]=12549,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3645,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1203,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=20722,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2093,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=20722,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=2020,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1254,
+ ["unit"]=0
+ }
+ },
+ [12549]={
+ ["next_chapter"]=12550,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3648,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1204,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=20929,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2114,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=20929,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=2020,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1254,
+ ["unit"]=0
+ }
+ },
+ [12550]={
+ ["next_chapter"]=12551,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=3652,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1205,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=21139,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2135,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=21139,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=2232,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1255,
+ ["unit"]=0
+ }
+ },
+ [12551]={
+ ["next_chapter"]=12552,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3655,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1206,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=21350,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2156,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=21350,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=2232,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1255,
+ ["unit"]=0
+ }
+ },
+ [12552]={
+ ["next_chapter"]=12553,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3659,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1207,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=21563,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2178,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=21563,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=2232,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1255,
+ ["unit"]=0
+ }
+ },
+ [12553]={
+ ["next_chapter"]=12554,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3662,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1209,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=21779,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2200,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=21779,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=2232,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1255,
+ ["unit"]=0
+ }
+ },
+ [12554]={
+ ["next_chapter"]=12555,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3666,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1210,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=21997,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2222,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=21997,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=2232,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1255,
+ ["unit"]=0
+ }
+ },
+ [12555]={
+ ["next_chapter"]=12556,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3670,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1211,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=22217,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2244,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=22217,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=2232,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1255,
+ ["unit"]=0
+ }
+ },
+ [12556]={
+ ["next_chapter"]=12557,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3673,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1212,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=22439,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2266,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=22439,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=2232,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1255,
+ ["unit"]=0
+ }
+ },
+ [12557]={
+ ["next_chapter"]=12558,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3677,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1213,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=22663,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2289,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=22663,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=2232,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1255,
+ ["unit"]=0
+ }
+ },
+ [12558]={
+ ["next_chapter"]=12559,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3680,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1215,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=22890,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2312,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=22890,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=2232,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1255,
+ ["unit"]=0
+ }
+ },
+ [12559]={
+ ["next_chapter"]=12560,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3684,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1216,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=23119,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2335,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=23119,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=2232,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1255,
+ ["unit"]=0
+ }
+ },
+ [12560]={
+ ["next_chapter"]=12561,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=3688,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1217,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=23350,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2358,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=23350,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=2465,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1256,
+ ["unit"]=0
+ }
+ },
+ [12561]={
+ ["next_chapter"]=12562,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3691,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1218,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=23584,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2382,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=23584,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=2465,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1256,
+ ["unit"]=0
+ }
+ },
+ [12562]={
+ ["next_chapter"]=12563,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3695,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1219,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=23819,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2406,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=23819,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=2465,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1256,
+ ["unit"]=0
+ }
+ },
+ [12563]={
+ ["next_chapter"]=12564,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3698,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1220,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=24058,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2430,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=24058,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=2465,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1256,
+ ["unit"]=0
+ }
+ },
+ [12564]={
+ ["next_chapter"]=12565,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3702,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1222,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=24298,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2454,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=24298,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=2465,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1256,
+ ["unit"]=0
+ }
+ },
+ [12565]={
+ ["next_chapter"]=12566,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3706,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1223,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=24541,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2479,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=24541,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=2465,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1256,
+ ["unit"]=0
+ }
+ },
+ [12566]={
+ ["next_chapter"]=12567,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3709,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1224,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=24787,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2503,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=24787,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=2465,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1256,
+ ["unit"]=0
+ }
+ },
+ [12567]={
+ ["next_chapter"]=12568,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3713,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1225,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=25034,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2528,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=25034,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=2465,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1256,
+ ["unit"]=0
+ }
+ },
+ [12568]={
+ ["next_chapter"]=12569,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3716,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1226,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=25285,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2554,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=25285,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=2465,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1256,
+ ["unit"]=0
+ }
+ },
+ [12569]={
+ ["next_chapter"]=12570,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3720,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1228,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=25538,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2579,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=25538,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=2465,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1256,
+ ["unit"]=0
+ }
+ },
+ [12570]={
+ ["next_chapter"]=12571,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=3724,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1229,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=25793,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2605,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=25793,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=2723,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1257,
+ ["unit"]=0
+ }
+ },
+ [12571]={
+ ["next_chapter"]=12572,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3727,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1230,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=26051,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2631,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=26051,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=2723,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1257,
+ ["unit"]=0
+ }
+ },
+ [12572]={
+ ["next_chapter"]=12573,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3731,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1231,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=26311,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2657,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=26311,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=2723,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1257,
+ ["unit"]=0
+ }
+ },
+ [12573]={
+ ["next_chapter"]=12574,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3734,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1232,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=26575,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2684,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=26575,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=2723,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1257,
+ ["unit"]=0
+ }
+ },
+ [12574]={
+ ["next_chapter"]=12575,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3738,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1234,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=26840,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2711,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=26840,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=2723,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1257,
+ ["unit"]=0
+ }
+ },
+ [12575]={
+ ["next_chapter"]=12576,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3742,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1235,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=27109,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2738,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=27109,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=2723,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1257,
+ ["unit"]=0
+ }
+ },
+ [12576]={
+ ["next_chapter"]=12577,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3745,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1236,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=27380,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2765,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=27380,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=2723,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1257,
+ ["unit"]=0
+ }
+ },
+ [12577]={
+ ["next_chapter"]=12578,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3749,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1237,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=27654,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2793,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=27654,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=2723,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1257,
+ ["unit"]=0
+ }
+ },
+ [12578]={
+ ["next_chapter"]=12579,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3753,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1238,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=27930,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2821,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=27930,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=2723,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1257,
+ ["unit"]=0
+ }
+ },
+ [12579]={
+ ["next_chapter"]=12580,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3756,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1240,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=28209,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2849,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=28209,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=2723,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1257,
+ ["unit"]=0
+ }
+ },
+ [12580]={
+ ["next_chapter"]=12581,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=3760,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1241,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=28492,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2878,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=28492,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=3008,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1258,
+ ["unit"]=0
+ }
+ },
+ [12581]={
+ ["next_chapter"]=12582,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3764,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1242,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=28776,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2906,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=28776,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=3008,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1258,
+ ["unit"]=0
+ }
+ },
+ [12582]={
+ ["next_chapter"]=12583,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3767,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1243,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=29064,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2935,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=29064,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=3008,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1258,
+ ["unit"]=0
+ }
+ },
+ [12583]={
+ ["next_chapter"]=12584,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3771,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1244,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=29355,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2965,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=29355,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=3008,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1258,
+ ["unit"]=0
+ }
+ },
+ [12584]={
+ ["next_chapter"]=12585,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3775,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1246,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=29648,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2994,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=29648,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=3008,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1258,
+ ["unit"]=0
+ }
+ },
+ [12585]={
+ ["next_chapter"]=12586,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3778,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1247,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=29945,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3024,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=29945,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=3008,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1258,
+ ["unit"]=0
+ }
+ },
+ [12586]={
+ ["next_chapter"]=12587,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3782,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1248,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=30244,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3055,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=30244,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=3008,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1258,
+ ["unit"]=0
+ }
+ },
+ [12587]={
+ ["next_chapter"]=12588,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3785,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1249,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=30547,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3085,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=30547,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=3008,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1258,
+ ["unit"]=0
+ }
+ },
+ [12588]={
+ ["next_chapter"]=12589,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3789,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1250,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=30852,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3116,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=30852,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=3008,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1258,
+ ["unit"]=0
+ }
+ },
+ [12589]={
+ ["next_chapter"]=12590,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3793,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1252,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=31161,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3147,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=31161,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=3008,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1258,
+ ["unit"]=0
+ }
+ },
+ [12590]={
+ ["next_chapter"]=12591,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=3796,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1253,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=31472,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3179,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=31472,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=3323,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1259,
+ ["unit"]=0
+ }
+ },
+ [12591]={
+ ["next_chapter"]=12592,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3800,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1254,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=31787,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3211,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=31787,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=3323,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1259,
+ ["unit"]=0
+ }
+ },
+ [12592]={
+ ["next_chapter"]=12593,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3804,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1255,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=32105,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3243,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=32105,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=3323,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1259,
+ ["unit"]=0
+ }
+ },
+ [12593]={
+ ["next_chapter"]=12594,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3807,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1256,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=32426,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3275,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=32426,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=3323,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1259,
+ ["unit"]=0
+ }
+ },
+ [12594]={
+ ["next_chapter"]=12595,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3811,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1258,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=32750,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3308,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=32750,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=3323,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1259,
+ ["unit"]=0
+ }
+ },
+ [12595]={
+ ["next_chapter"]=12596,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3815,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1259,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=33078,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3341,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=33078,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=3323,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1259,
+ ["unit"]=0
+ }
+ },
+ [12596]={
+ ["next_chapter"]=12597,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3819,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1260,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=33409,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3374,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=33409,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=3323,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1259,
+ ["unit"]=0
+ }
+ },
+ [12597]={
+ ["next_chapter"]=12598,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3822,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1261,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=33743,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3408,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=33743,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=3323,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1259,
+ ["unit"]=0
+ }
+ },
+ [12598]={
+ ["next_chapter"]=12599,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3826,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1263,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=34080,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3442,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=34080,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=3323,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1259,
+ ["unit"]=0
+ }
+ },
+ [12599]={
+ ["next_chapter"]=12600,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3830,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1264,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=34421,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3477,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=34421,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=3323,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1259,
+ ["unit"]=0
+ }
+ },
+ [12600]={
+ ["next_chapter"]=12601,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=3833,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1265,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=34765,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3511,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=34765,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=3671,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1260,
+ ["unit"]=0
+ }
+ },
+ [12601]={
+ ["next_chapter"]=12602,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3837,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1266,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=35113,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3546,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=35113,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=3671,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1260,
+ ["unit"]=0
+ }
+ },
+ [12602]={
+ ["next_chapter"]=12603,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3841,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1267,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=35464,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3582,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=35464,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=3671,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1260,
+ ["unit"]=0
+ }
+ },
+ [12603]={
+ ["next_chapter"]=12604,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3844,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1269,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=35819,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3618,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=35819,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=3671,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1260,
+ ["unit"]=0
+ }
+ },
+ [12604]={
+ ["next_chapter"]=12605,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3848,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1270,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=36177,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3654,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=36177,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=3671,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1260,
+ ["unit"]=0
+ }
+ },
+ [12605]={
+ ["next_chapter"]=12606,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3852,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1271,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=36539,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3690,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=36539,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=3671,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1260,
+ ["unit"]=0
+ }
+ },
+ [12606]={
+ ["next_chapter"]=12607,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3855,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1272,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=36904,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3727,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=36904,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=3671,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1260,
+ ["unit"]=0
+ }
+ },
+ [12607]={
+ ["next_chapter"]=12608,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3859,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1274,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=37273,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3765,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=37273,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=3671,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1260,
+ ["unit"]=0
+ }
+ },
+ [12608]={
+ ["next_chapter"]=12609,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3863,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1275,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=37646,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3802,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=37646,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=3671,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1260,
+ ["unit"]=0
+ }
+ },
+ [12609]={
+ ["next_chapter"]=12610,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3867,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1276,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=38022,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3840,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=38022,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=3671,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1260,
+ ["unit"]=0
+ }
+ },
+ [12610]={
+ ["next_chapter"]=12611,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=3870,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1277,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=38402,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3879,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=38402,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=4055,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1261,
+ ["unit"]=0
+ }
+ },
+ [12611]={
+ ["next_chapter"]=12612,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3874,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1278,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=38786,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3917,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=38786,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=4055,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1261,
+ ["unit"]=0
+ }
+ },
+ [12612]={
+ ["next_chapter"]=12613,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3878,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1280,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=39174,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3957,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=39174,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=4055,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1261,
+ ["unit"]=0
+ }
+ },
+ [12613]={
+ ["next_chapter"]=12614,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3881,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1281,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=39566,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3996,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=39566,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=4055,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1261,
+ ["unit"]=0
+ }
+ },
+ [12614]={
+ ["next_chapter"]=12615,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3885,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1282,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=39962,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4036,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=39962,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=4055,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1261,
+ ["unit"]=0
+ }
+ },
+ [12615]={
+ ["next_chapter"]=12616,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3889,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1283,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=40361,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4076,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=40361,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=4055,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1261,
+ ["unit"]=0
+ }
+ },
+ [12616]={
+ ["next_chapter"]=12617,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3893,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1285,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=40765,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4117,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=40765,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=4055,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1261,
+ ["unit"]=0
+ }
+ },
+ [12617]={
+ ["next_chapter"]=12618,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3896,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1286,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=41173,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4158,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=41173,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=4055,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1261,
+ ["unit"]=0
+ }
+ },
+ [12618]={
+ ["next_chapter"]=12619,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3900,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1287,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=41584,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4200,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=41584,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=4055,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1261,
+ ["unit"]=0
+ }
+ },
+ [12619]={
+ ["next_chapter"]=12620,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3904,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1288,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=42000,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4242,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=42000,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=4055,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1261,
+ ["unit"]=0
+ }
+ },
+ [12620]={
+ ["next_chapter"]=12621,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=3908,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1289,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=42420,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4284,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=42420,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=4479,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1262,
+ ["unit"]=0
+ }
+ },
+ [12621]={
+ ["next_chapter"]=12622,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3911,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1291,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=42844,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4327,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=42844,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=4479,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1262,
+ ["unit"]=0
+ }
+ },
+ [12622]={
+ ["next_chapter"]=12623,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3915,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1292,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=43273,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4371,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=43273,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=4479,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1262,
+ ["unit"]=0
+ }
+ },
+ [12623]={
+ ["next_chapter"]=12624,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3919,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1293,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=43705,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4414,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=43705,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=4479,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1262,
+ ["unit"]=0
+ }
+ },
+ [12624]={
+ ["next_chapter"]=12625,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3923,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1294,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=44143,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4458,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=44143,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=4479,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1262,
+ ["unit"]=0
+ }
+ },
+ [12625]={
+ ["next_chapter"]=12626,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3926,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1296,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=44584,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4503,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=44584,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=4479,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1262,
+ ["unit"]=0
+ }
+ },
+ [12626]={
+ ["next_chapter"]=12627,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3930,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1297,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=45030,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4548,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=45030,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=4479,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1262,
+ ["unit"]=0
+ }
+ },
+ [12627]={
+ ["next_chapter"]=12628,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3934,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1298,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=45480,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4593,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=45480,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=4479,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1262,
+ ["unit"]=0
+ }
+ },
+ [12628]={
+ ["next_chapter"]=12629,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3938,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1299,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=45935,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4639,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=45935,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=4479,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1262,
+ ["unit"]=0
+ }
+ },
+ [12629]={
+ ["next_chapter"]=12630,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3941,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1301,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=46394,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4686,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=46394,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=4479,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1262,
+ ["unit"]=0
+ }
+ },
+ [12630]={
+ ["next_chapter"]=12631,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=3945,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1302,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=46858,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4733,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=46858,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=4947,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1263,
+ ["unit"]=0
+ }
+ },
+ [12631]={
+ ["next_chapter"]=12632,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3949,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1303,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=47327,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4780,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=47327,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=4947,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1263,
+ ["unit"]=0
+ }
+ },
+ [12632]={
+ ["next_chapter"]=12633,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3953,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1304,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=47800,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4828,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=47800,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=4947,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1263,
+ ["unit"]=0
+ }
+ },
+ [12633]={
+ ["next_chapter"]=12634,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3956,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1306,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=48278,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4876,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=48278,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=4947,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1263,
+ ["unit"]=0
+ }
+ },
+ [12634]={
+ ["next_chapter"]=12635,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3960,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1307,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=48761,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4925,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=48761,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=4947,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1263,
+ ["unit"]=0
+ }
+ },
+ [12635]={
+ ["next_chapter"]=12636,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3964,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1308,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=49248,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4974,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=49248,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=4947,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1263,
+ ["unit"]=0
+ }
+ },
+ [12636]={
+ ["next_chapter"]=12637,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3968,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1309,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=49741,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5024,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=49741,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=4947,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1263,
+ ["unit"]=0
+ }
+ },
+ [12637]={
+ ["next_chapter"]=12638,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3971,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1311,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=50238,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5074,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=50238,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=4947,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1263,
+ ["unit"]=0
+ }
+ },
+ [12638]={
+ ["next_chapter"]=12639,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3975,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1312,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=50741,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5125,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=50741,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=4947,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1263,
+ ["unit"]=0
+ }
+ },
+ [12639]={
+ ["next_chapter"]=12640,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3979,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1313,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=51248,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5176,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=51248,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=4947,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1263,
+ ["unit"]=0
+ }
+ },
+ [12640]={
+ ["next_chapter"]=12641,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=3983,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1314,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=51761,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5228,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=51761,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=5465,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1264,
+ ["unit"]=0
+ }
+ },
+ [12641]={
+ ["next_chapter"]=12642,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3987,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1316,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=52278,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5280,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=52278,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=5465,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1264,
+ ["unit"]=0
+ }
+ },
+ [12642]={
+ ["next_chapter"]=12643,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3990,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1317,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=52801,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5333,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=52801,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=5465,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1264,
+ ["unit"]=0
+ }
+ },
+ [12643]={
+ ["next_chapter"]=12644,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3994,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1318,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=53329,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5386,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=53329,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=5465,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1264,
+ ["unit"]=0
+ }
+ },
+ [12644]={
+ ["next_chapter"]=12645,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=3998,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1319,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=53862,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5440,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=53862,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=5465,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1264,
+ ["unit"]=0
+ }
+ },
+ [12645]={
+ ["next_chapter"]=12646,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4002,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1321,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=54401,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5494,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=54401,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=5465,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1264,
+ ["unit"]=0
+ }
+ },
+ [12646]={
+ ["next_chapter"]=12647,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4006,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1322,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=54945,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5549,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=54945,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=5465,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1264,
+ ["unit"]=0
+ }
+ },
+ [12647]={
+ ["next_chapter"]=12648,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4009,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1323,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=55494,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5605,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=55494,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=5465,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1264,
+ ["unit"]=0
+ }
+ },
+ [12648]={
+ ["next_chapter"]=12649,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4013,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1324,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=56049,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5661,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=56049,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=5465,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1264,
+ ["unit"]=0
+ }
+ },
+ [12649]={
+ ["next_chapter"]=12650,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4017,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1326,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=56610,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5718,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=56610,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=5465,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1264,
+ ["unit"]=0
+ }
+ },
+ [12650]={
+ ["next_chapter"]=12651,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=4021,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1327,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=57176,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5775,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=57176,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=6037,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1265,
+ ["unit"]=0
+ }
+ },
+ [12651]={
+ ["next_chapter"]=12652,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4025,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1328,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=57748,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5833,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=57748,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=6037,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1265,
+ ["unit"]=0
+ }
+ },
+ [12652]={
+ ["next_chapter"]=12653,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4028,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1329,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=58325,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5891,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=58325,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=6037,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1265,
+ ["unit"]=0
+ }
+ },
+ [12653]={
+ ["next_chapter"]=12654,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4032,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1331,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=58908,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5950,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=58908,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=6037,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1265,
+ ["unit"]=0
+ }
+ },
+ [12654]={
+ ["next_chapter"]=12655,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4036,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1332,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=59497,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6009,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=59497,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=6037,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1265,
+ ["unit"]=0
+ }
+ },
+ [12655]={
+ ["next_chapter"]=12656,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4040,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1333,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=60092,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6069,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=60092,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=6037,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1265,
+ ["unit"]=0
+ }
+ },
+ [12656]={
+ ["next_chapter"]=12657,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4044,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1334,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=60693,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6130,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=60693,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=6037,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1265,
+ ["unit"]=0
+ }
+ },
+ [12657]={
+ ["next_chapter"]=12658,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4047,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1336,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=61300,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6191,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=61300,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=6037,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1265,
+ ["unit"]=0
+ }
+ },
+ [12658]={
+ ["next_chapter"]=12659,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4051,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1337,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=61913,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6253,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=61913,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=6037,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1265,
+ ["unit"]=0
+ }
+ },
+ [12659]={
+ ["next_chapter"]=12660,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4055,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1338,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=62532,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6316,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=62532,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=6037,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1265,
+ ["unit"]=0
+ }
+ },
+ [12660]={
+ ["next_chapter"]=12661,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=4059,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1339,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=63158,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6379,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=63158,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=6668,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1266,
+ ["unit"]=0
+ }
+ },
+ [12661]={
+ ["next_chapter"]=12662,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4063,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1341,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=63789,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6443,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=63789,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=6668,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1266,
+ ["unit"]=0
+ }
+ },
+ [12662]={
+ ["next_chapter"]=12663,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4067,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1342,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=64427,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6507,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=64427,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=6668,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1266,
+ ["unit"]=0
+ }
+ },
+ [12663]={
+ ["next_chapter"]=12664,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4070,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1343,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=65071,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6572,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=65071,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=6668,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1266,
+ ["unit"]=0
+ }
+ },
+ [12664]={
+ ["next_chapter"]=12665,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4074,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1345,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=65722,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6638,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=65722,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=6668,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1266,
+ ["unit"]=0
+ }
+ },
+ [12665]={
+ ["next_chapter"]=12666,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4078,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1346,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=66379,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6704,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=66379,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=6668,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1266,
+ ["unit"]=0
+ }
+ },
+ [12666]={
+ ["next_chapter"]=12667,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4082,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1347,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=67043,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6771,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=67043,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=6668,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1266,
+ ["unit"]=0
+ }
+ },
+ [12667]={
+ ["next_chapter"]=12668,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4086,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1348,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=67714,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6839,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=67714,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=6668,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1266,
+ ["unit"]=0
+ }
+ },
+ [12668]={
+ ["next_chapter"]=12669,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4090,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1350,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=68391,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6907,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=68391,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=6668,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1266,
+ ["unit"]=0
+ }
+ },
+ [12669]={
+ ["next_chapter"]=12670,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4094,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1351,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=69075,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6977,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=69075,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=6668,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1266,
+ ["unit"]=0
+ }
+ },
+ [12670]={
+ ["next_chapter"]=12671,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=4097,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1352,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=69765,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7046,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=69765,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=7366,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1267,
+ ["unit"]=0
+ }
+ },
+ [12671]={
+ ["next_chapter"]=12672,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4101,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1353,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=70463,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7117,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=70463,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=7366,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1267,
+ ["unit"]=0
+ }
+ },
+ [12672]={
+ ["next_chapter"]=12673,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4105,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1355,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=71168,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7188,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=71168,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=7366,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1267,
+ ["unit"]=0
+ }
+ },
+ [12673]={
+ ["next_chapter"]=12674,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4109,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1356,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=71879,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7260,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=71879,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=7366,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1267,
+ ["unit"]=0
+ }
+ },
+ [12674]={
+ ["next_chapter"]=12675,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4113,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1357,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=72598,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7332,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=72598,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=7366,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1267,
+ ["unit"]=0
+ }
+ },
+ [12675]={
+ ["next_chapter"]=12676,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4117,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1359,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=73324,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7406,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=73324,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=7366,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1267,
+ ["unit"]=0
+ }
+ },
+ [12676]={
+ ["next_chapter"]=12677,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4121,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1360,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=74057,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7480,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=74057,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=7366,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1267,
+ ["unit"]=0
+ }
+ },
+ [12677]={
+ ["next_chapter"]=12678,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4125,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1361,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=74798,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7555,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=74798,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=7366,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1267,
+ ["unit"]=0
+ }
+ },
+ [12678]={
+ ["next_chapter"]=12679,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4128,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1362,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=75546,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7630,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=75546,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=7366,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1267,
+ ["unit"]=0
+ }
+ },
+ [12679]={
+ ["next_chapter"]=12680,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4132,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1364,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=76301,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7706,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=76301,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=7366,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1267,
+ ["unit"]=0
+ }
+ },
+ [12680]={
+ ["next_chapter"]=12681,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=4136,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1365,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=77064,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7784,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=77064,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=8137,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1268,
+ ["unit"]=0
+ }
+ },
+ [12681]={
+ ["next_chapter"]=12682,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4140,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1366,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=77835,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7861,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=77835,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=8137,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1268,
+ ["unit"]=0
+ }
+ },
+ [12682]={
+ ["next_chapter"]=12683,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4144,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1367,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=78613,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7940,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=78613,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=8137,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1268,
+ ["unit"]=0
+ }
+ },
+ [12683]={
+ ["next_chapter"]=12684,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4148,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1369,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=79400,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8019,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=79400,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=8137,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1268,
+ ["unit"]=0
+ }
+ },
+ [12684]={
+ ["next_chapter"]=12685,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4152,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1370,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=80194,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8100,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=80194,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=8137,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1268,
+ ["unit"]=0
+ }
+ },
+ [12685]={
+ ["next_chapter"]=12686,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4156,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1371,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=80995,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8181,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=80995,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=8137,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1268,
+ ["unit"]=0
+ }
+ },
+ [12686]={
+ ["next_chapter"]=12687,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4159,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1373,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=81805,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8262,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=81805,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=8137,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1268,
+ ["unit"]=0
+ }
+ },
+ [12687]={
+ ["next_chapter"]=12688,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4163,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1374,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=82623,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8345,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=82623,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=8137,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1268,
+ ["unit"]=0
+ }
+ },
+ [12688]={
+ ["next_chapter"]=12689,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4167,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1375,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=83450,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8428,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=83450,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=8137,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1268,
+ ["unit"]=0
+ }
+ },
+ [12689]={
+ ["next_chapter"]=12690,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4171,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1376,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=84284,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8513,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=84284,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=8137,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1268,
+ ["unit"]=0
+ }
+ },
+ [12690]={
+ ["next_chapter"]=12691,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=4175,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1378,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=85127,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8598,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=85127,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=8988,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1269,
+ ["unit"]=0
+ }
+ },
+ [12691]={
+ ["next_chapter"]=12692,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4179,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1379,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=85978,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8684,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=85978,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=8988,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1269,
+ ["unit"]=0
+ }
+ },
+ [12692]={
+ ["next_chapter"]=12693,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4183,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1380,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=86838,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8771,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=86838,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=8988,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1269,
+ ["unit"]=0
+ }
+ },
+ [12693]={
+ ["next_chapter"]=12694,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4187,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1382,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=87707,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8858,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=87707,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=8988,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1269,
+ ["unit"]=0
+ }
+ },
+ [12694]={
+ ["next_chapter"]=12695,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4191,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1383,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=88584,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8947,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=88584,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=8988,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1269,
+ ["unit"]=0
+ }
+ },
+ [12695]={
+ ["next_chapter"]=12696,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4195,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1384,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=89469,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9036,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=89469,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=8988,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1269,
+ ["unit"]=0
+ }
+ },
+ [12696]={
+ ["next_chapter"]=12697,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4199,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1386,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=90364,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9127,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=90364,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=8988,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1269,
+ ["unit"]=0
+ }
+ },
+ [12697]={
+ ["next_chapter"]=12698,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4203,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1387,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=91268,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9218,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=91268,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=8988,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1269,
+ ["unit"]=0
+ }
+ },
+ [12698]={
+ ["next_chapter"]=12699,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4206,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1388,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=92180,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9310,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=92180,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=8988,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1269,
+ ["unit"]=0
+ }
+ },
+ [12699]={
+ ["next_chapter"]=12700,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4210,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1389,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=93102,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9403,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=93102,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=8988,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1269,
+ ["unit"]=0
+ }
+ },
+ [12700]={
+ ["next_chapter"]=12701,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=4214,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1391,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=94033,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9497,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=94033,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=9928,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1270,
+ ["unit"]=0
+ }
+ },
+ [12701]={
+ ["next_chapter"]=12702,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4218,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1392,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=94974,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9592,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=94974,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=9928,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1270,
+ ["unit"]=0
+ }
+ },
+ [12702]={
+ ["next_chapter"]=12703,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4222,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1393,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=95923,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9688,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=95923,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=9928,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1270,
+ ["unit"]=0
+ }
+ },
+ [12703]={
+ ["next_chapter"]=12704,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4226,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1395,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=96883,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9785,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=96883,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=9928,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1270,
+ ["unit"]=0
+ }
+ },
+ [12704]={
+ ["next_chapter"]=12705,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4230,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1396,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=97851,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9883,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=97851,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=9928,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1270,
+ ["unit"]=0
+ }
+ },
+ [12705]={
+ ["next_chapter"]=12706,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4234,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1397,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=98830,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9982,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=98830,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=9928,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1270,
+ ["unit"]=0
+ }
+ },
+ [12706]={
+ ["next_chapter"]=12707,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4238,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1399,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=99818,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10082,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=99818,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=9928,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1270,
+ ["unit"]=0
+ }
+ },
+ [12707]={
+ ["next_chapter"]=12708,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4242,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1400,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=100816,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10182,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=100816,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=9928,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1270,
+ ["unit"]=0
+ }
+ },
+ [12708]={
+ ["next_chapter"]=12709,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4246,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1401,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=101825,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10284,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=101825,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=9928,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1270,
+ ["unit"]=0
+ }
+ },
+ [12709]={
+ ["next_chapter"]=12710,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4250,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1402,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=102843,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10387,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=102843,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=9928,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1270,
+ ["unit"]=0
+ }
+ },
+ [12710]={
+ ["next_chapter"]=12711,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=4254,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1404,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=103871,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10491,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=103871,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=10967,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1271,
+ ["unit"]=0
+ }
+ },
+ [12711]={
+ ["next_chapter"]=12712,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4258,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1405,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=104910,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10596,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=104910,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=10967,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1271,
+ ["unit"]=0
+ }
+ },
+ [12712]={
+ ["next_chapter"]=12713,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4262,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1406,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=105959,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10702,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=105959,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=10967,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1271,
+ ["unit"]=0
+ }
+ },
+ [12713]={
+ ["next_chapter"]=12714,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4266,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1408,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=107019,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10809,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=107019,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=10967,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1271,
+ ["unit"]=0
+ }
+ },
+ [12714]={
+ ["next_chapter"]=12715,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4270,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1409,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=108089,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10917,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=108089,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=10967,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1271,
+ ["unit"]=0
+ }
+ },
+ [12715]={
+ ["next_chapter"]=12716,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4274,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1410,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=109170,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11026,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=109170,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=10967,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1271,
+ ["unit"]=0
+ }
+ },
+ [12716]={
+ ["next_chapter"]=12717,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4278,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1412,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=110261,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11136,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=110261,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=10967,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1271,
+ ["unit"]=0
+ }
+ },
+ [12717]={
+ ["next_chapter"]=12718,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4282,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1413,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=111364,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11248,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=111364,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=10967,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1271,
+ ["unit"]=0
+ }
+ },
+ [12718]={
+ ["next_chapter"]=12719,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4285,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1414,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=112478,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11360,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=112478,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=10967,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1271,
+ ["unit"]=0
+ }
+ },
+ [12719]={
+ ["next_chapter"]=12720,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4289,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1416,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=113602,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11474,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=113602,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=10967,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1271,
+ ["unit"]=0
+ }
+ },
+ [12720]={
+ ["next_chapter"]=12721,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=4293,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1417,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=114738,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11589,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=114738,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=12114,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1272,
+ ["unit"]=0
+ }
+ },
+ [12721]={
+ ["next_chapter"]=12722,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4297,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1418,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=115886,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11704,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=115886,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=12114,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1272,
+ ["unit"]=0
+ }
+ },
+ [12722]={
+ ["next_chapter"]=12723,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4301,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1419,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=117045,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11822,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=117045,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=12114,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1272,
+ ["unit"]=0
+ }
+ },
+ [12723]={
+ ["next_chapter"]=12724,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4305,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1421,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=118215,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11940,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=118215,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=12114,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1272,
+ ["unit"]=0
+ }
+ },
+ [12724]={
+ ["next_chapter"]=12725,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4309,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1422,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=119397,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12059,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=119397,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=12114,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1272,
+ ["unit"]=0
+ }
+ },
+ [12725]={
+ ["next_chapter"]=12726,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4313,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1423,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=120591,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12180,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=120591,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=12114,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1272,
+ ["unit"]=0
+ }
+ },
+ [12726]={
+ ["next_chapter"]=12727,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4317,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1425,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=121797,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12302,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=121797,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=12114,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1272,
+ ["unit"]=0
+ }
+ },
+ [12727]={
+ ["next_chapter"]=12728,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4321,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1426,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=123015,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12425,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=123015,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=12114,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1272,
+ ["unit"]=0
+ }
+ },
+ [12728]={
+ ["next_chapter"]=12729,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4325,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1427,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=124245,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12549,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=124245,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=12114,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1272,
+ ["unit"]=0
+ }
+ },
+ [12729]={
+ ["next_chapter"]=12730,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4329,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1429,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=125488,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12674,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=125488,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=12114,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1272,
+ ["unit"]=0
+ }
+ },
+ [12730]={
+ ["next_chapter"]=12731,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=4333,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1430,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=126743,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12801,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=126743,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=13382,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1273,
+ ["unit"]=0
+ }
+ },
+ [12731]={
+ ["next_chapter"]=12732,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4337,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1431,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=128010,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12929,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=128010,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=13382,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1273,
+ ["unit"]=0
+ }
+ },
+ [12732]={
+ ["next_chapter"]=12733,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4341,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1433,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=129290,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13058,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=129290,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=13382,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1273,
+ ["unit"]=0
+ }
+ },
+ [12733]={
+ ["next_chapter"]=12734,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4345,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1434,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=130583,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13189,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=130583,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=13382,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1273,
+ ["unit"]=0
+ }
+ },
+ [12734]={
+ ["next_chapter"]=12735,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4349,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1435,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=131889,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13321,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=131889,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=13382,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1273,
+ ["unit"]=0
+ }
+ },
+ [12735]={
+ ["next_chapter"]=12736,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4353,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1437,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=133208,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13454,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=133208,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=13382,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1273,
+ ["unit"]=0
+ }
+ },
+ [12736]={
+ ["next_chapter"]=12737,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4357,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1438,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=134540,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13589,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=134540,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=13382,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1273,
+ ["unit"]=0
+ }
+ },
+ [12737]={
+ ["next_chapter"]=12738,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4361,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1439,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=135885,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13724,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=135885,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=13382,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1273,
+ ["unit"]=0
+ }
+ },
+ [12738]={
+ ["next_chapter"]=12739,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4366,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1441,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=137244,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13862,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=137244,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=13382,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1273,
+ ["unit"]=0
+ }
+ },
+ [12739]={
+ ["next_chapter"]=12740,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4370,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1442,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=138617,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14000,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=138617,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=13382,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1273,
+ ["unit"]=0
+ }
+ },
+ [12740]={
+ ["next_chapter"]=12741,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=4374,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1443,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=140003,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14140,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=140003,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=14782,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1274,
+ ["unit"]=0
+ }
+ },
+ [12741]={
+ ["next_chapter"]=12742,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4378,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1445,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=141403,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14282,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=141403,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=14782,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1274,
+ ["unit"]=0
+ }
+ },
+ [12742]={
+ ["next_chapter"]=12743,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4382,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1446,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=142817,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14424,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=142817,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=14782,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1274,
+ ["unit"]=0
+ }
+ },
+ [12743]={
+ ["next_chapter"]=12744,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4386,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1447,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=144245,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14569,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=144245,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=14782,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1274,
+ ["unit"]=0
+ }
+ },
+ [12744]={
+ ["next_chapter"]=12745,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4390,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1449,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=145687,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14714,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=145687,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=14782,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1274,
+ ["unit"]=0
+ }
+ },
+ [12745]={
+ ["next_chapter"]=12746,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4394,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1450,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=147144,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14862,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=147144,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=14782,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1274,
+ ["unit"]=0
+ }
+ },
+ [12746]={
+ ["next_chapter"]=12747,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4398,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1451,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=148616,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15010,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=148616,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=14782,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1274,
+ ["unit"]=0
+ }
+ },
+ [12747]={
+ ["next_chapter"]=12748,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4402,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1453,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=150102,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15160,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=150102,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=14782,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1274,
+ ["unit"]=0
+ }
+ },
+ [12748]={
+ ["next_chapter"]=12749,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4406,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1454,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=151603,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15312,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=151603,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=14782,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1274,
+ ["unit"]=0
+ }
+ },
+ [12749]={
+ ["next_chapter"]=12750,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4410,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1455,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=153119,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15465,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=153119,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=14782,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1274,
+ ["unit"]=0
+ }
+ },
+ [12750]={
+ ["next_chapter"]=12751,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=4414,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1457,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=154650,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15620,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=154650,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=16328,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1275,
+ ["unit"]=0
+ }
+ },
+ [12751]={
+ ["next_chapter"]=12752,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4418,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1458,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=156197,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15776,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=156197,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=16328,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1275,
+ ["unit"]=0
+ }
+ },
+ [12752]={
+ ["next_chapter"]=12753,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4422,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1459,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=157759,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15934,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=157759,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=16328,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1275,
+ ["unit"]=0
+ }
+ },
+ [12753]={
+ ["next_chapter"]=12754,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4426,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1461,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=159336,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16093,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=159336,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=16328,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1275,
+ ["unit"]=0
+ }
+ },
+ [12754]={
+ ["next_chapter"]=12755,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4430,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1462,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=160929,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16254,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=160929,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=16328,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1275,
+ ["unit"]=0
+ }
+ },
+ [12755]={
+ ["next_chapter"]=12756,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4434,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1463,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=162539,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16416,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=162539,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=16328,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1275,
+ ["unit"]=0
+ }
+ },
+ [12756]={
+ ["next_chapter"]=12757,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4438,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1465,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=164164,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16581,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=164164,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=16328,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1275,
+ ["unit"]=0
+ }
+ },
+ [12757]={
+ ["next_chapter"]=12758,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4442,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1466,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=165806,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16746,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=165806,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=16328,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1275,
+ ["unit"]=0
+ }
+ },
+ [12758]={
+ ["next_chapter"]=12759,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4447,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1467,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=167464,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16914,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=167464,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=16328,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1275,
+ ["unit"]=0
+ }
+ },
+ [12759]={
+ ["next_chapter"]=12760,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4451,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1469,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=169139,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17083,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=169139,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=16328,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1275,
+ ["unit"]=0
+ }
+ },
+ [12760]={
+ ["next_chapter"]=12761,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=4455,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1470,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=170830,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17254,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=170830,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=18037,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1276,
+ ["unit"]=0
+ }
+ },
+ [12761]={
+ ["next_chapter"]=12762,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4459,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1471,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=172538,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17426,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=172538,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=18037,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1276,
+ ["unit"]=0
+ }
+ },
+ [12762]={
+ ["next_chapter"]=12763,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4463,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1473,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=174264,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17601,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=174264,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=18037,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1276,
+ ["unit"]=0
+ }
+ },
+ [12763]={
+ ["next_chapter"]=12764,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4467,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1474,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=176006,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17777,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=176006,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=18037,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1276,
+ ["unit"]=0
+ }
+ },
+ [12764]={
+ ["next_chapter"]=12765,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4471,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1475,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=177766,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17954,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=177766,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=18037,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1276,
+ ["unit"]=0
+ }
+ },
+ [12765]={
+ ["next_chapter"]=12766,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4475,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1477,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=179544,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18134,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=179544,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=18037,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1276,
+ ["unit"]=0
+ }
+ },
+ [12766]={
+ ["next_chapter"]=12767,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4479,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1478,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=181339,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18315,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=181339,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=18037,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1276,
+ ["unit"]=0
+ }
+ },
+ [12767]={
+ ["next_chapter"]=12768,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4483,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1479,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=183153,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18498,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=183153,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=18037,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1276,
+ ["unit"]=0
+ }
+ },
+ [12768]={
+ ["next_chapter"]=12769,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4487,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1481,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=184984,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18683,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=184984,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=18037,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1276,
+ ["unit"]=0
+ }
+ },
+ [12769]={
+ ["next_chapter"]=12770,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4492,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1482,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=186834,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18870,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=186834,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=18037,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1276,
+ ["unit"]=0
+ }
+ },
+ [12770]={
+ ["next_chapter"]=12771,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=4496,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1484,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=188702,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19059,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=188702,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=19924,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1277,
+ ["unit"]=0
+ }
+ },
+ [12771]={
+ ["next_chapter"]=12772,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4500,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1485,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=190589,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19250,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=190589,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=19924,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1277,
+ ["unit"]=0
+ }
+ },
+ [12772]={
+ ["next_chapter"]=12773,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4504,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1486,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=192495,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19442,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=192495,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=19924,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1277,
+ ["unit"]=0
+ }
+ },
+ [12773]={
+ ["next_chapter"]=12774,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4508,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1488,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=194420,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19636,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=194420,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=19924,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1277,
+ ["unit"]=0
+ }
+ },
+ [12774]={
+ ["next_chapter"]=12775,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4512,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1489,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=196365,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19833,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=196365,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=19924,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1277,
+ ["unit"]=0
+ }
+ },
+ [12775]={
+ ["next_chapter"]=12776,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4516,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1490,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=198328,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20031,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=198328,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=19924,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1277,
+ ["unit"]=0
+ }
+ },
+ [12776]={
+ ["next_chapter"]=12777,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4520,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1492,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=200311,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20231,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=200311,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=19924,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1277,
+ ["unit"]=0
+ }
+ },
+ [12777]={
+ ["next_chapter"]=12778,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4524,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1493,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=202315,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20434,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=202315,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=19924,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1277,
+ ["unit"]=0
+ }
+ },
+ [12778]={
+ ["next_chapter"]=12779,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4529,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1494,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=204338,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20638,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=204338,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=19924,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1277,
+ ["unit"]=0
+ }
+ },
+ [12779]={
+ ["next_chapter"]=12780,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4533,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1496,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=206381,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20844,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=206381,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=19924,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1277,
+ ["unit"]=0
+ }
+ },
+ [12780]={
+ ["next_chapter"]=12781,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=4537,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1497,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=208445,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21053,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=208445,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=22008,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1278,
+ ["unit"]=0
+ }
+ },
+ [12781]={
+ ["next_chapter"]=12782,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4541,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1499,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=210529,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21263,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=210529,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=22008,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1278,
+ ["unit"]=0
+ }
+ },
+ [12782]={
+ ["next_chapter"]=12783,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4545,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1500,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=212635,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21476,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=212635,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=22008,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1278,
+ ["unit"]=0
+ }
+ },
+ [12783]={
+ ["next_chapter"]=12784,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4549,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1501,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=214761,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21691,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=214761,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=22008,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1278,
+ ["unit"]=0
+ }
+ },
+ [12784]={
+ ["next_chapter"]=12785,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4553,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1503,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=216909,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21908,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=216909,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=22008,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1278,
+ ["unit"]=0
+ }
+ },
+ [12785]={
+ ["next_chapter"]=12786,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4557,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1504,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=219078,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22127,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=219078,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=22008,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1278,
+ ["unit"]=0
+ }
+ },
+ [12786]={
+ ["next_chapter"]=12787,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4562,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1505,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=221268,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22348,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=221268,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=22008,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1278,
+ ["unit"]=0
+ }
+ },
+ [12787]={
+ ["next_chapter"]=12788,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4566,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1507,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=223481,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22572,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=223481,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=22008,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1278,
+ ["unit"]=0
+ }
+ },
+ [12788]={
+ ["next_chapter"]=12789,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4570,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1508,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=225716,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22797,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=225716,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=22008,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1278,
+ ["unit"]=0
+ }
+ },
+ [12789]={
+ ["next_chapter"]=12790,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4574,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1509,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=227973,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23025,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=227973,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=22008,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1278,
+ ["unit"]=0
+ }
+ },
+ [12790]={
+ ["next_chapter"]=12791,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=4578,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1511,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=230253,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23256,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=230253,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=24311,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1279,
+ ["unit"]=0
+ }
+ },
+ [12791]={
+ ["next_chapter"]=12792,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4582,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1512,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=232555,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23488,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=232555,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=24311,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1279,
+ ["unit"]=0
+ }
+ },
+ [12792]={
+ ["next_chapter"]=12793,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4587,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1514,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=234881,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23723,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=234881,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=24311,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1279,
+ ["unit"]=0
+ }
+ },
+ [12793]={
+ ["next_chapter"]=12794,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4591,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1515,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=237230,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23960,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=237230,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=24311,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1279,
+ ["unit"]=0
+ }
+ },
+ [12794]={
+ ["next_chapter"]=12795,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4595,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1516,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=239602,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24200,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=239602,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=24311,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1279,
+ ["unit"]=0
+ }
+ },
+ [12795]={
+ ["next_chapter"]=12796,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4599,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1518,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=241998,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24442,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=241998,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=24311,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1279,
+ ["unit"]=0
+ }
+ },
+ [12796]={
+ ["next_chapter"]=12797,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4603,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1519,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=244418,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24686,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=244418,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=24311,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1279,
+ ["unit"]=0
+ }
+ },
+ [12797]={
+ ["next_chapter"]=12798,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4607,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1520,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=246862,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24933,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=246862,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=24311,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1279,
+ ["unit"]=0
+ }
+ },
+ [12798]={
+ ["next_chapter"]=12799,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4612,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1522,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=249331,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25182,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=249331,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=24311,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1279,
+ ["unit"]=0
+ }
+ },
+ [12799]={
+ ["next_chapter"]=12800,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4616,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1523,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=251824,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25434,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=251824,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=24311,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1279,
+ ["unit"]=0
+ }
+ },
+ [12800]={
+ ["next_chapter"]=12801,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=4620,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1525,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=254342,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25689,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=254342,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=26854,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1280,
+ ["unit"]=0
+ }
+ },
+ [12801]={
+ ["next_chapter"]=12802,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4624,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1526,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=256886,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25945,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=256886,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=26854,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1280,
+ ["unit"]=0
+ }
+ },
+ [12802]={
+ ["next_chapter"]=12803,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4628,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1527,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=259455,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26205,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=259455,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=26854,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1280,
+ ["unit"]=0
+ }
+ },
+ [12803]={
+ ["next_chapter"]=12804,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4632,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1529,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=262049,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26467,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=262049,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=26854,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1280,
+ ["unit"]=0
+ }
+ },
+ [12804]={
+ ["next_chapter"]=12805,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4637,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1530,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=264670,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26732,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=264670,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=26854,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1280,
+ ["unit"]=0
+ }
+ },
+ [12805]={
+ ["next_chapter"]=12806,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4641,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1531,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=267316,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26999,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=267316,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=26854,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1280,
+ ["unit"]=0
+ }
+ },
+ [12806]={
+ ["next_chapter"]=12807,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4645,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1533,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=269990,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27269,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=269990,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=26854,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1280,
+ ["unit"]=0
+ }
+ },
+ [12807]={
+ ["next_chapter"]=12808,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4649,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1534,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=272690,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27542,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=272690,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=26854,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1280,
+ ["unit"]=0
+ }
+ },
+ [12808]={
+ ["next_chapter"]=12809,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4653,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1536,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=275416,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27817,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=275416,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=26854,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1280,
+ ["unit"]=0
+ }
+ },
+ [12809]={
+ ["next_chapter"]=12810,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4658,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1537,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=278171,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28095,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=278171,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=26854,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1280,
+ ["unit"]=0
+ }
+ },
+ [12810]={
+ ["next_chapter"]=12811,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=4662,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1538,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=280952,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28376,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=280952,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=29664,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1281,
+ ["unit"]=0
+ }
+ },
+ [12811]={
+ ["next_chapter"]=12812,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4666,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1540,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=283762,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28660,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=283762,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=29664,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1281,
+ ["unit"]=0
+ }
+ },
+ [12812]={
+ ["next_chapter"]=12813,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4670,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1541,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=286599,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28947,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=286599,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=29664,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1281,
+ ["unit"]=0
+ }
+ },
+ [12813]={
+ ["next_chapter"]=12814,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4675,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1543,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=289465,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29236,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=289465,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=29664,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1281,
+ ["unit"]=0
+ }
+ },
+ [12814]={
+ ["next_chapter"]=12815,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4679,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1544,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=292360,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29528,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=292360,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=29664,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1281,
+ ["unit"]=0
+ }
+ },
+ [12815]={
+ ["next_chapter"]=12816,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4683,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1545,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=295284,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29824,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=295284,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=29664,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1281,
+ ["unit"]=0
+ }
+ },
+ [12816]={
+ ["next_chapter"]=12817,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4687,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1547,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=298236,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30122,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=298236,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=29664,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1281,
+ ["unit"]=0
+ }
+ },
+ [12817]={
+ ["next_chapter"]=12818,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4691,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1548,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=301219,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30423,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=301219,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=29664,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1281,
+ ["unit"]=0
+ }
+ },
+ [12818]={
+ ["next_chapter"]=12819,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4696,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1550,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=304231,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30727,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=304231,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=29664,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1281,
+ ["unit"]=0
+ }
+ },
+ [12819]={
+ ["next_chapter"]=12820,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4700,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1551,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=307273,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31035,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=307273,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=29664,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1281,
+ ["unit"]=0
+ }
+ },
+ [12820]={
+ ["next_chapter"]=12821,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=4704,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1552,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=310346,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31345,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=310346,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=32767,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1282,
+ ["unit"]=0
+ }
+ },
+ [12821]={
+ ["next_chapter"]=12822,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4708,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1554,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=313450,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31658,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=313450,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=32767,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1282,
+ ["unit"]=0
+ }
+ },
+ [12822]={
+ ["next_chapter"]=12823,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4713,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1555,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=316584,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31975,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=316584,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=32767,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1282,
+ ["unit"]=0
+ }
+ },
+ [12823]={
+ ["next_chapter"]=12824,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4717,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1557,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=319750,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32295,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=319750,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=32767,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1282,
+ ["unit"]=0
+ }
+ },
+ [12824]={
+ ["next_chapter"]=12825,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4721,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1558,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=322947,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32618,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=322947,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=32767,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1282,
+ ["unit"]=0
+ }
+ },
+ [12825]={
+ ["next_chapter"]=12826,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4725,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1559,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=326177,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32944,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=326177,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=32767,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1282,
+ ["unit"]=0
+ }
+ },
+ [12826]={
+ ["next_chapter"]=12827,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4730,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1561,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=329439,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33273,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=329439,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=32767,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1282,
+ ["unit"]=0
+ }
+ },
+ [12827]={
+ ["next_chapter"]=12828,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4734,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1562,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=332733,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33606,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=332733,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=32767,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1282,
+ ["unit"]=0
+ }
+ },
+ [12828]={
+ ["next_chapter"]=12829,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4738,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1564,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=336060,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33942,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=336060,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=32767,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1282,
+ ["unit"]=0
+ }
+ },
+ [12829]={
+ ["next_chapter"]=12830,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4742,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1565,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=339421,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34282,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=339421,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=32767,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1282,
+ ["unit"]=0
+ }
+ },
+ [12830]={
+ ["next_chapter"]=12831,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=4747,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1566,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=342815,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34624,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=342815,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=36195,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1283,
+ ["unit"]=0
+ }
+ },
+ [12831]={
+ ["next_chapter"]=12832,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4751,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1568,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=346243,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34971,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=346243,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=36195,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1283,
+ ["unit"]=0
+ }
+ },
+ [12832]={
+ ["next_chapter"]=12833,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4755,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1569,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=349706,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35320,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=349706,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=36195,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1283,
+ ["unit"]=0
+ }
+ },
+ [12833]={
+ ["next_chapter"]=12834,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4759,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1571,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=353203,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35673,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=353203,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=36195,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1283,
+ ["unit"]=0
+ }
+ },
+ [12834]={
+ ["next_chapter"]=12835,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4764,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1572,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=356735,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36030,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=356735,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=36195,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1283,
+ ["unit"]=0
+ }
+ },
+ [12835]={
+ ["next_chapter"]=12836,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4768,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1573,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=360302,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36391,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=360302,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=36195,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1283,
+ ["unit"]=0
+ }
+ },
+ [12836]={
+ ["next_chapter"]=12837,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4772,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1575,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=363905,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36754,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=363905,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=36195,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1283,
+ ["unit"]=0
+ }
+ },
+ [12837]={
+ ["next_chapter"]=12838,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4776,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1576,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=367544,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37122,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=367544,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=36195,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1283,
+ ["unit"]=0
+ }
+ },
+ [12838]={
+ ["next_chapter"]=12839,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4781,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1578,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=371220,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37493,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=371220,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=36195,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1283,
+ ["unit"]=0
+ }
+ },
+ [12839]={
+ ["next_chapter"]=12840,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4785,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1579,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=374932,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37868,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=374932,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=36195,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1283,
+ ["unit"]=0
+ }
+ },
+ [12840]={
+ ["next_chapter"]=12841,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=4789,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1580,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=378681,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=38247,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=378681,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=39982,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1284,
+ ["unit"]=0
+ }
+ },
+ [12841]={
+ ["next_chapter"]=12842,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4794,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1582,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=382468,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=38629,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=382468,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=39982,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1284,
+ ["unit"]=0
+ }
+ },
+ [12842]={
+ ["next_chapter"]=12843,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4798,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1583,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=386293,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39016,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=386293,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=39982,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1284,
+ ["unit"]=0
+ }
+ },
+ [12843]={
+ ["next_chapter"]=12844,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4802,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1585,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=390156,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39406,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=390156,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=39982,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1284,
+ ["unit"]=0
+ }
+ },
+ [12844]={
+ ["next_chapter"]=12845,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4806,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1586,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=394057,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39800,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=394057,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=39982,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1284,
+ ["unit"]=0
+ }
+ },
+ [12845]={
+ ["next_chapter"]=12846,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4811,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1588,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=397998,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=40198,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=397998,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=39982,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1284,
+ ["unit"]=0
+ }
+ },
+ [12846]={
+ ["next_chapter"]=12847,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4815,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1589,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=401978,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=40600,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=401978,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=39982,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1284,
+ ["unit"]=0
+ }
+ },
+ [12847]={
+ ["next_chapter"]=12848,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4819,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1590,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=405998,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41006,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=405998,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=39982,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1284,
+ ["unit"]=0
+ }
+ },
+ [12848]={
+ ["next_chapter"]=12849,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4824,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1592,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=410057,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41416,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=410057,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=39982,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1284,
+ ["unit"]=0
+ }
+ },
+ [12849]={
+ ["next_chapter"]=12850,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4828,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1593,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=414158,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41830,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=414158,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=39982,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1284,
+ ["unit"]=0
+ }
+ },
+ [12850]={
+ ["next_chapter"]=12851,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=4832,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1595,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=418300,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=42248,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=418300,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=44165,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1285,
+ ["unit"]=0
+ }
+ },
+ [12851]={
+ ["next_chapter"]=12852,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4837,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1596,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=422483,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=42671,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=422483,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=44165,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1285,
+ ["unit"]=0
+ }
+ },
+ [12852]={
+ ["next_chapter"]=12853,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4841,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1597,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=426707,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=43097,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=426707,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=44165,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1285,
+ ["unit"]=0
+ }
+ },
+ [12853]={
+ ["next_chapter"]=12854,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4845,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1599,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=430975,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=43528,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=430975,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=44165,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1285,
+ ["unit"]=0
+ }
+ },
+ [12854]={
+ ["next_chapter"]=12855,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4849,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1600,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=435284,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=43964,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=435284,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=44165,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1285,
+ ["unit"]=0
+ }
+ },
+ [12855]={
+ ["next_chapter"]=12856,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4854,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1602,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=439637,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=44403,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=439637,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=44165,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1285,
+ ["unit"]=0
+ }
+ },
+ [12856]={
+ ["next_chapter"]=12857,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4858,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1603,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=444033,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=44847,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=444033,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=44165,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1285,
+ ["unit"]=0
+ }
+ },
+ [12857]={
+ ["next_chapter"]=12858,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4862,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1605,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=448474,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=45296,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=448474,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=44165,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1285,
+ ["unit"]=0
+ }
+ },
+ [12858]={
+ ["next_chapter"]=12859,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4867,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1606,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=452959,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=45749,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=452959,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=44165,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1285,
+ ["unit"]=0
+ }
+ },
+ [12859]={
+ ["next_chapter"]=12860,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4871,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1607,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=457488,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=46206,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=457488,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=44165,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1285,
+ ["unit"]=0
+ }
+ },
+ [12860]={
+ ["next_chapter"]=12861,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=4875,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1609,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=462063,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=46668,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=462063,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=48786,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1286,
+ ["unit"]=0
+ }
+ },
+ [12861]={
+ ["next_chapter"]=12862,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4880,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1610,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=466684,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=47135,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=466684,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=48786,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1286,
+ ["unit"]=0
+ }
+ },
+ [12862]={
+ ["next_chapter"]=12863,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4884,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1612,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=471351,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=47606,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=471351,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=48786,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1286,
+ ["unit"]=0
+ }
+ },
+ [12863]={
+ ["next_chapter"]=12864,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4888,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1613,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=476064,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=48082,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=476064,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=48786,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1286,
+ ["unit"]=0
+ }
+ },
+ [12864]={
+ ["next_chapter"]=12865,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4893,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1615,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=480825,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=48563,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=480825,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=48786,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1286,
+ ["unit"]=0
+ }
+ },
+ [12865]={
+ ["next_chapter"]=12866,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4897,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1616,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=485633,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=49049,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=485633,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=48786,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1286,
+ ["unit"]=0
+ }
+ },
+ [12866]={
+ ["next_chapter"]=12867,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4901,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1617,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=490489,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=49539,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=490489,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=48786,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1286,
+ ["unit"]=0
+ }
+ },
+ [12867]={
+ ["next_chapter"]=12868,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4906,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1619,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=495394,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=50035,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=495394,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=48786,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1286,
+ ["unit"]=0
+ }
+ },
+ [12868]={
+ ["next_chapter"]=12869,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4910,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1620,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=500348,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=50535,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=500348,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=48786,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1286,
+ ["unit"]=0
+ }
+ },
+ [12869]={
+ ["next_chapter"]=12870,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4915,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1622,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=505352,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=51041,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=505352,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=48786,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1286,
+ ["unit"]=0
+ }
+ },
+ [12870]={
+ ["next_chapter"]=12871,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=4919,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1623,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=510405,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=51551,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=510405,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=53890,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1287,
+ ["unit"]=0
+ }
+ },
+ [12871]={
+ ["next_chapter"]=12872,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4923,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1625,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=515509,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=52066,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=515509,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=53890,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1287,
+ ["unit"]=0
+ }
+ },
+ [12872]={
+ ["next_chapter"]=12873,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4928,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1626,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=520664,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=52587,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=520664,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=53890,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1287,
+ ["unit"]=0
+ }
+ },
+ [12873]={
+ ["next_chapter"]=12874,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4932,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1628,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=525871,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=53113,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=525871,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=53890,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1287,
+ ["unit"]=0
+ }
+ },
+ [12874]={
+ ["next_chapter"]=12875,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4936,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1629,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=531130,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=53644,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=531130,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=53890,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1287,
+ ["unit"]=0
+ }
+ },
+ [12875]={
+ ["next_chapter"]=12876,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4941,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1630,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=536441,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=54181,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=536441,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=53890,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1287,
+ ["unit"]=0
+ }
+ },
+ [12876]={
+ ["next_chapter"]=12877,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4945,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1632,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=541805,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=54722,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=541805,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=53890,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1287,
+ ["unit"]=0
+ }
+ },
+ [12877]={
+ ["next_chapter"]=12878,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4950,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1633,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=547223,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=55270,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=547223,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=53890,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1287,
+ ["unit"]=0
+ }
+ },
+ [12878]={
+ ["next_chapter"]=12879,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4954,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1635,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=552696,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=55822,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=552696,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=53890,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1287,
+ ["unit"]=0
+ }
+ },
+ [12879]={
+ ["next_chapter"]=12880,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4958,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1636,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=558222,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=56380,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=558222,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=53890,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1287,
+ ["unit"]=0
+ }
+ },
+ [12880]={
+ ["next_chapter"]=12881,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=4963,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1638,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=563805,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=56944,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=563805,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=59528,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1288,
+ ["unit"]=0
+ }
+ },
+ [12881]={
+ ["next_chapter"]=12882,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4967,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1639,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=569443,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=57514,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=569443,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=59528,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1288,
+ ["unit"]=0
+ }
+ },
+ [12882]={
+ ["next_chapter"]=12883,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4971,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1641,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=575137,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=58089,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=575137,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=59528,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1288,
+ ["unit"]=0
+ }
+ },
+ [12883]={
+ ["next_chapter"]=12884,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4976,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1642,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=580889,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=58670,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=580889,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=59528,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1288,
+ ["unit"]=0
+ }
+ },
+ [12884]={
+ ["next_chapter"]=12885,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4980,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1643,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=586697,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=59256,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=586697,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=59528,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1288,
+ ["unit"]=0
+ }
+ },
+ [12885]={
+ ["next_chapter"]=12886,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4985,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1645,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=592564,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=59849,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=592564,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=59528,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1288,
+ ["unit"]=0
+ }
+ },
+ [12886]={
+ ["next_chapter"]=12887,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4989,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1646,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=598490,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=60447,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=598490,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=59528,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1288,
+ ["unit"]=0
+ }
+ },
+ [12887]={
+ ["next_chapter"]=12888,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4993,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1648,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=604475,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=61052,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=604475,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=59528,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1288,
+ ["unit"]=0
+ }
+ },
+ [12888]={
+ ["next_chapter"]=12889,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=4998,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1649,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=610520,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=61662,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=610520,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=59528,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1288,
+ ["unit"]=0
+ }
+ },
+ [12889]={
+ ["next_chapter"]=12890,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5002,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1651,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=616625,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=62279,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=616625,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=59528,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1288,
+ ["unit"]=0
+ }
+ },
+ [12890]={
+ ["next_chapter"]=12891,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=5007,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1652,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=622791,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=62902,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=622791,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=65756,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1289,
+ ["unit"]=0
+ }
+ },
+ [12891]={
+ ["next_chapter"]=12892,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5011,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1654,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=629019,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=63531,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=629019,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=65756,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1289,
+ ["unit"]=0
+ }
+ },
+ [12892]={
+ ["next_chapter"]=12893,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5015,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1655,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=635309,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=64166,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=635309,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=65756,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1289,
+ ["unit"]=0
+ }
+ },
+ [12893]={
+ ["next_chapter"]=12894,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5020,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1657,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=641662,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=64808,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=641662,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=65756,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1289,
+ ["unit"]=0
+ }
+ },
+ [12894]={
+ ["next_chapter"]=12895,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5024,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1658,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=648079,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=65456,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=648079,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=65756,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1289,
+ ["unit"]=0
+ }
+ },
+ [12895]={
+ ["next_chapter"]=12896,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5029,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1659,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=654560,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=66111,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=654560,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=65756,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1289,
+ ["unit"]=0
+ }
+ },
+ [12896]={
+ ["next_chapter"]=12897,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5033,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1661,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=661105,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=66772,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=661105,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=65756,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1289,
+ ["unit"]=0
+ }
+ },
+ [12897]={
+ ["next_chapter"]=12898,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5038,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1662,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=667716,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=67439,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=667716,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=65756,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1289,
+ ["unit"]=0
+ }
+ },
+ [12898]={
+ ["next_chapter"]=12899,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5042,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1664,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=674394,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=68114,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=674394,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=65756,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1289,
+ ["unit"]=0
+ }
+ },
+ [12899]={
+ ["next_chapter"]=12900,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5046,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1665,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=681138,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=68795,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=681138,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=65756,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1289,
+ ["unit"]=0
+ }
+ },
+ [12900]={
+ ["next_chapter"]=12901,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=5051,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1667,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=687949,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=69483,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=687949,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=72635,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1290,
+ ["unit"]=0
+ }
+ },
+ [12901]={
+ ["next_chapter"]=12902,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5055,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1668,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=694828,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=70178,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=694828,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=72635,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1290,
+ ["unit"]=0
+ }
+ },
+ [12902]={
+ ["next_chapter"]=12903,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5060,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1670,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=701777,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=70879,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=701777,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=72635,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1290,
+ ["unit"]=0
+ }
+ },
+ [12903]={
+ ["next_chapter"]=12904,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5064,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1671,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=708794,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=71588,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=708794,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=72635,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1290,
+ ["unit"]=0
+ }
+ },
+ [12904]={
+ ["next_chapter"]=12905,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5069,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1673,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=715882,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=72304,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=715882,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=72635,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1290,
+ ["unit"]=0
+ }
+ },
+ [12905]={
+ ["next_chapter"]=12906,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5073,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1674,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=723041,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=73027,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=723041,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=72635,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1290,
+ ["unit"]=0
+ }
+ },
+ [12906]={
+ ["next_chapter"]=12907,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5078,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1676,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=730272,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=73757,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=730272,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=72635,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1290,
+ ["unit"]=0
+ }
+ },
+ [12907]={
+ ["next_chapter"]=12908,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5082,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1677,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=737574,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=74495,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=737574,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=72635,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1290,
+ ["unit"]=0
+ }
+ },
+ [12908]={
+ ["next_chapter"]=12909,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5087,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1679,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=744950,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=75240,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=744950,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=72635,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1290,
+ ["unit"]=0
+ }
+ },
+ [12909]={
+ ["next_chapter"]=12910,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5091,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1680,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=752400,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=75992,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=752400,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=72635,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1290,
+ ["unit"]=0
+ }
+ },
+ [12910]={
+ ["next_chapter"]=12911,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=5095,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1681,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=759924,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=76752,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=759924,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=80234,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1291,
+ ["unit"]=0
+ }
+ },
+ [12911]={
+ ["next_chapter"]=12912,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5100,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1683,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=767523,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=77520,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=767523,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=80234,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1291,
+ ["unit"]=0
+ }
+ },
+ [12912]={
+ ["next_chapter"]=12913,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5104,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1684,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=775198,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=78295,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=775198,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=80234,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1291,
+ ["unit"]=0
+ }
+ },
+ [12913]={
+ ["next_chapter"]=12914,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5109,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1686,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=782950,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=79078,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=782950,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=80234,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1291,
+ ["unit"]=0
+ }
+ },
+ [12914]={
+ ["next_chapter"]=12915,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5113,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1687,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=790780,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=79869,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=790780,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=80234,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1291,
+ ["unit"]=0
+ }
+ },
+ [12915]={
+ ["next_chapter"]=12916,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5118,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1689,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=798687,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=80667,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=798687,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=80234,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1291,
+ ["unit"]=0
+ }
+ },
+ [12916]={
+ ["next_chapter"]=12917,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5122,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1690,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=806674,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=81474,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=806674,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=80234,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1291,
+ ["unit"]=0
+ }
+ },
+ [12917]={
+ ["next_chapter"]=12918,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5127,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1692,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=814741,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=82289,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=814741,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=80234,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1291,
+ ["unit"]=0
+ }
+ },
+ [12918]={
+ ["next_chapter"]=12919,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5131,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1693,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=822888,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=83112,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=822888,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=80234,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1291,
+ ["unit"]=0
+ }
+ },
+ [12919]={
+ ["next_chapter"]=12920,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5136,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1695,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=831117,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=83943,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=831117,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=80234,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1291,
+ ["unit"]=0
+ }
+ },
+ [12920]={
+ ["next_chapter"]=12921,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=5140,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1696,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=839428,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=84782,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=839428,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=88629,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1292,
+ ["unit"]=0
+ }
+ },
+ [12921]={
+ ["next_chapter"]=12922,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5145,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1698,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=847823,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=85630,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=847823,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=88629,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1292,
+ ["unit"]=0
+ }
+ },
+ [12922]={
+ ["next_chapter"]=12923,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5149,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1699,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=856301,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=86486,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=856301,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=88629,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1292,
+ ["unit"]=0
+ }
+ },
+ [12923]={
+ ["next_chapter"]=12924,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5154,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1701,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=864864,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=87351,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=864864,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=88629,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1292,
+ ["unit"]=0
+ }
+ },
+ [12924]={
+ ["next_chapter"]=12925,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5158,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1702,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=873513,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=88225,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=873513,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=88629,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1292,
+ ["unit"]=0
+ }
+ },
+ [12925]={
+ ["next_chapter"]=12926,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5163,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1704,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=882248,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=89107,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=882248,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=88629,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1292,
+ ["unit"]=0
+ }
+ },
+ [12926]={
+ ["next_chapter"]=12927,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5167,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1705,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=891070,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=89998,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=891070,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=88629,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1292,
+ ["unit"]=0
+ }
+ },
+ [12927]={
+ ["next_chapter"]=12928,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5172,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1707,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=899981,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=90898,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=899981,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=88629,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1292,
+ ["unit"]=0
+ }
+ },
+ [12928]={
+ ["next_chapter"]=12929,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5176,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1708,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=908981,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=91807,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=908981,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=88629,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1292,
+ ["unit"]=0
+ }
+ },
+ [12929]={
+ ["next_chapter"]=12930,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5181,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1710,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=918070,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=92725,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=918070,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=88629,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1292,
+ ["unit"]=0
+ }
+ },
+ [12930]={
+ ["next_chapter"]=12931,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=5185,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1711,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=927251,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=93652,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=927251,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=97901,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1293,
+ ["unit"]=0
+ }
+ },
+ [12931]={
+ ["next_chapter"]=12932,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5190,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1713,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=936524,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=94589,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=936524,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=97901,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1293,
+ ["unit"]=0
+ }
+ },
+ [12932]={
+ ["next_chapter"]=12933,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5194,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1714,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=945889,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=95535,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=945889,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=97901,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1293,
+ ["unit"]=0
+ }
+ },
+ [12933]={
+ ["next_chapter"]=12934,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5199,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1716,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=955348,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=96490,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=955348,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=97901,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1293,
+ ["unit"]=0
+ }
+ },
+ [12934]={
+ ["next_chapter"]=12935,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5203,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1717,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=964901,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=97455,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=964901,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=97901,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1293,
+ ["unit"]=0
+ }
+ },
+ [12935]={
+ ["next_chapter"]=12936,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5208,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1719,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=974550,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=98430,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=974550,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=97901,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1293,
+ ["unit"]=0
+ }
+ },
+ [12936]={
+ ["next_chapter"]=12937,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5212,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1720,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=984296,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=99414,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=984296,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=97901,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1293,
+ ["unit"]=0
+ }
+ },
+ [12937]={
+ ["next_chapter"]=12938,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5217,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1722,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=994139,
+ ["unit"]=17
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=100408,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=994139,
+ ["unit"]=17
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=97901,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1293,
+ ["unit"]=0
+ }
+ },
+ [12938]={
+ ["next_chapter"]=12939,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5221,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1723,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1004,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=101412,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1004,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=97901,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1293,
+ ["unit"]=0
+ }
+ },
+ [12939]={
+ ["next_chapter"]=12940,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5226,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1725,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1014,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=102426,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1014,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=97901,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1293,
+ ["unit"]=0
+ }
+ },
+ [12940]={
+ ["next_chapter"]=12941,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=5231,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1726,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1024,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=103450,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1024,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=108144,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1294,
+ ["unit"]=0
+ }
+ },
+ [12941]={
+ ["next_chapter"]=12942,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5235,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1728,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1035,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=104485,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1035,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=108144,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1294,
+ ["unit"]=0
+ }
+ },
+ [12942]={
+ ["next_chapter"]=12943,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5240,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1729,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1045,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=105530,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1045,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=108144,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1294,
+ ["unit"]=0
+ }
+ },
+ [12943]={
+ ["next_chapter"]=12944,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5244,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1731,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1055,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=106585,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1055,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=108144,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1294,
+ ["unit"]=0
+ }
+ },
+ [12944]={
+ ["next_chapter"]=12945,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5249,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1732,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1066,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=107651,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1066,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=108144,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1294,
+ ["unit"]=0
+ }
+ },
+ [12945]={
+ ["next_chapter"]=12946,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5253,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1734,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1077,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=108727,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1077,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=108144,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1294,
+ ["unit"]=0
+ }
+ },
+ [12946]={
+ ["next_chapter"]=12947,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5258,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1735,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1087,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=109815,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1087,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=108144,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1294,
+ ["unit"]=0
+ }
+ },
+ [12947]={
+ ["next_chapter"]=12948,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5262,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1737,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1098,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=110913,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1098,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=108144,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1294,
+ ["unit"]=0
+ }
+ },
+ [12948]={
+ ["next_chapter"]=12949,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5267,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1738,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1109,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=112022,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1109,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=108144,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1294,
+ ["unit"]=0
+ }
+ },
+ [12949]={
+ ["next_chapter"]=12950,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5272,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1740,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1120,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=113142,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1120,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=108144,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1294,
+ ["unit"]=0
+ }
+ },
+ [12950]={
+ ["next_chapter"]=12951,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=5276,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1741,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1131,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=114274,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1131,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=119458,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1295,
+ ["unit"]=0
+ }
+ },
+ [12951]={
+ ["next_chapter"]=12952,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5281,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1743,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1143,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=115416,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1143,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=119458,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1295,
+ ["unit"]=0
+ }
+ },
+ [12952]={
+ ["next_chapter"]=12953,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5285,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1744,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1154,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=116571,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1154,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=119458,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1295,
+ ["unit"]=0
+ }
+ },
+ [12953]={
+ ["next_chapter"]=12954,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5290,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1746,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1166,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=117736,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1166,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=119458,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1295,
+ ["unit"]=0
+ }
+ },
+ [12954]={
+ ["next_chapter"]=12955,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5294,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1747,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1177,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=118914,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1177,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=119458,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1295,
+ ["unit"]=0
+ }
+ },
+ [12955]={
+ ["next_chapter"]=12956,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5299,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1749,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1189,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=120103,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1189,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=119458,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1295,
+ ["unit"]=0
+ }
+ },
+ [12956]={
+ ["next_chapter"]=12957,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5304,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1750,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1201,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=121304,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1201,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=119458,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1295,
+ ["unit"]=0
+ }
+ },
+ [12957]={
+ ["next_chapter"]=12958,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5308,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1752,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1213,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=122517,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1213,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=119458,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1295,
+ ["unit"]=0
+ }
+ },
+ [12958]={
+ ["next_chapter"]=12959,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5313,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1753,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1225,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=123742,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1225,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=119458,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1295,
+ ["unit"]=0
+ }
+ },
+ [12959]={
+ ["next_chapter"]=12960,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5317,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1755,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1237,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=124979,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1237,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=119458,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1295,
+ ["unit"]=0
+ }
+ },
+ [12960]={
+ ["next_chapter"]=12961,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=5322,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1756,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1250,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=126229,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1250,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=131956,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1296,
+ ["unit"]=0
+ }
+ },
+ [12961]={
+ ["next_chapter"]=12962,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5327,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1758,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1262,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=127492,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1262,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=131956,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1296,
+ ["unit"]=0
+ }
+ },
+ [12962]={
+ ["next_chapter"]=12963,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5331,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1759,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1275,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=128766,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1275,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=131956,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1296,
+ ["unit"]=0
+ }
+ },
+ [12963]={
+ ["next_chapter"]=12964,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5336,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1761,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1288,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=130054,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1288,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=131956,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1296,
+ ["unit"]=0
+ }
+ },
+ [12964]={
+ ["next_chapter"]=12965,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5340,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1762,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1301,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=131355,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1301,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=131956,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1296,
+ ["unit"]=0
+ }
+ },
+ [12965]={
+ ["next_chapter"]=12966,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5345,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1764,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1314,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=132668,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1314,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=131956,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1296,
+ ["unit"]=0
+ }
+ },
+ [12966]={
+ ["next_chapter"]=12967,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5350,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1765,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1327,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=133995,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1327,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=131956,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1296,
+ ["unit"]=0
+ }
+ },
+ [12967]={
+ ["next_chapter"]=12968,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5354,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1767,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1340,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=135335,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1340,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=131956,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1296,
+ ["unit"]=0
+ }
+ },
+ [12968]={
+ ["next_chapter"]=12969,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5359,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1768,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1353,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=136688,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1353,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=131956,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1296,
+ ["unit"]=0
+ }
+ },
+ [12969]={
+ ["next_chapter"]=12970,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5363,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1770,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1367,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=138055,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1367,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=131956,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1296,
+ ["unit"]=0
+ }
+ },
+ [12970]={
+ ["next_chapter"]=12971,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=5368,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1771,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1381,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=139436,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1381,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=145761,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1297,
+ ["unit"]=0
+ }
+ },
+ [12971]={
+ ["next_chapter"]=12972,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5373,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1773,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1394,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=140830,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1394,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=145761,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1297,
+ ["unit"]=0
+ }
+ },
+ [12972]={
+ ["next_chapter"]=12973,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5377,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1775,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1408,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=142238,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1408,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=145761,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1297,
+ ["unit"]=0
+ }
+ },
+ [12973]={
+ ["next_chapter"]=12974,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5382,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1776,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1422,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=143661,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1422,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=145761,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1297,
+ ["unit"]=0
+ }
+ },
+ [12974]={
+ ["next_chapter"]=12975,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5387,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1778,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1437,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=145097,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1437,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=145761,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1297,
+ ["unit"]=0
+ }
+ },
+ [12975]={
+ ["next_chapter"]=12976,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5391,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1779,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1451,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=146548,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1451,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=145761,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1297,
+ ["unit"]=0
+ }
+ },
+ [12976]={
+ ["next_chapter"]=12977,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5396,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1781,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1465,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=148014,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1465,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=145761,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1297,
+ ["unit"]=0
+ }
+ },
+ [12977]={
+ ["next_chapter"]=12978,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5401,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1782,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1480,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=149494,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1480,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=145761,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1297,
+ ["unit"]=0
+ }
+ },
+ [12978]={
+ ["next_chapter"]=12979,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5405,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1784,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1495,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=150989,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1495,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=145761,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1297,
+ ["unit"]=0
+ }
+ },
+ [12979]={
+ ["next_chapter"]=12980,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5410,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1785,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1510,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=152499,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1510,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=145761,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1297,
+ ["unit"]=0
+ }
+ },
+ [12980]={
+ ["next_chapter"]=12981,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=5414,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1787,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1525,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=154024,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1525,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=161011,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1298,
+ ["unit"]=0
+ }
+ },
+ [12981]={
+ ["next_chapter"]=12982,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5419,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1788,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1540,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=155564,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1540,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=161011,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1298,
+ ["unit"]=0
+ }
+ },
+ [12982]={
+ ["next_chapter"]=12983,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5424,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1790,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1556,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=157120,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1556,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=161011,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1298,
+ ["unit"]=0
+ }
+ },
+ [12983]={
+ ["next_chapter"]=12984,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5428,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1791,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1571,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=158691,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1571,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=161011,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1298,
+ ["unit"]=0
+ }
+ },
+ [12984]={
+ ["next_chapter"]=12985,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5433,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1793,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1587,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=160278,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1587,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=161011,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1298,
+ ["unit"]=0
+ }
+ },
+ [12985]={
+ ["next_chapter"]=12986,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5438,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1794,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1603,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=161880,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1603,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=161011,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1298,
+ ["unit"]=0
+ }
+ },
+ [12986]={
+ ["next_chapter"]=12987,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5442,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1796,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1619,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=163499,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1619,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=161011,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1298,
+ ["unit"]=0
+ }
+ },
+ [12987]={
+ ["next_chapter"]=12988,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5447,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1798,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1635,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=165134,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1635,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=161011,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1298,
+ ["unit"]=0
+ }
+ },
+ [12988]={
+ ["next_chapter"]=12989,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5452,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1799,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1651,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=166786,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1651,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=161011,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1298,
+ ["unit"]=0
+ }
+ },
+ [12989]={
+ ["next_chapter"]=12990,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5456,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1801,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1668,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=168453,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1668,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=161011,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1298,
+ ["unit"]=0
+ }
+ },
+ [12990]={
+ ["next_chapter"]=12991,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=5461,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1802,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1685,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=170138,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1685,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=177857,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1299,
+ ["unit"]=0
+ }
+ },
+ [12991]={
+ ["next_chapter"]=12992,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5466,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1804,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1701,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=171839,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1701,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=177857,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1299,
+ ["unit"]=0
+ }
+ },
+ [12992]={
+ ["next_chapter"]=12993,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5470,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1805,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1718,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=173558,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1718,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=177857,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1299,
+ ["unit"]=0
+ }
+ },
+ [12993]={
+ ["next_chapter"]=12994,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5475,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1807,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1736,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=175293,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1736,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=177857,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1299,
+ ["unit"]=0
+ }
+ },
+ [12994]={
+ ["next_chapter"]=12995,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5480,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1808,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1753,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=177046,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1753,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=177857,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1299,
+ ["unit"]=0
+ }
+ },
+ [12995]={
+ ["next_chapter"]=12996,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5485,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1810,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1770,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=178817,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1770,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=177857,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1299,
+ ["unit"]=0
+ }
+ },
+ [12996]={
+ ["next_chapter"]=12997,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5489,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1811,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1788,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=180605,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1788,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=177857,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1299,
+ ["unit"]=0
+ }
+ },
+ [12997]={
+ ["next_chapter"]=12998,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5494,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1813,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1806,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=182411,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1806,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=177857,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1299,
+ ["unit"]=0
+ }
+ },
+ [12998]={
+ ["next_chapter"]=12999,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5499,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1815,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1824,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=184235,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1824,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=177857,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1299,
+ ["unit"]=0
+ }
+ },
+ [12999]={
+ ["next_chapter"]=13000,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5503,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1816,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1842,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=186077,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1842,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=177857,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1299,
+ ["unit"]=0
+ }
+ },
+ [13000]={
+ ["next_chapter"]=13001,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=5508,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1818,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1861,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=187938,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1861,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=196464,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1300,
+ ["unit"]=0
+ }
+ },
+ [13001]={
+ ["next_chapter"]=13002,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5513,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1819,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1879,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=189818,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1879,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=196464,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1300,
+ ["unit"]=0
+ }
+ },
+ [13002]={
+ ["next_chapter"]=13003,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5517,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1821,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1898,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=191716,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1898,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=196464,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1300,
+ ["unit"]=0
+ }
+ },
+ [13003]={
+ ["next_chapter"]=13004,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5522,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1822,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1917,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=193633,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1917,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=196464,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1300,
+ ["unit"]=0
+ }
+ },
+ [13004]={
+ ["next_chapter"]=13005,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5527,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1824,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1936,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=195569,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1936,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=196464,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1300,
+ ["unit"]=0
+ }
+ },
+ [13005]={
+ ["next_chapter"]=13006,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5532,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1825,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1956,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=197525,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1956,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=196464,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1300,
+ ["unit"]=0
+ }
+ },
+ [13006]={
+ ["next_chapter"]=13007,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5536,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1827,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1975,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=199500,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1975,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=196464,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1300,
+ ["unit"]=0
+ }
+ },
+ [13007]={
+ ["next_chapter"]=13008,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5541,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1829,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1995,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=201495,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=1995,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=196464,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1300,
+ ["unit"]=0
+ }
+ },
+ [13008]={
+ ["next_chapter"]=13009,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5546,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1830,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2015,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=203510,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=2015,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=196464,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1300,
+ ["unit"]=0
+ }
+ },
+ [13009]={
+ ["next_chapter"]=13010,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5550,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1832,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2035,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=205545,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=2035,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=196464,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1300,
+ ["unit"]=0
+ }
+ },
+ [13010]={
+ ["next_chapter"]=13011,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=5555,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1833,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2055,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=207601,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=2055,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=217019,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1301,
+ ["unit"]=0
+ }
+ },
+ [13011]={
+ ["next_chapter"]=13012,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5560,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1835,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2076,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=209677,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=2076,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=217019,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1301,
+ ["unit"]=0
+ }
+ },
+ [13012]={
+ ["next_chapter"]=13013,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5565,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1836,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2097,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=211773,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=2097,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=217019,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1301,
+ ["unit"]=0
+ }
+ },
+ [13013]={
+ ["next_chapter"]=13014,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5569,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1838,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2118,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=213891,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=2118,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=217019,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1301,
+ ["unit"]=0
+ }
+ },
+ [13014]={
+ ["next_chapter"]=13015,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5574,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1839,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2139,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=216030,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=2139,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=217019,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1301,
+ ["unit"]=0
+ }
+ },
+ [13015]={
+ ["next_chapter"]=13016,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5579,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1841,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2160,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=218190,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=2160,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=217019,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1301,
+ ["unit"]=0
+ }
+ },
+ [13016]={
+ ["next_chapter"]=13017,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5584,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1843,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2182,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=220372,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=2182,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=217019,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1301,
+ ["unit"]=0
+ }
+ },
+ [13017]={
+ ["next_chapter"]=13018,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5588,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1844,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2204,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=222576,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=2204,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=217019,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1301,
+ ["unit"]=0
+ }
+ },
+ [13018]={
+ ["next_chapter"]=13019,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5593,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1846,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2226,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=224802,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=2226,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=217019,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1301,
+ ["unit"]=0
+ }
+ },
+ [13019]={
+ ["next_chapter"]=13020,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5598,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1847,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2248,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=227050,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=2248,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=217019,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1301,
+ ["unit"]=0
+ }
+ },
+ [13020]={
+ ["next_chapter"]=13021,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=5603,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1849,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2270,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=229320,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=2270,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=239724,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1302,
+ ["unit"]=0
+ }
+ },
+ [13021]={
+ ["next_chapter"]=13022,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5607,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1850,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2293,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=231613,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=2293,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=239724,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1302,
+ ["unit"]=0
+ }
+ },
+ [13022]={
+ ["next_chapter"]=13023,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5612,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1852,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2316,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=233930,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=2316,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=239724,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1302,
+ ["unit"]=0
+ }
+ },
+ [13023]={
+ ["next_chapter"]=13024,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5617,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1854,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2339,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=236269,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=2339,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=239724,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1302,
+ ["unit"]=0
+ }
+ },
+ [13024]={
+ ["next_chapter"]=13025,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5622,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1855,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2363,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=238632,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=2363,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=239724,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1302,
+ ["unit"]=0
+ }
+ },
+ [13025]={
+ ["next_chapter"]=13026,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5626,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1857,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2386,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=241018,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=2386,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=239724,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1302,
+ ["unit"]=0
+ }
+ },
+ [13026]={
+ ["next_chapter"]=13027,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5631,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1858,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2410,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=243428,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=2410,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=239724,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1302,
+ ["unit"]=0
+ }
+ },
+ [13027]={
+ ["next_chapter"]=13028,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5636,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1860,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2434,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=245862,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=2434,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=239724,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1302,
+ ["unit"]=0
+ }
+ },
+ [13028]={
+ ["next_chapter"]=13029,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5641,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1861,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2459,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=248321,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=2459,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=239724,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1302,
+ ["unit"]=0
+ }
+ },
+ [13029]={
+ ["next_chapter"]=13030,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5646,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1863,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2483,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=250804,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=2483,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=239724,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1302,
+ ["unit"]=0
+ }
+ },
+ [13030]={
+ ["next_chapter"]=13031,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=5650,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1865,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2508,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=253312,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=2508,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=264804,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1303,
+ ["unit"]=0
+ }
+ },
+ [13031]={
+ ["next_chapter"]=13032,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5655,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1866,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2533,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=255845,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=2533,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=264804,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1303,
+ ["unit"]=0
+ }
+ },
+ [13032]={
+ ["next_chapter"]=13033,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5660,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1868,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2558,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=258404,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=2558,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=264804,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1303,
+ ["unit"]=0
+ }
+ },
+ [13033]={
+ ["next_chapter"]=13034,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5665,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1869,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2584,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=260988,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=2584,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=264804,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1303,
+ ["unit"]=0
+ }
+ },
+ [13034]={
+ ["next_chapter"]=13035,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5669,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1871,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2610,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=263598,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=2610,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=264804,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1303,
+ ["unit"]=0
+ }
+ },
+ [13035]={
+ ["next_chapter"]=13036,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5674,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1873,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2636,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=266234,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=2636,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=264804,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1303,
+ ["unit"]=0
+ }
+ },
+ [13036]={
+ ["next_chapter"]=13037,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5679,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1874,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2662,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=268896,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=2662,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=264804,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1303,
+ ["unit"]=0
+ }
+ },
+ [13037]={
+ ["next_chapter"]=13038,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5684,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1876,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2689,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=271585,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=2689,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=264804,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1303,
+ ["unit"]=0
+ }
+ },
+ [13038]={
+ ["next_chapter"]=13039,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5689,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1877,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2716,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=274301,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=2716,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=264804,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1303,
+ ["unit"]=0
+ }
+ },
+ [13039]={
+ ["next_chapter"]=13040,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5694,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1879,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2743,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=277044,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=2743,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=264804,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1303,
+ ["unit"]=0
+ }
+ },
+ [13040]={
+ ["next_chapter"]=13041,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=5698,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1880,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2770,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=279814,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=2770,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=292509,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1304,
+ ["unit"]=0
+ }
+ },
+ [13041]={
+ ["next_chapter"]=13042,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5703,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1882,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2798,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=282612,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=2798,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=292509,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1304,
+ ["unit"]=0
+ }
+ },
+ [13042]={
+ ["next_chapter"]=13043,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5708,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1884,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2826,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=285439,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=2826,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=292509,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1304,
+ ["unit"]=0
+ }
+ },
+ [13043]={
+ ["next_chapter"]=13044,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5713,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1885,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2854,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=288293,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=2854,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=292509,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1304,
+ ["unit"]=0
+ }
+ },
+ [13044]={
+ ["next_chapter"]=13045,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5718,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1887,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2883,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=291176,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=2883,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=292509,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1304,
+ ["unit"]=0
+ }
+ },
+ [13045]={
+ ["next_chapter"]=13046,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5722,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1888,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2912,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=294088,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=2912,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=292509,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1304,
+ ["unit"]=0
+ }
+ },
+ [13046]={
+ ["next_chapter"]=13047,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5727,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1890,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2941,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=297029,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=2941,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=292509,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1304,
+ ["unit"]=0
+ }
+ },
+ [13047]={
+ ["next_chapter"]=13048,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5732,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1892,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2970,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=299999,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=2970,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=292509,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1304,
+ ["unit"]=0
+ }
+ },
+ [13048]={
+ ["next_chapter"]=13049,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5737,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1893,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3000,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=302999,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=3000,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=292509,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1304,
+ ["unit"]=0
+ }
+ },
+ [13049]={
+ ["next_chapter"]=13050,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5742,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1895,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3030,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=306029,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=3030,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=292509,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1304,
+ ["unit"]=0
+ }
+ },
+ [13050]={
+ ["next_chapter"]=13051,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=5747,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1896,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3060,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=309089,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=3060,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=323112,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1305,
+ ["unit"]=0
+ }
+ },
+ [13051]={
+ ["next_chapter"]=13052,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5751,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1898,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3091,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=312180,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=3091,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=323112,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1305,
+ ["unit"]=0
+ }
+ },
+ [13052]={
+ ["next_chapter"]=13053,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5756,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1900,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3122,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=315302,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=3122,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=323112,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1305,
+ ["unit"]=0
+ }
+ },
+ [13053]={
+ ["next_chapter"]=13054,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5761,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1901,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3153,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=318455,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=3153,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=323112,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1305,
+ ["unit"]=0
+ }
+ },
+ [13054]={
+ ["next_chapter"]=13055,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5766,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1903,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3185,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=321639,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=3185,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=323112,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1305,
+ ["unit"]=0
+ }
+ },
+ [13055]={
+ ["next_chapter"]=13056,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5771,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1904,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3216,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=324856,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=3216,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=323112,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1305,
+ ["unit"]=0
+ }
+ },
+ [13056]={
+ ["next_chapter"]=13057,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5776,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1906,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3249,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=328104,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=3249,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=323112,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1305,
+ ["unit"]=0
+ }
+ },
+ [13057]={
+ ["next_chapter"]=13058,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5781,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1908,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3281,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=331385,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=3281,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=323112,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1305,
+ ["unit"]=0
+ }
+ },
+ [13058]={
+ ["next_chapter"]=13059,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5785,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1909,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3314,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=334699,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=3314,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=323112,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1305,
+ ["unit"]=0
+ }
+ },
+ [13059]={
+ ["next_chapter"]=13060,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5790,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1911,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3347,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=338046,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=3347,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=323112,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1305,
+ ["unit"]=0
+ }
+ },
+ [13060]={
+ ["next_chapter"]=13061,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=5795,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1912,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3380,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=341427,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=3380,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=356916,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1306,
+ ["unit"]=0
+ }
+ },
+ [13061]={
+ ["next_chapter"]=13062,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5800,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1914,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3414,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=344841,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=3414,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=356916,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1306,
+ ["unit"]=0
+ }
+ },
+ [13062]={
+ ["next_chapter"]=13063,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5805,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1916,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3448,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=348289,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=3448,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=356916,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1306,
+ ["unit"]=0
+ }
+ },
+ [13063]={
+ ["next_chapter"]=13064,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5810,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1917,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3483,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=351772,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=3483,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=356916,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1306,
+ ["unit"]=0
+ }
+ },
+ [13064]={
+ ["next_chapter"]=13065,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5815,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1919,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3518,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=355290,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=3518,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=356916,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1306,
+ ["unit"]=0
+ }
+ },
+ [13065]={
+ ["next_chapter"]=13066,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5819,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1920,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3553,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=358843,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=3553,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=356916,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1306,
+ ["unit"]=0
+ }
+ },
+ [13066]={
+ ["next_chapter"]=13067,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5824,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1922,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3588,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=362431,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=3588,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=356916,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1306,
+ ["unit"]=0
+ }
+ },
+ [13067]={
+ ["next_chapter"]=13068,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5829,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1924,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3624,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=366056,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=3624,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=356916,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1306,
+ ["unit"]=0
+ }
+ },
+ [13068]={
+ ["next_chapter"]=13069,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5834,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1925,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3661,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=369716,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=3661,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=356916,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1306,
+ ["unit"]=0
+ }
+ },
+ [13069]={
+ ["next_chapter"]=13070,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5839,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1927,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3697,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=373413,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=3697,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=356916,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1306,
+ ["unit"]=0
+ }
+ },
+ [13070]={
+ ["next_chapter"]=13071,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=5844,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1928,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3734,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=377147,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=3734,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=394257,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1307,
+ ["unit"]=0
+ }
+ },
+ [13071]={
+ ["next_chapter"]=13072,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5849,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1930,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3771,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=380919,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=3771,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=394257,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1307,
+ ["unit"]=0
+ }
+ },
+ [13072]={
+ ["next_chapter"]=13073,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5854,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1932,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3809,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=384728,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=3809,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=394257,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1307,
+ ["unit"]=0
+ }
+ },
+ [13073]={
+ ["next_chapter"]=13074,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5859,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1933,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3847,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=388575,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=3847,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=394257,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1307,
+ ["unit"]=0
+ }
+ },
+ [13074]={
+ ["next_chapter"]=13075,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5864,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1935,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3886,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=392461,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=3886,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=394257,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1307,
+ ["unit"]=0
+ }
+ },
+ [13075]={
+ ["next_chapter"]=13076,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5868,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1937,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3925,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=396386,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=3925,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=394257,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1307,
+ ["unit"]=0
+ }
+ },
+ [13076]={
+ ["next_chapter"]=13077,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5873,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1938,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3964,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=400350,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=3964,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=394257,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1307,
+ ["unit"]=0
+ }
+ },
+ [13077]={
+ ["next_chapter"]=13078,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5878,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1940,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4003,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=404353,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=4003,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=394257,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1307,
+ ["unit"]=0
+ }
+ },
+ [13078]={
+ ["next_chapter"]=13079,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5883,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1941,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4044,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=408397,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=4044,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=394257,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1307,
+ ["unit"]=0
+ }
+ },
+ [13079]={
+ ["next_chapter"]=13080,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5888,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1943,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4084,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=412481,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=4084,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=394257,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1307,
+ ["unit"]=0
+ }
+ },
+ [13080]={
+ ["next_chapter"]=13081,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=5893,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1945,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4125,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=416605,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=4125,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=435506,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1308,
+ ["unit"]=0
+ }
+ },
+ [13081]={
+ ["next_chapter"]=13082,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5898,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1946,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4166,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=420771,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=4166,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=435506,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1308,
+ ["unit"]=0
+ }
+ },
+ [13082]={
+ ["next_chapter"]=13083,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5903,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1948,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4208,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=424979,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=4208,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=435506,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1308,
+ ["unit"]=0
+ }
+ },
+ [13083]={
+ ["next_chapter"]=13084,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5908,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1950,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4250,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=429229,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=4250,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=435506,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1308,
+ ["unit"]=0
+ }
+ },
+ [13084]={
+ ["next_chapter"]=13085,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5913,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1951,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4292,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=433521,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=4292,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=435506,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1308,
+ ["unit"]=0
+ }
+ },
+ [13085]={
+ ["next_chapter"]=13086,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5918,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1953,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4335,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=437856,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=4335,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=435506,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1308,
+ ["unit"]=0
+ }
+ },
+ [13086]={
+ ["next_chapter"]=13087,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5923,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1954,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4379,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=442235,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=4379,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=435506,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1308,
+ ["unit"]=0
+ }
+ },
+ [13087]={
+ ["next_chapter"]=13088,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5928,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1956,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4422,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=446657,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=4422,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=435506,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1308,
+ ["unit"]=0
+ }
+ },
+ [13088]={
+ ["next_chapter"]=13089,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5932,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1958,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4467,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=451124,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=4467,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=435506,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1308,
+ ["unit"]=0
+ }
+ },
+ [13089]={
+ ["next_chapter"]=13090,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5937,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1959,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4511,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=455635,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=4511,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=435506,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1308,
+ ["unit"]=0
+ }
+ },
+ [13090]={
+ ["next_chapter"]=13091,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=5942,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1961,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4556,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=460191,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=4556,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=481069,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1309,
+ ["unit"]=0
+ }
+ },
+ [13091]={
+ ["next_chapter"]=13092,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5947,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1963,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4602,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=464793,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=4602,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=481069,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1309,
+ ["unit"]=0
+ }
+ },
+ [13092]={
+ ["next_chapter"]=13093,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5952,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1964,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4648,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=469441,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=4648,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=481069,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1309,
+ ["unit"]=0
+ }
+ },
+ [13093]={
+ ["next_chapter"]=13094,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5957,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1966,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4694,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=474136,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=4694,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=481069,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1309,
+ ["unit"]=0
+ }
+ },
+ [13094]={
+ ["next_chapter"]=13095,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5962,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1968,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4741,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=478877,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=4741,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=481069,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1309,
+ ["unit"]=0
+ }
+ },
+ [13095]={
+ ["next_chapter"]=13096,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5967,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1969,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4789,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=483666,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=4789,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=481069,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1309,
+ ["unit"]=0
+ }
+ },
+ [13096]={
+ ["next_chapter"]=13097,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5972,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1971,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4837,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=488503,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=4837,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=481069,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1309,
+ ["unit"]=0
+ }
+ },
+ [13097]={
+ ["next_chapter"]=13098,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5977,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1972,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4885,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=493388,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=4885,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=481069,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1309,
+ ["unit"]=0
+ }
+ },
+ [13098]={
+ ["next_chapter"]=13099,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5982,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1974,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4934,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=498321,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=4934,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=481069,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1309,
+ ["unit"]=0
+ }
+ },
+ [13099]={
+ ["next_chapter"]=13100,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5987,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1976,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4983,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=503305,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=4983,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=481069,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1309,
+ ["unit"]=0
+ }
+ },
+ [13100]={
+ ["next_chapter"]=13101,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=5992,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1977,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5033,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=508338,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=5033,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=60,
+ ["grasp_gold_reward"]={
+ ["value"]=531399,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1310,
+ ["unit"]=0
+ }
+ },
+ [13101]={
+ ["next_chapter"]=13102,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=5997,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1979,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5083,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=513421,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=5083,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=531399,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1310,
+ ["unit"]=0
+ }
+ },
+ [13102]={
+ ["next_chapter"]=13103,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6002,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1981,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5134,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=518555,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=5134,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=531399,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1310,
+ ["unit"]=0
+ }
+ },
+ [13103]={
+ ["next_chapter"]=13104,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6007,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1982,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5186,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=523741,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=5186,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=531399,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1310,
+ ["unit"]=0
+ }
+ },
+ [13104]={
+ ["next_chapter"]=13105,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6012,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1984,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5237,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=528978,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=5237,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=531399,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1310,
+ ["unit"]=0
+ }
+ },
+ [13105]={
+ ["next_chapter"]=13106,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6017,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1986,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5290,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=534268,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=5290,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=531399,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1310,
+ ["unit"]=0
+ }
+ },
+ [13106]={
+ ["next_chapter"]=13107,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6022,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1987,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5343,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=539611,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=5343,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=531399,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1310,
+ ["unit"]=0
+ }
+ },
+ [13107]={
+ ["next_chapter"]=13108,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6027,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1989,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5396,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=545007,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=5396,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=531399,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1310,
+ ["unit"]=0
+ }
+ },
+ [13108]={
+ ["next_chapter"]=13109,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6032,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1991,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5450,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=550457,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=5450,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=531399,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1310,
+ ["unit"]=0
+ }
+ },
+ [13109]={
+ ["next_chapter"]=13110,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6037,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1992,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5505,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=555961,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=5505,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=531399,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1310,
+ ["unit"]=0
+ }
+ },
+ [13110]={
+ ["next_chapter"]=13111,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=6042,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1994,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5560,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=561521,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=5560,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=586996,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1311,
+ ["unit"]=0
+ }
+ },
+ [13111]={
+ ["next_chapter"]=13112,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6047,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1995,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5615,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=567136,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=5615,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=586996,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1311,
+ ["unit"]=0
+ }
+ },
+ [13112]={
+ ["next_chapter"]=13113,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6052,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1997,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5671,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=572808,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=5671,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=586996,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1311,
+ ["unit"]=0
+ }
+ },
+ [13113]={
+ ["next_chapter"]=13114,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6057,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=1999,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5728,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=578536,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=5728,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=586996,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1311,
+ ["unit"]=0
+ }
+ },
+ [13114]={
+ ["next_chapter"]=13115,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6062,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2000,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5785,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=584321,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=5785,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=586996,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1311,
+ ["unit"]=0
+ }
+ },
+ [13115]={
+ ["next_chapter"]=13116,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6067,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2002,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5843,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=590164,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=5843,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=586996,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1311,
+ ["unit"]=0
+ }
+ },
+ [13116]={
+ ["next_chapter"]=13117,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6072,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2004,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5902,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=596066,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=5902,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=586996,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1311,
+ ["unit"]=0
+ }
+ },
+ [13117]={
+ ["next_chapter"]=13118,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6077,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2005,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5961,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=602027,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=5961,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=586996,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1311,
+ ["unit"]=0
+ }
+ },
+ [13118]={
+ ["next_chapter"]=13119,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6082,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2007,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6020,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=608047,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=6020,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=586996,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1311,
+ ["unit"]=0
+ }
+ },
+ [13119]={
+ ["next_chapter"]=13120,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6087,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2009,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6080,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=614127,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=6080,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=586996,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1311,
+ ["unit"]=0
+ }
+ },
+ [13120]={
+ ["next_chapter"]=13121,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=6092,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2010,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6141,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=620269,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=6141,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=648408,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1312,
+ ["unit"]=0
+ }
+ },
+ [13121]={
+ ["next_chapter"]=13122,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6097,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2012,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6203,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=626471,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=6203,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=648408,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1312,
+ ["unit"]=0
+ }
+ },
+ [13122]={
+ ["next_chapter"]=13123,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6102,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2014,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6265,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=632736,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=6265,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=648408,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1312,
+ ["unit"]=0
+ }
+ },
+ [13123]={
+ ["next_chapter"]=13124,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6107,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2015,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6327,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=639063,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=6327,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=648408,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1312,
+ ["unit"]=0
+ }
+ },
+ [13124]={
+ ["next_chapter"]=13125,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6112,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2017,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6391,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=645454,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=6391,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=648408,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1312,
+ ["unit"]=0
+ }
+ },
+ [13125]={
+ ["next_chapter"]=13126,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6117,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2019,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6455,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=651909,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=6455,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=648408,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1312,
+ ["unit"]=0
+ }
+ },
+ [13126]={
+ ["next_chapter"]=13127,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6122,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2020,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6519,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=658428,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=6519,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=648408,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1312,
+ ["unit"]=0
+ }
+ },
+ [13127]={
+ ["next_chapter"]=13128,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6127,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2022,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6584,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=665012,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=6584,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=648408,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1312,
+ ["unit"]=0
+ }
+ },
+ [13128]={
+ ["next_chapter"]=13129,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6132,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2024,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6650,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=671662,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=6650,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=648408,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1312,
+ ["unit"]=0
+ }
+ },
+ [13129]={
+ ["next_chapter"]=13130,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6137,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2025,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6717,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=678379,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=6717,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=648408,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1312,
+ ["unit"]=0
+ }
+ },
+ [13130]={
+ ["next_chapter"]=13131,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=6143,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2027,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6784,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=685162,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=6784,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=716246,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1313,
+ ["unit"]=0
+ }
+ },
+ [13131]={
+ ["next_chapter"]=13132,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6148,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2029,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6852,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=692014,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=6852,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=716246,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1313,
+ ["unit"]=0
+ }
+ },
+ [13132]={
+ ["next_chapter"]=13133,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6153,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2030,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6920,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=698934,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=6920,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=716246,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1313,
+ ["unit"]=0
+ }
+ },
+ [13133]={
+ ["next_chapter"]=13134,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6158,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2032,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6989,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=705924,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=6989,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=716246,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1313,
+ ["unit"]=0
+ }
+ },
+ [13134]={
+ ["next_chapter"]=13135,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6163,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2034,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7059,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=712983,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=7059,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=716246,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1313,
+ ["unit"]=0
+ }
+ },
+ [13135]={
+ ["next_chapter"]=13136,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6168,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2035,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7130,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=720113,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=7130,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=716246,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1313,
+ ["unit"]=0
+ }
+ },
+ [13136]={
+ ["next_chapter"]=13137,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6173,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2037,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7201,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=727314,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=7201,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=716246,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1313,
+ ["unit"]=0
+ }
+ },
+ [13137]={
+ ["next_chapter"]=13138,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6178,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2039,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7273,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=734587,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=7273,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=716246,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1313,
+ ["unit"]=0
+ }
+ },
+ [13138]={
+ ["next_chapter"]=13139,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6183,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2040,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7346,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=741933,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=7346,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=716246,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1313,
+ ["unit"]=0
+ }
+ },
+ [13139]={
+ ["next_chapter"]=13140,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6188,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2042,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7419,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=749352,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=7419,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=716246,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1313,
+ ["unit"]=0
+ }
+ },
+ [13140]={
+ ["next_chapter"]=13141,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=6193,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2044,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7494,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=756846,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=7494,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=791181,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1314,
+ ["unit"]=0
+ }
+ },
+ [13141]={
+ ["next_chapter"]=13142,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6198,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2045,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7568,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=764414,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=7568,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=791181,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1314,
+ ["unit"]=0
+ }
+ },
+ [13142]={
+ ["next_chapter"]=13143,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6203,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2047,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7644,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=772058,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=7644,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=791181,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1314,
+ ["unit"]=0
+ }
+ },
+ [13143]={
+ ["next_chapter"]=13144,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6209,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2049,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7721,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=779779,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=7721,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=791181,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1314,
+ ["unit"]=0
+ }
+ },
+ [13144]={
+ ["next_chapter"]=13145,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6214,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2050,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7798,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=787577,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=7798,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=791181,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1314,
+ ["unit"]=0
+ }
+ },
+ [13145]={
+ ["next_chapter"]=13146,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6219,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2052,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7876,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=795452,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=7876,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=791181,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1314,
+ ["unit"]=0
+ }
+ },
+ [13146]={
+ ["next_chapter"]=13147,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6224,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2054,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7955,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=803407,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=7955,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=791181,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1314,
+ ["unit"]=0
+ }
+ },
+ [13147]={
+ ["next_chapter"]=13148,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6229,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2056,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8034,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=811441,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=8034,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=791181,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1314,
+ ["unit"]=0
+ }
+ },
+ [13148]={
+ ["next_chapter"]=13149,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6234,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2057,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8114,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=819555,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=8114,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=791181,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1314,
+ ["unit"]=0
+ }
+ },
+ [13149]={
+ ["next_chapter"]=13150,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6239,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2059,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8196,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=827751,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=8196,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=791181,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1314,
+ ["unit"]=0
+ }
+ },
+ [13150]={
+ ["next_chapter"]=13151,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=6244,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2061,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8278,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=836028,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=8278,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=873957,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1315,
+ ["unit"]=0
+ }
+ },
+ [13151]={
+ ["next_chapter"]=13152,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6249,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2062,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8360,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=844389,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=8360,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=873957,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1315,
+ ["unit"]=0
+ }
+ },
+ [13152]={
+ ["next_chapter"]=13153,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6255,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2064,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8444,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=852833,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=8444,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=873957,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1315,
+ ["unit"]=0
+ }
+ },
+ [13153]={
+ ["next_chapter"]=13154,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6260,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2066,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8528,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=861361,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=8528,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=873957,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1315,
+ ["unit"]=0
+ }
+ },
+ [13154]={
+ ["next_chapter"]=13155,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6265,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2067,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8614,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=869974,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=8614,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=873957,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1315,
+ ["unit"]=0
+ }
+ },
+ [13155]={
+ ["next_chapter"]=13156,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6270,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2069,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8700,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=878674,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=8700,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=873957,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1315,
+ ["unit"]=0
+ }
+ },
+ [13156]={
+ ["next_chapter"]=13157,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6275,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2071,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8787,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=887461,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=8787,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=873957,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1315,
+ ["unit"]=0
+ }
+ },
+ [13157]={
+ ["next_chapter"]=13158,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6280,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2072,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8875,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=896336,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=8875,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=873957,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1315,
+ ["unit"]=0
+ }
+ },
+ [13158]={
+ ["next_chapter"]=13159,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6285,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2074,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8963,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=905299,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=8963,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=873957,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1315,
+ ["unit"]=0
+ }
+ },
+ [13159]={
+ ["next_chapter"]=13160,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6290,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2076,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=9053,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=914352,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=9053,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=873957,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1315,
+ ["unit"]=0
+ }
+ },
+ [13160]={
+ ["next_chapter"]=13161,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=6296,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2078,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=9144,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=923495,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=9144,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=965392,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1316,
+ ["unit"]=0
+ }
+ },
+ [13161]={
+ ["next_chapter"]=13162,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6301,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2079,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=9235,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=932730,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=9235,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=965392,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1316,
+ ["unit"]=0
+ }
+ },
+ [13162]={
+ ["next_chapter"]=13163,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6306,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2081,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=9327,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=942058,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=9327,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=965392,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1316,
+ ["unit"]=0
+ }
+ },
+ [13163]={
+ ["next_chapter"]=13164,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6311,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2083,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=9421,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=951478,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=9421,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=965392,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1316,
+ ["unit"]=0
+ }
+ },
+ [13164]={
+ ["next_chapter"]=13165,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6316,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2084,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=9515,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=960993,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=9515,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=965392,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1316,
+ ["unit"]=0
+ }
+ },
+ [13165]={
+ ["next_chapter"]=13166,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6321,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2086,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=9610,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=970603,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=9610,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=965392,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1316,
+ ["unit"]=0
+ }
+ },
+ [13166]={
+ ["next_chapter"]=13167,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6326,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2088,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=9706,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=980309,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=9706,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=965392,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1316,
+ ["unit"]=0
+ }
+ },
+ [13167]={
+ ["next_chapter"]=13168,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6332,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2089,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=9803,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=990112,
+ ["unit"]=18
+ },
+ ["idle_gold"]={
+ ["value"]=9803,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=965392,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1316,
+ ["unit"]=0
+ }
+ },
+ [13168]={
+ ["next_chapter"]=13169,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6337,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2091,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=9901,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1000,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=9901,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=965392,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1316,
+ ["unit"]=0
+ }
+ },
+ [13169]={
+ ["next_chapter"]=13170,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6342,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2093,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=10000,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1010,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=10000,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=965392,
+ ["unit"]=18
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1316,
+ ["unit"]=0
+ }
+ },
+ [13170]={
+ ["next_chapter"]=13171,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=6347,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2095,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=10100,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1020,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=10100,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1066,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1317,
+ ["unit"]=0
+ }
+ },
+ [13171]={
+ ["next_chapter"]=13172,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6352,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2096,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=10201,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1030,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=10201,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1066,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1317,
+ ["unit"]=0
+ }
+ },
+ [13172]={
+ ["next_chapter"]=13173,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6358,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2098,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=10303,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1041,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=10303,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1066,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1317,
+ ["unit"]=0
+ }
+ },
+ [13173]={
+ ["next_chapter"]=13174,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6363,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2100,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=10406,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1051,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=10406,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1066,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1317,
+ ["unit"]=0
+ }
+ },
+ [13174]={
+ ["next_chapter"]=13175,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6368,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2101,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=10510,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1062,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=10510,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1066,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1317,
+ ["unit"]=0
+ }
+ },
+ [13175]={
+ ["next_chapter"]=13176,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6373,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2103,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=10615,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1072,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=10615,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1066,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1317,
+ ["unit"]=0
+ }
+ },
+ [13176]={
+ ["next_chapter"]=13177,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6378,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2105,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=10721,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1083,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=10721,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1066,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1317,
+ ["unit"]=0
+ }
+ },
+ [13177]={
+ ["next_chapter"]=13178,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6383,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2107,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=10829,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1094,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=10829,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1066,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1317,
+ ["unit"]=0
+ }
+ },
+ [13178]={
+ ["next_chapter"]=13179,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6389,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2108,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=10937,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1105,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=10937,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1066,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1317,
+ ["unit"]=0
+ }
+ },
+ [13179]={
+ ["next_chapter"]=13180,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6394,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2110,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=11046,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1116,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=11046,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1066,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1317,
+ ["unit"]=0
+ }
+ },
+ [13180]={
+ ["next_chapter"]=13181,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=6399,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2112,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=11157,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1127,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=11157,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1178,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1318,
+ ["unit"]=0
+ }
+ },
+ [13181]={
+ ["next_chapter"]=13182,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6404,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2113,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=11268,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1138,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=11268,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1178,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1318,
+ ["unit"]=0
+ }
+ },
+ [13182]={
+ ["next_chapter"]=13183,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6409,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2115,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=11381,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1149,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=11381,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1178,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1318,
+ ["unit"]=0
+ }
+ },
+ [13183]={
+ ["next_chapter"]=13184,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6415,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2117,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=11495,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1161,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=11495,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1178,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1318,
+ ["unit"]=0
+ }
+ },
+ [13184]={
+ ["next_chapter"]=13185,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6420,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2119,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=11610,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1173,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=11610,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1178,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1318,
+ ["unit"]=0
+ }
+ },
+ [13185]={
+ ["next_chapter"]=13186,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6425,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2120,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=11726,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1184,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=11726,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1178,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1318,
+ ["unit"]=0
+ }
+ },
+ [13186]={
+ ["next_chapter"]=13187,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6430,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2122,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=11843,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1196,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=11843,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1178,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1318,
+ ["unit"]=0
+ }
+ },
+ [13187]={
+ ["next_chapter"]=13188,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6435,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2124,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=11962,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1208,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=11962,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1178,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1318,
+ ["unit"]=0
+ }
+ },
+ [13188]={
+ ["next_chapter"]=13189,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6441,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2125,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=12081,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1220,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=12081,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1178,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1318,
+ ["unit"]=0
+ }
+ },
+ [13189]={
+ ["next_chapter"]=13190,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6446,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2127,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=12202,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1232,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=12202,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1178,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1318,
+ ["unit"]=0
+ }
+ },
+ [13190]={
+ ["next_chapter"]=13191,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=6451,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2129,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=12324,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1245,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=12324,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1301,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1319,
+ ["unit"]=0
+ }
+ },
+ [13191]={
+ ["next_chapter"]=13192,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6456,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2131,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=12447,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1257,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=12447,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1301,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1319,
+ ["unit"]=0
+ }
+ },
+ [13192]={
+ ["next_chapter"]=13193,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6462,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2132,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=12572,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1270,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=12572,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1301,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1319,
+ ["unit"]=0
+ }
+ },
+ [13193]={
+ ["next_chapter"]=13194,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6467,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2134,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=12698,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1282,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=12698,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1301,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1319,
+ ["unit"]=0
+ }
+ },
+ [13194]={
+ ["next_chapter"]=13195,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6472,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2136,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=12824,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1295,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=12824,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1301,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1319,
+ ["unit"]=0
+ }
+ },
+ [13195]={
+ ["next_chapter"]=13196,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6477,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2138,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=12953,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1308,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=12953,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1301,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1319,
+ ["unit"]=0
+ }
+ },
+ [13196]={
+ ["next_chapter"]=13197,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6483,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2139,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=13082,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1321,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=13082,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1301,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1319,
+ ["unit"]=0
+ }
+ },
+ [13197]={
+ ["next_chapter"]=13198,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6488,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2141,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=13213,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1335,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=13213,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1301,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1319,
+ ["unit"]=0
+ }
+ },
+ [13198]={
+ ["next_chapter"]=13199,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6493,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2143,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=13345,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1348,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=13345,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1301,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1319,
+ ["unit"]=0
+ }
+ },
+ [13199]={
+ ["next_chapter"]=13200,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6498,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2144,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=13479,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1361,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=13479,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1301,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1319,
+ ["unit"]=0
+ }
+ },
+ [13200]={
+ ["next_chapter"]=13201,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=6504,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2146,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=13613,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1375,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=13613,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1437,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1320,
+ ["unit"]=0
+ }
+ },
+ [13201]={
+ ["next_chapter"]=13202,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6509,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2148,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=13750,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1389,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=13750,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1437,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1320,
+ ["unit"]=0
+ }
+ },
+ [13202]={
+ ["next_chapter"]=13203,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6514,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2150,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=13887,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1403,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=13887,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1437,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1320,
+ ["unit"]=0
+ }
+ },
+ [13203]={
+ ["next_chapter"]=13204,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6519,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2151,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=14026,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1417,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=14026,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1437,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1320,
+ ["unit"]=0
+ }
+ },
+ [13204]={
+ ["next_chapter"]=13205,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6525,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2153,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=14166,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1431,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=14166,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1437,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1320,
+ ["unit"]=0
+ }
+ },
+ [13205]={
+ ["next_chapter"]=13206,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6530,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2155,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=14308,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1445,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=14308,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1437,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1320,
+ ["unit"]=0
+ }
+ },
+ [13206]={
+ ["next_chapter"]=13207,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6535,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2157,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=14451,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1460,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=14451,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1437,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1320,
+ ["unit"]=0
+ }
+ },
+ [13207]={
+ ["next_chapter"]=13208,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6540,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2158,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=14595,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1474,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=14595,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1437,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1320,
+ ["unit"]=0
+ }
+ },
+ [13208]={
+ ["next_chapter"]=13209,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6546,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2160,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=14741,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1489,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=14741,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1437,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1320,
+ ["unit"]=0
+ }
+ },
+ [13209]={
+ ["next_chapter"]=13210,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6551,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2162,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=14889,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1504,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=14889,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1437,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1320,
+ ["unit"]=0
+ }
+ },
+ [13210]={
+ ["next_chapter"]=13211,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=6556,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2164,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=15038,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1519,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=15038,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1588,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1321,
+ ["unit"]=0
+ }
+ },
+ [13211]={
+ ["next_chapter"]=13212,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6562,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2165,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=15188,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1534,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=15188,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1588,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1321,
+ ["unit"]=0
+ }
+ },
+ [13212]={
+ ["next_chapter"]=13213,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6567,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2167,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=15340,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1549,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=15340,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1588,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1321,
+ ["unit"]=0
+ }
+ },
+ [13213]={
+ ["next_chapter"]=13214,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6572,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2169,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=15493,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1565,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=15493,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1588,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1321,
+ ["unit"]=0
+ }
+ },
+ [13214]={
+ ["next_chapter"]=13215,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6577,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2171,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=15648,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1580,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=15648,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1588,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1321,
+ ["unit"]=0
+ }
+ },
+ [13215]={
+ ["next_chapter"]=13216,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6583,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2172,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=15805,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1596,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=15805,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1588,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1321,
+ ["unit"]=0
+ }
+ },
+ [13216]={
+ ["next_chapter"]=13217,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6588,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2174,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=15963,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1612,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=15963,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1588,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1321,
+ ["unit"]=0
+ }
+ },
+ [13217]={
+ ["next_chapter"]=13218,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6593,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2176,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=16122,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1628,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=16122,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1588,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1321,
+ ["unit"]=0
+ }
+ },
+ [13218]={
+ ["next_chapter"]=13219,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6599,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2178,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=16284,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1645,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=16284,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1588,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1321,
+ ["unit"]=0
+ }
+ },
+ [13219]={
+ ["next_chapter"]=13220,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6604,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2179,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=16447,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1661,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=16447,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1588,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1321,
+ ["unit"]=0
+ }
+ },
+ [13220]={
+ ["next_chapter"]=13221,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=6609,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2181,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=16611,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1678,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=16611,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1754,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1322,
+ ["unit"]=0
+ }
+ },
+ [13221]={
+ ["next_chapter"]=13222,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6615,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2183,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=16777,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1694,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=16777,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1754,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1322,
+ ["unit"]=0
+ }
+ },
+ [13222]={
+ ["next_chapter"]=13223,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6620,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2185,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=16945,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1711,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=16945,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1754,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1322,
+ ["unit"]=0
+ }
+ },
+ [13223]={
+ ["next_chapter"]=13224,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6625,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2186,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=17114,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1729,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=17114,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1754,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1322,
+ ["unit"]=0
+ }
+ },
+ [13224]={
+ ["next_chapter"]=13225,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6631,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2188,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=17285,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1746,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=17285,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1754,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1322,
+ ["unit"]=0
+ }
+ },
+ [13225]={
+ ["next_chapter"]=13226,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6636,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2190,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=17458,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1763,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=17458,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1754,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1322,
+ ["unit"]=0
+ }
+ },
+ [13226]={
+ ["next_chapter"]=13227,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6641,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2192,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=17633,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1781,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=17633,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1754,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1322,
+ ["unit"]=0
+ }
+ },
+ [13227]={
+ ["next_chapter"]=13228,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6647,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2193,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=17809,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1799,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=17809,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1754,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1322,
+ ["unit"]=0
+ }
+ },
+ [13228]={
+ ["next_chapter"]=13229,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6652,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2195,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=17987,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1817,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=17987,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1754,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1322,
+ ["unit"]=0
+ }
+ },
+ [13229]={
+ ["next_chapter"]=13230,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6657,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2197,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=18167,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1835,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=18167,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1754,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1322,
+ ["unit"]=0
+ }
+ },
+ [13230]={
+ ["next_chapter"]=13231,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=6663,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2199,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=18349,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1853,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=18349,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1937,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1323,
+ ["unit"]=0
+ }
+ },
+ [13231]={
+ ["next_chapter"]=13232,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6668,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2200,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=18532,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1872,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=18532,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1937,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1323,
+ ["unit"]=0
+ }
+ },
+ [13232]={
+ ["next_chapter"]=13233,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6673,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2202,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=18718,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1890,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=18718,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1937,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1323,
+ ["unit"]=0
+ }
+ },
+ [13233]={
+ ["next_chapter"]=13234,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6679,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2204,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=18905,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1909,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=18905,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1937,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1323,
+ ["unit"]=0
+ }
+ },
+ [13234]={
+ ["next_chapter"]=13235,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6684,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2206,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=19094,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1928,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=19094,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1937,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1323,
+ ["unit"]=0
+ }
+ },
+ [13235]={
+ ["next_chapter"]=13236,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6689,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2207,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=19285,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1948,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=19285,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1937,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1323,
+ ["unit"]=0
+ }
+ },
+ [13236]={
+ ["next_chapter"]=13237,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6695,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2209,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=19478,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1967,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=19478,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1937,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1323,
+ ["unit"]=0
+ }
+ },
+ [13237]={
+ ["next_chapter"]=13238,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6700,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2211,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=19672,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1987,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=19672,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1937,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1323,
+ ["unit"]=0
+ }
+ },
+ [13238]={
+ ["next_chapter"]=13239,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6705,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2213,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=19869,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2007,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=19869,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1937,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1323,
+ ["unit"]=0
+ }
+ },
+ [13239]={
+ ["next_chapter"]=13240,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6711,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2215,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=20068,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2027,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=20068,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1937,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1323,
+ ["unit"]=0
+ }
+ },
+ [13240]={
+ ["next_chapter"]=13241,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=6716,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2216,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=20269,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2047,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=20269,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2140,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1324,
+ ["unit"]=0
+ }
+ },
+ [13241]={
+ ["next_chapter"]=13242,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6722,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2218,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=20471,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2068,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=20471,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2140,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1324,
+ ["unit"]=0
+ }
+ },
+ [13242]={
+ ["next_chapter"]=13243,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6727,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2220,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=20676,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2088,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=20676,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2140,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1324,
+ ["unit"]=0
+ }
+ },
+ [13243]={
+ ["next_chapter"]=13244,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6732,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2222,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=20883,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2109,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=20883,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2140,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1324,
+ ["unit"]=0
+ }
+ },
+ [13244]={
+ ["next_chapter"]=13245,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6738,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2223,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=21092,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2130,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=21092,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2140,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1324,
+ ["unit"]=0
+ }
+ },
+ [13245]={
+ ["next_chapter"]=13246,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6743,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2225,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=21302,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2152,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=21302,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2140,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1324,
+ ["unit"]=0
+ }
+ },
+ [13246]={
+ ["next_chapter"]=13247,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6748,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2227,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=21516,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2173,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=21516,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2140,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1324,
+ ["unit"]=0
+ }
+ },
+ [13247]={
+ ["next_chapter"]=13248,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6754,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2229,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=21731,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2195,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=21731,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2140,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1324,
+ ["unit"]=0
+ }
+ },
+ [13248]={
+ ["next_chapter"]=13249,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6759,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2231,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=21948,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2217,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=21948,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2140,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1324,
+ ["unit"]=0
+ }
+ },
+ [13249]={
+ ["next_chapter"]=13250,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6765,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2232,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=22167,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2239,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=22167,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2140,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1324,
+ ["unit"]=0
+ }
+ },
+ [13250]={
+ ["next_chapter"]=13251,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=6770,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2234,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=22389,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2261,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=22389,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2364,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1325,
+ ["unit"]=0
+ }
+ },
+ [13251]={
+ ["next_chapter"]=13252,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6775,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2236,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=22613,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2284,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=22613,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2364,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1325,
+ ["unit"]=0
+ }
+ },
+ [13252]={
+ ["next_chapter"]=13253,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6781,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2238,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=22839,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2307,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=22839,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2364,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1325,
+ ["unit"]=0
+ }
+ },
+ [13253]={
+ ["next_chapter"]=13254,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6786,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2239,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=23068,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2330,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=23068,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2364,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1325,
+ ["unit"]=0
+ }
+ },
+ [13254]={
+ ["next_chapter"]=13255,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6792,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2241,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=23298,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2353,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=23298,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2364,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1325,
+ ["unit"]=0
+ }
+ },
+ [13255]={
+ ["next_chapter"]=13256,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6797,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2243,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=23531,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2377,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=23531,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2364,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1325,
+ ["unit"]=0
+ }
+ },
+ [13256]={
+ ["next_chapter"]=13257,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6802,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2245,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=23767,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2400,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=23767,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2364,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1325,
+ ["unit"]=0
+ }
+ },
+ [13257]={
+ ["next_chapter"]=13258,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6808,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2247,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=24004,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2424,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=24004,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2364,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1325,
+ ["unit"]=0
+ }
+ },
+ [13258]={
+ ["next_chapter"]=13259,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6813,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2248,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=24244,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2449,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=24244,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2364,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1325,
+ ["unit"]=0
+ }
+ },
+ [13259]={
+ ["next_chapter"]=13260,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6819,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2250,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=24487,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2473,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=24487,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2364,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1325,
+ ["unit"]=0
+ }
+ },
+ [13260]={
+ ["next_chapter"]=13261,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=6824,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2252,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=24732,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2498,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=24732,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2611,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1326,
+ ["unit"]=0
+ }
+ },
+ [13261]={
+ ["next_chapter"]=13262,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6830,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2254,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=24979,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2523,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=24979,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2611,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1326,
+ ["unit"]=0
+ }
+ },
+ [13262]={
+ ["next_chapter"]=13263,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6835,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2256,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=25229,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2548,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=25229,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2611,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1326,
+ ["unit"]=0
+ }
+ },
+ [13263]={
+ ["next_chapter"]=13264,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6840,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2257,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=25481,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2574,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=25481,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2611,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1326,
+ ["unit"]=0
+ }
+ },
+ [13264]={
+ ["next_chapter"]=13265,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6846,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2259,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=25736,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2599,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=25736,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2611,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1326,
+ ["unit"]=0
+ }
+ },
+ [13265]={
+ ["next_chapter"]=13266,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6851,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2261,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=25993,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2625,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=25993,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2611,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1326,
+ ["unit"]=0
+ }
+ },
+ [13266]={
+ ["next_chapter"]=13267,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6857,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2263,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=26253,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2652,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=26253,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2611,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1326,
+ ["unit"]=0
+ }
+ },
+ [13267]={
+ ["next_chapter"]=13268,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6862,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2265,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=26516,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2678,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=26516,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2611,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1326,
+ ["unit"]=0
+ }
+ },
+ [13268]={
+ ["next_chapter"]=13269,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6868,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2266,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=26781,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2705,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=26781,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2611,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1326,
+ ["unit"]=0
+ }
+ },
+ [13269]={
+ ["next_chapter"]=13270,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6873,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2268,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=27048,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2732,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=27048,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2611,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1326,
+ ["unit"]=0
+ }
+ },
+ [13270]={
+ ["next_chapter"]=13271,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=6879,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2270,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=27319,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2759,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=27319,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2884,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1327,
+ ["unit"]=0
+ }
+ },
+ [13271]={
+ ["next_chapter"]=13272,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6884,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2272,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=27592,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2787,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=27592,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2884,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1327,
+ ["unit"]=0
+ }
+ },
+ [13272]={
+ ["next_chapter"]=13273,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6889,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2274,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=27868,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2815,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=27868,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2884,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1327,
+ ["unit"]=0
+ }
+ },
+ [13273]={
+ ["next_chapter"]=13274,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6895,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2275,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=28147,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2843,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=28147,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2884,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1327,
+ ["unit"]=0
+ }
+ },
+ [13274]={
+ ["next_chapter"]=13275,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6900,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2277,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=28428,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2871,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=28428,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2884,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1327,
+ ["unit"]=0
+ }
+ },
+ [13275]={
+ ["next_chapter"]=13276,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6906,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2279,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=28713,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2900,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=28713,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2884,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1327,
+ ["unit"]=0
+ }
+ },
+ [13276]={
+ ["next_chapter"]=13277,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6911,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2281,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=29000,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2929,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=29000,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2884,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1327,
+ ["unit"]=0
+ }
+ },
+ [13277]={
+ ["next_chapter"]=13278,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6917,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2283,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=29290,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2958,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=29290,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2884,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1327,
+ ["unit"]=0
+ }
+ },
+ [13278]={
+ ["next_chapter"]=13279,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6922,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2284,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=29583,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2988,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=29583,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2884,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1327,
+ ["unit"]=0
+ }
+ },
+ [13279]={
+ ["next_chapter"]=13280,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6928,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2286,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=29878,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3018,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=29878,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2884,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1327,
+ ["unit"]=0
+ }
+ },
+ [13280]={
+ ["next_chapter"]=13281,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=6933,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2288,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=30177,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3048,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=30177,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3186,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1328,
+ ["unit"]=0
+ }
+ },
+ [13281]={
+ ["next_chapter"]=13282,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6939,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2290,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=30479,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3078,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=30479,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3186,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1328,
+ ["unit"]=0
+ }
+ },
+ [13282]={
+ ["next_chapter"]=13283,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6944,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2292,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=30784,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3109,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=30784,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3186,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1328,
+ ["unit"]=0
+ }
+ },
+ [13283]={
+ ["next_chapter"]=13284,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6950,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2293,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=31092,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3140,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=31092,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3186,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1328,
+ ["unit"]=0
+ }
+ },
+ [13284]={
+ ["next_chapter"]=13285,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6955,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2295,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=31402,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3172,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=31402,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3186,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1328,
+ ["unit"]=0
+ }
+ },
+ [13285]={
+ ["next_chapter"]=13286,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6961,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2297,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=31716,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3203,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=31716,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3186,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1328,
+ ["unit"]=0
+ }
+ },
+ [13286]={
+ ["next_chapter"]=13287,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6966,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2299,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=32034,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3235,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=32034,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3186,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1328,
+ ["unit"]=0
+ }
+ },
+ [13287]={
+ ["next_chapter"]=13288,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6972,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2301,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=32354,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3268,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=32354,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3186,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1328,
+ ["unit"]=0
+ }
+ },
+ [13288]={
+ ["next_chapter"]=13289,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6977,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2303,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=32678,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3300,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=32678,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3186,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1328,
+ ["unit"]=0
+ }
+ },
+ [13289]={
+ ["next_chapter"]=13290,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6983,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2304,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=33004,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3333,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=33004,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3186,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1328,
+ ["unit"]=0
+ }
+ },
+ [13290]={
+ ["next_chapter"]=13291,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=6988,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2306,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=33334,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3367,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=33334,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3520,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1329,
+ ["unit"]=0
+ }
+ },
+ [13291]={
+ ["next_chapter"]=13292,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6994,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2308,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=33668,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3400,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=33668,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3520,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1329,
+ ["unit"]=0
+ }
+ },
+ [13292]={
+ ["next_chapter"]=13293,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=6999,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2310,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=34004,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3434,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=34004,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3520,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1329,
+ ["unit"]=0
+ }
+ },
+ [13293]={
+ ["next_chapter"]=13294,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7005,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2312,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=34344,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3469,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=34344,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3520,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1329,
+ ["unit"]=0
+ }
+ },
+ [13294]={
+ ["next_chapter"]=13295,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7010,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2313,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=34688,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3503,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=34688,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3520,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1329,
+ ["unit"]=0
+ }
+ },
+ [13295]={
+ ["next_chapter"]=13296,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7016,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2315,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=35035,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3539,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=35035,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3520,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1329,
+ ["unit"]=0
+ }
+ },
+ [13296]={
+ ["next_chapter"]=13297,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7021,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2317,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=35385,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3574,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=35385,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3520,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1329,
+ ["unit"]=0
+ }
+ },
+ [13297]={
+ ["next_chapter"]=13298,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7027,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2319,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=35739,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3610,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=35739,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3520,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1329,
+ ["unit"]=0
+ }
+ },
+ [13298]={
+ ["next_chapter"]=13299,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7033,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2321,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=36096,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3646,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=36096,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3520,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1329,
+ ["unit"]=0
+ }
+ },
+ [13299]={
+ ["next_chapter"]=13300,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7038,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2323,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=36457,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3682,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=36457,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3520,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1329,
+ ["unit"]=0
+ }
+ },
+ [13300]={
+ ["next_chapter"]=13301,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=7044,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2324,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=36822,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3719,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=36822,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3888,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1330,
+ ["unit"]=0
+ }
+ },
+ [13301]={
+ ["next_chapter"]=13302,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7049,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2326,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=37190,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3756,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=37190,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3888,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1330,
+ ["unit"]=0
+ }
+ },
+ [13302]={
+ ["next_chapter"]=13303,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7055,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2328,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=37562,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3794,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=37562,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3888,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1330,
+ ["unit"]=0
+ }
+ },
+ [13303]={
+ ["next_chapter"]=13304,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7060,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2330,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=37938,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3832,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=37938,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3888,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1330,
+ ["unit"]=0
+ }
+ },
+ [13304]={
+ ["next_chapter"]=13305,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7066,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2332,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=38317,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3870,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=38317,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3888,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1330,
+ ["unit"]=0
+ }
+ },
+ [13305]={
+ ["next_chapter"]=13306,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7071,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2334,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=38700,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3909,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=38700,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3888,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1330,
+ ["unit"]=0
+ }
+ },
+ [13306]={
+ ["next_chapter"]=13307,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7077,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2335,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=39087,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3948,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=39087,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3888,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1330,
+ ["unit"]=0
+ }
+ },
+ [13307]={
+ ["next_chapter"]=13308,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7083,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2337,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=39478,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3987,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=39478,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3888,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1330,
+ ["unit"]=0
+ }
+ },
+ [13308]={
+ ["next_chapter"]=13309,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7088,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2339,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=39873,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4027,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=39873,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3888,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1330,
+ ["unit"]=0
+ }
+ },
+ [13309]={
+ ["next_chapter"]=13310,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7094,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2341,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=40272,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4067,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=40272,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3888,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1330,
+ ["unit"]=0
+ }
+ },
+ [13310]={
+ ["next_chapter"]=13311,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=7099,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2343,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=40674,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4108,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=40674,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=4294,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1331,
+ ["unit"]=0
+ }
+ },
+ [13311]={
+ ["next_chapter"]=13312,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7105,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2345,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=41081,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4149,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=41081,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=4294,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1331,
+ ["unit"]=0
+ }
+ },
+ [13312]={
+ ["next_chapter"]=13313,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7110,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2346,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=41492,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4191,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=41492,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=4294,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1331,
+ ["unit"]=0
+ }
+ },
+ [13313]={
+ ["next_chapter"]=13314,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7116,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2348,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=41907,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4233,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=41907,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=4294,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1331,
+ ["unit"]=0
+ }
+ },
+ [13314]={
+ ["next_chapter"]=13315,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7122,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2350,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=42326,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4275,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=42326,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=4294,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1331,
+ ["unit"]=0
+ }
+ },
+ [13315]={
+ ["next_chapter"]=13316,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7127,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2352,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=42749,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4318,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=42749,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=4294,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1331,
+ ["unit"]=0
+ }
+ },
+ [13316]={
+ ["next_chapter"]=13317,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7133,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2354,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=43177,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4361,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=43177,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=4294,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1331,
+ ["unit"]=0
+ }
+ },
+ [13317]={
+ ["next_chapter"]=13318,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7138,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2356,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=43608,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4404,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=43608,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=4294,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1331,
+ ["unit"]=0
+ }
+ },
+ [13318]={
+ ["next_chapter"]=13319,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7144,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2357,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=44044,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4448,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=44044,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=4294,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1331,
+ ["unit"]=0
+ }
+ },
+ [13319]={
+ ["next_chapter"]=13320,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7149,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2359,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=44485,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4493,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=44485,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=4294,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1331,
+ ["unit"]=0
+ }
+ },
+ [13320]={
+ ["next_chapter"]=13321,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=7155,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2361,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=44930,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4538,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=44930,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=4744,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1332,
+ ["unit"]=0
+ }
+ },
+ [13321]={
+ ["next_chapter"]=13322,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7161,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2363,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=45379,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4583,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=45379,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=4744,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1332,
+ ["unit"]=0
+ }
+ },
+ [13322]={
+ ["next_chapter"]=13323,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7166,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2365,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=45833,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4629,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=45833,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=4744,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1332,
+ ["unit"]=0
+ }
+ },
+ [13323]={
+ ["next_chapter"]=13324,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7172,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2367,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=46291,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4675,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=46291,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=4744,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1332,
+ ["unit"]=0
+ }
+ },
+ [13324]={
+ ["next_chapter"]=13325,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7178,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2369,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=46754,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4722,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=46754,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=4744,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1332,
+ ["unit"]=0
+ }
+ },
+ [13325]={
+ ["next_chapter"]=13326,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7183,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2370,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=47222,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4769,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=47222,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=4744,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1332,
+ ["unit"]=0
+ }
+ },
+ [13326]={
+ ["next_chapter"]=13327,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7189,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2372,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=47694,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4817,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=47694,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=4744,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1332,
+ ["unit"]=0
+ }
+ },
+ [13327]={
+ ["next_chapter"]=13328,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7194,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2374,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=48171,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4865,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=48171,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=4744,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1332,
+ ["unit"]=0
+ }
+ },
+ [13328]={
+ ["next_chapter"]=13329,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7200,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2376,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=48652,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4914,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=48652,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=4744,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1332,
+ ["unit"]=0
+ }
+ },
+ [13329]={
+ ["next_chapter"]=13330,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7206,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2378,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=49139,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4963,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=49139,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=4744,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1332,
+ ["unit"]=0
+ }
+ },
+ [13330]={
+ ["next_chapter"]=13331,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=7211,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2380,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=49630,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5013,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=49630,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=5240,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1333,
+ ["unit"]=0
+ }
+ },
+ [13331]={
+ ["next_chapter"]=13332,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7217,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2382,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=50127,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5063,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=50127,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=5240,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1333,
+ ["unit"]=0
+ }
+ },
+ [13332]={
+ ["next_chapter"]=13333,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7223,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2383,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=50628,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5113,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=50628,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=5240,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1333,
+ ["unit"]=0
+ }
+ },
+ [13333]={
+ ["next_chapter"]=13334,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7228,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2385,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=51134,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5165,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=51134,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=5240,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1333,
+ ["unit"]=0
+ }
+ },
+ [13334]={
+ ["next_chapter"]=13335,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7234,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2387,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=51645,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5216,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=51645,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=5240,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1333,
+ ["unit"]=0
+ }
+ },
+ [13335]={
+ ["next_chapter"]=13336,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7239,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2389,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=52162,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5268,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=52162,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=5240,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1333,
+ ["unit"]=0
+ }
+ },
+ [13336]={
+ ["next_chapter"]=13337,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7245,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2391,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=52684,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5321,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=52684,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=5240,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1333,
+ ["unit"]=0
+ }
+ },
+ [13337]={
+ ["next_chapter"]=13338,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7251,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2393,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=53210,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5374,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=53210,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=5240,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1333,
+ ["unit"]=0
+ }
+ },
+ [13338]={
+ ["next_chapter"]=13339,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7256,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2395,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=53743,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5428,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=53743,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=5240,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1333,
+ ["unit"]=0
+ }
+ },
+ [13339]={
+ ["next_chapter"]=13340,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7262,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2396,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=54280,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5482,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=54280,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=5240,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1333,
+ ["unit"]=0
+ }
+ },
+ [13340]={
+ ["next_chapter"]=13341,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=7268,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2398,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=54823,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5537,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=54823,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=5788,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1334,
+ ["unit"]=0
+ }
+ },
+ [13341]={
+ ["next_chapter"]=13342,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7273,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2400,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=55371,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5592,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=55371,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=5788,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1334,
+ ["unit"]=0
+ }
+ },
+ [13342]={
+ ["next_chapter"]=13343,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7279,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2402,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=55925,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5648,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=55925,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=5788,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1334,
+ ["unit"]=0
+ }
+ },
+ [13343]={
+ ["next_chapter"]=13344,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7285,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2404,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=56484,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5705,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=56484,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=5788,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1334,
+ ["unit"]=0
+ }
+ },
+ [13344]={
+ ["next_chapter"]=13345,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7290,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2406,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=57049,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5762,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=57049,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=5788,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1334,
+ ["unit"]=0
+ }
+ },
+ [13345]={
+ ["next_chapter"]=13346,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7296,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2408,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=57619,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5820,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=57619,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=5788,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1334,
+ ["unit"]=0
+ }
+ },
+ [13346]={
+ ["next_chapter"]=13347,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7302,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2410,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=58195,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5878,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=58195,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=5788,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1334,
+ ["unit"]=0
+ }
+ },
+ [13347]={
+ ["next_chapter"]=13348,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7307,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2411,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=58777,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5937,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=58777,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=5788,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1334,
+ ["unit"]=0
+ }
+ },
+ [13348]={
+ ["next_chapter"]=13349,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7313,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2413,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=59365,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5996,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=59365,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=5788,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1334,
+ ["unit"]=0
+ }
+ },
+ [13349]={
+ ["next_chapter"]=13350,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7319,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2415,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=59959,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6056,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=59959,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=5788,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1334,
+ ["unit"]=0
+ }
+ },
+ [13350]={
+ ["next_chapter"]=13351,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=7325,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2417,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=60558,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6116,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=60558,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=6394,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1335,
+ ["unit"]=0
+ }
+ },
+ [13351]={
+ ["next_chapter"]=13352,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7330,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2419,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=61164,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6178,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=61164,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=6394,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1335,
+ ["unit"]=0
+ }
+ },
+ [13352]={
+ ["next_chapter"]=13353,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7336,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2421,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=61776,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6239,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=61776,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=6394,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1335,
+ ["unit"]=0
+ }
+ },
+ [13353]={
+ ["next_chapter"]=13354,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7342,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2423,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=62393,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6302,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=62393,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=6394,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1335,
+ ["unit"]=0
+ }
+ },
+ [13354]={
+ ["next_chapter"]=13355,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7347,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2425,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=63017,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6365,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=63017,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=6394,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1335,
+ ["unit"]=0
+ }
+ },
+ [13355]={
+ ["next_chapter"]=13356,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7353,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2426,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=63647,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6428,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=63647,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=6394,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1335,
+ ["unit"]=0
+ }
+ },
+ [13356]={
+ ["next_chapter"]=13357,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7359,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2428,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=64284,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6493,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=64284,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=6394,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1335,
+ ["unit"]=0
+ }
+ },
+ [13357]={
+ ["next_chapter"]=13358,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7364,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2430,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=64927,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6558,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=64927,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=6394,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1335,
+ ["unit"]=0
+ }
+ },
+ [13358]={
+ ["next_chapter"]=13359,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7370,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2432,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=65576,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6623,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=65576,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=6394,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1335,
+ ["unit"]=0
+ }
+ },
+ [13359]={
+ ["next_chapter"]=13360,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7376,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2434,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=66232,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6689,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=66232,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=6394,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1335,
+ ["unit"]=0
+ }
+ },
+ [13360]={
+ ["next_chapter"]=13361,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=7382,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2436,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=66894,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6756,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=66894,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=7063,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1336,
+ ["unit"]=0
+ }
+ },
+ [13361]={
+ ["next_chapter"]=13362,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7387,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2438,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=67563,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6824,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=67563,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=7063,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1336,
+ ["unit"]=0
+ }
+ },
+ [13362]={
+ ["next_chapter"]=13363,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7393,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2440,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=68239,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6892,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=68239,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=7063,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1336,
+ ["unit"]=0
+ }
+ },
+ [13363]={
+ ["next_chapter"]=13364,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7399,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2442,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=68921,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6961,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=68921,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=7063,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1336,
+ ["unit"]=0
+ }
+ },
+ [13364]={
+ ["next_chapter"]=13365,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7405,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2443,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=69610,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7031,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=69610,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=7063,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1336,
+ ["unit"]=0
+ }
+ },
+ [13365]={
+ ["next_chapter"]=13366,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7410,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2445,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=70306,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7101,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=70306,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=7063,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1336,
+ ["unit"]=0
+ }
+ },
+ [13366]={
+ ["next_chapter"]=13367,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7416,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2447,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=71009,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7172,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=71009,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=7063,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1336,
+ ["unit"]=0
+ }
+ },
+ [13367]={
+ ["next_chapter"]=13368,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7422,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2449,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=71720,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7244,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=71720,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=7063,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1336,
+ ["unit"]=0
+ }
+ },
+ [13368]={
+ ["next_chapter"]=13369,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7427,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2451,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=72437,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7316,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=72437,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=7063,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1336,
+ ["unit"]=0
+ }
+ },
+ [13369]={
+ ["next_chapter"]=13370,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7433,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2453,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=73161,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7389,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=73161,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=7063,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1336,
+ ["unit"]=0
+ }
+ },
+ [13370]={
+ ["next_chapter"]=13371,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=7439,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2455,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=73893,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7463,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=73893,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=7802,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1337,
+ ["unit"]=0
+ }
+ },
+ [13371]={
+ ["next_chapter"]=13372,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7445,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2457,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=74632,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7538,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=74632,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=7802,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1337,
+ ["unit"]=0
+ }
+ },
+ [13372]={
+ ["next_chapter"]=13373,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7450,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2459,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=75378,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7613,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=75378,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=7802,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1337,
+ ["unit"]=0
+ }
+ },
+ [13373]={
+ ["next_chapter"]=13374,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7456,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2461,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=76132,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7689,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=76132,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=7802,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1337,
+ ["unit"]=0
+ }
+ },
+ [13374]={
+ ["next_chapter"]=13375,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7462,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2462,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=76893,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7766,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=76893,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=7802,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1337,
+ ["unit"]=0
+ }
+ },
+ [13375]={
+ ["next_chapter"]=13376,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7468,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2464,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=77662,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7844,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=77662,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=7802,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1337,
+ ["unit"]=0
+ }
+ },
+ [13376]={
+ ["next_chapter"]=13377,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7474,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2466,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=78439,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7922,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=78439,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=7802,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1337,
+ ["unit"]=0
+ }
+ },
+ [13377]={
+ ["next_chapter"]=13378,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7479,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2468,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=79223,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8002,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=79223,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=7802,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1337,
+ ["unit"]=0
+ }
+ },
+ [13378]={
+ ["next_chapter"]=13379,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7485,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2470,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=80015,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8082,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=80015,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=7802,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1337,
+ ["unit"]=0
+ }
+ },
+ [13379]={
+ ["next_chapter"]=13380,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7491,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2472,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=80815,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8162,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=80815,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=7802,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1337,
+ ["unit"]=0
+ }
+ },
+ [13380]={
+ ["next_chapter"]=13381,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=7497,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2474,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=81624,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8244,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=81624,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=8618,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1338,
+ ["unit"]=0
+ }
+ },
+ [13381]={
+ ["next_chapter"]=13382,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7502,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2476,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=82440,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8326,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=82440,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=8618,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1338,
+ ["unit"]=0
+ }
+ },
+ [13382]={
+ ["next_chapter"]=13383,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7508,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2478,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=83264,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8410,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=83264,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=8618,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1338,
+ ["unit"]=0
+ }
+ },
+ [13383]={
+ ["next_chapter"]=13384,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7514,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2480,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=84097,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8494,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=84097,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=8618,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1338,
+ ["unit"]=0
+ }
+ },
+ [13384]={
+ ["next_chapter"]=13385,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7520,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2482,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=84938,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8579,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=84938,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=8618,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1338,
+ ["unit"]=0
+ }
+ },
+ [13385]={
+ ["next_chapter"]=13386,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7526,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2483,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=85787,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8665,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=85787,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=8618,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1338,
+ ["unit"]=0
+ }
+ },
+ [13386]={
+ ["next_chapter"]=13387,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7531,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2485,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=86645,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8751,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=86645,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=8618,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1338,
+ ["unit"]=0
+ }
+ },
+ [13387]={
+ ["next_chapter"]=13388,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7537,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2487,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=87512,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8839,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=87512,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=8618,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1338,
+ ["unit"]=0
+ }
+ },
+ [13388]={
+ ["next_chapter"]=13389,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7543,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2489,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=88387,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8927,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=88387,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=8618,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1338,
+ ["unit"]=0
+ }
+ },
+ [13389]={
+ ["next_chapter"]=13390,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7549,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2491,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=89270,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9016,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=89270,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=8618,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1338,
+ ["unit"]=0
+ }
+ },
+ [13390]={
+ ["next_chapter"]=13391,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=7555,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2493,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=90163,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9106,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=90163,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=9520,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1339,
+ ["unit"]=0
+ }
+ },
+ [13391]={
+ ["next_chapter"]=13392,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7560,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2495,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=91065,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9198,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=91065,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=9520,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1339,
+ ["unit"]=0
+ }
+ },
+ [13392]={
+ ["next_chapter"]=13393,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7566,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2497,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=91975,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9290,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=91975,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=9520,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1339,
+ ["unit"]=0
+ }
+ },
+ [13393]={
+ ["next_chapter"]=13394,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7572,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2499,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=92895,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9382,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=92895,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=9520,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1339,
+ ["unit"]=0
+ }
+ },
+ [13394]={
+ ["next_chapter"]=13395,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7578,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2501,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=93824,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9476,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=93824,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=9520,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1339,
+ ["unit"]=0
+ }
+ },
+ [13395]={
+ ["next_chapter"]=13396,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7584,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2503,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=94762,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9571,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=94762,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=9520,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1339,
+ ["unit"]=0
+ }
+ },
+ [13396]={
+ ["next_chapter"]=13397,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7589,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2505,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=95710,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9667,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=95710,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=9520,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1339,
+ ["unit"]=0
+ }
+ },
+ [13397]={
+ ["next_chapter"]=13398,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7595,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2506,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=96667,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9763,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=96667,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=9520,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1339,
+ ["unit"]=0
+ }
+ },
+ [13398]={
+ ["next_chapter"]=13399,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7601,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2508,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=97634,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9861,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=97634,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=9520,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1339,
+ ["unit"]=0
+ }
+ },
+ [13399]={
+ ["next_chapter"]=13400,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7607,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2510,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=98610,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9960,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=98610,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=9520,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1339,
+ ["unit"]=0
+ }
+ },
+ [13400]={
+ ["next_chapter"]=13401,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=7613,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2512,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=99596,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10059,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=99596,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=10516,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1340,
+ ["unit"]=0
+ }
+ },
+ [13401]={
+ ["next_chapter"]=13402,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7619,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2514,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=100592,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10160,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=100592,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=10516,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1340,
+ ["unit"]=0
+ }
+ },
+ [13402]={
+ ["next_chapter"]=13403,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7625,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2516,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=101598,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10261,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=101598,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=10516,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1340,
+ ["unit"]=0
+ }
+ },
+ [13403]={
+ ["next_chapter"]=13404,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7630,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2518,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=102614,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10364,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=102614,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=10516,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1340,
+ ["unit"]=0
+ }
+ },
+ [13404]={
+ ["next_chapter"]=13405,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7636,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2520,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=103640,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10468,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=103640,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=10516,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1340,
+ ["unit"]=0
+ }
+ },
+ [13405]={
+ ["next_chapter"]=13406,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7642,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2522,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=104677,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10572,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=104677,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=10516,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1340,
+ ["unit"]=0
+ }
+ },
+ [13406]={
+ ["next_chapter"]=13407,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7648,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2524,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=105723,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10678,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=105723,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=10516,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1340,
+ ["unit"]=0
+ }
+ },
+ [13407]={
+ ["next_chapter"]=13408,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7654,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2526,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=106781,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10785,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=106781,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=10516,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1340,
+ ["unit"]=0
+ }
+ },
+ [13408]={
+ ["next_chapter"]=13409,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7660,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2528,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=107848,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10893,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=107848,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=10516,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1340,
+ ["unit"]=0
+ }
+ },
+ [13409]={
+ ["next_chapter"]=13410,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7666,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2530,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=108927,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11002,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=108927,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=10516,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1340,
+ ["unit"]=0
+ }
+ },
+ [13410]={
+ ["next_chapter"]=13411,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=7671,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2532,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=110016,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11112,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=110016,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=11616,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1341,
+ ["unit"]=0
+ }
+ },
+ [13411]={
+ ["next_chapter"]=13412,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7677,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2533,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=111116,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11223,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=111116,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=11616,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1341,
+ ["unit"]=0
+ }
+ },
+ [13412]={
+ ["next_chapter"]=13413,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7683,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2535,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=112228,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11335,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=112228,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=11616,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1341,
+ ["unit"]=0
+ }
+ },
+ [13413]={
+ ["next_chapter"]=13414,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7689,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2537,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=113350,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11448,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=113350,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=11616,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1341,
+ ["unit"]=0
+ }
+ },
+ [13414]={
+ ["next_chapter"]=13415,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7695,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2539,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=114483,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11563,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=114483,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=11616,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1341,
+ ["unit"]=0
+ }
+ },
+ [13415]={
+ ["next_chapter"]=13416,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7701,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2541,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=115628,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11678,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=115628,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=11616,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1341,
+ ["unit"]=0
+ }
+ },
+ [13416]={
+ ["next_chapter"]=13417,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7707,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2543,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=116784,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11795,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=116784,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=11616,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1341,
+ ["unit"]=0
+ }
+ },
+ [13417]={
+ ["next_chapter"]=13418,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7713,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2545,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=117952,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11913,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=117952,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=11616,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1341,
+ ["unit"]=0
+ }
+ },
+ [13418]={
+ ["next_chapter"]=13419,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7718,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2547,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=119132,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12032,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=119132,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=11616,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1341,
+ ["unit"]=0
+ }
+ },
+ [13419]={
+ ["next_chapter"]=13420,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7724,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2549,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=120323,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12153,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=120323,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=11616,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1341,
+ ["unit"]=0
+ }
+ },
+ [13420]={
+ ["next_chapter"]=13421,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=7730,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2551,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=121526,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12274,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=121526,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=12831,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1342,
+ ["unit"]=0
+ }
+ },
+ [13421]={
+ ["next_chapter"]=13422,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7736,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2553,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=122742,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12397,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=122742,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=12831,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1342,
+ ["unit"]=0
+ }
+ },
+ [13422]={
+ ["next_chapter"]=13423,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7742,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2555,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=123969,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12521,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=123969,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=12831,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1342,
+ ["unit"]=0
+ }
+ },
+ [13423]={
+ ["next_chapter"]=13424,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7748,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2557,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=125209,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12646,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=125209,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=12831,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1342,
+ ["unit"]=0
+ }
+ },
+ [13424]={
+ ["next_chapter"]=13425,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7754,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2559,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=126461,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12773,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=126461,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=12831,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1342,
+ ["unit"]=0
+ }
+ },
+ [13425]={
+ ["next_chapter"]=13426,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7760,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2561,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=127725,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12900,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=127725,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=12831,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1342,
+ ["unit"]=0
+ }
+ },
+ [13426]={
+ ["next_chapter"]=13427,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7766,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2563,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=129003,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13029,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=129003,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=12831,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1342,
+ ["unit"]=0
+ }
+ },
+ [13427]={
+ ["next_chapter"]=13428,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7772,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2565,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=130293,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13160,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=130293,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=12831,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1342,
+ ["unit"]=0
+ }
+ },
+ [13428]={
+ ["next_chapter"]=13429,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7778,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2567,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=131596,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13291,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=131596,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=12831,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1342,
+ ["unit"]=0
+ }
+ },
+ [13429]={
+ ["next_chapter"]=13430,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7783,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2569,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=132912,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13424,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=132912,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=12831,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1342,
+ ["unit"]=0
+ }
+ },
+ [13430]={
+ ["next_chapter"]=13431,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=7789,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2571,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=134241,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13558,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=134241,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=14173,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1343,
+ ["unit"]=0
+ }
+ },
+ [13431]={
+ ["next_chapter"]=13432,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7795,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2572,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=135583,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13694,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=135583,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=14173,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1343,
+ ["unit"]=0
+ }
+ },
+ [13432]={
+ ["next_chapter"]=13433,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7801,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2574,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=136939,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13831,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=136939,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=14173,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1343,
+ ["unit"]=0
+ }
+ },
+ [13433]={
+ ["next_chapter"]=13434,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7807,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2576,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=138308,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13969,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=138308,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=14173,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1343,
+ ["unit"]=0
+ }
+ },
+ [13434]={
+ ["next_chapter"]=13435,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7813,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2578,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=139691,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14109,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=139691,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=14173,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1343,
+ ["unit"]=0
+ }
+ },
+ [13435]={
+ ["next_chapter"]=13436,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7819,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2580,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=141088,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14250,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=141088,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=14173,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1343,
+ ["unit"]=0
+ }
+ },
+ [13436]={
+ ["next_chapter"]=13437,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7825,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2582,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=142499,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14392,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=142499,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=14173,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1343,
+ ["unit"]=0
+ }
+ },
+ [13437]={
+ ["next_chapter"]=13438,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7831,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2584,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=143924,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14536,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=143924,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=14173,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1343,
+ ["unit"]=0
+ }
+ },
+ [13438]={
+ ["next_chapter"]=13439,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7837,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2586,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=145363,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14682,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=145363,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=14173,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1343,
+ ["unit"]=0
+ }
+ },
+ [13439]={
+ ["next_chapter"]=13440,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7843,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2588,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=146817,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14829,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=146817,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=14173,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1343,
+ ["unit"]=0
+ }
+ },
+ [13440]={
+ ["next_chapter"]=13441,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=7849,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2590,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=148285,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14977,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=148285,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=15656,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1344,
+ ["unit"]=0
+ }
+ },
+ [13441]={
+ ["next_chapter"]=13442,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7855,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2592,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=149768,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15127,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=149768,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=15656,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1344,
+ ["unit"]=0
+ }
+ },
+ [13442]={
+ ["next_chapter"]=13443,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7861,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2594,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=151266,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15278,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=151266,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=15656,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1344,
+ ["unit"]=0
+ }
+ },
+ [13443]={
+ ["next_chapter"]=13444,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7867,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2596,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=152778,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15431,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=152778,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=15656,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1344,
+ ["unit"]=0
+ }
+ },
+ [13444]={
+ ["next_chapter"]=13445,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7873,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2598,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=154306,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15585,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=154306,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=15656,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1344,
+ ["unit"]=0
+ }
+ },
+ [13445]={
+ ["next_chapter"]=13446,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7879,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2600,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=155849,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15741,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=155849,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=15656,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1344,
+ ["unit"]=0
+ }
+ },
+ [13446]={
+ ["next_chapter"]=13447,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7885,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2602,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=157408,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15898,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=157408,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=15656,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1344,
+ ["unit"]=0
+ }
+ },
+ [13447]={
+ ["next_chapter"]=13448,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7891,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2604,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=158982,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16057,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=158982,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=15656,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1344,
+ ["unit"]=0
+ }
+ },
+ [13448]={
+ ["next_chapter"]=13449,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7897,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2606,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=160572,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16218,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=160572,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=15656,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1344,
+ ["unit"]=0
+ }
+ },
+ [13449]={
+ ["next_chapter"]=13450,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7903,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2608,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=162177,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16380,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=162177,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=15656,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1344,
+ ["unit"]=0
+ }
+ },
+ [13450]={
+ ["next_chapter"]=13451,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=7909,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2610,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=163799,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16544,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=163799,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=17294,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1345,
+ ["unit"]=0
+ }
+ },
+ [13451]={
+ ["next_chapter"]=13452,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7915,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2612,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=165437,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16709,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=165437,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=17294,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1345,
+ ["unit"]=0
+ }
+ },
+ [13452]={
+ ["next_chapter"]=13453,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7921,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2614,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=167092,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16876,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=167092,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=17294,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1345,
+ ["unit"]=0
+ }
+ },
+ [13453]={
+ ["next_chapter"]=13454,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7927,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2616,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=168762,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17045,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=168762,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=17294,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1345,
+ ["unit"]=0
+ }
+ },
+ [13454]={
+ ["next_chapter"]=13455,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7933,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2618,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=170450,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17215,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=170450,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=17294,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1345,
+ ["unit"]=0
+ }
+ },
+ [13455]={
+ ["next_chapter"]=13456,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7939,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2620,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=172155,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17388,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=172155,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=17294,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1345,
+ ["unit"]=0
+ }
+ },
+ [13456]={
+ ["next_chapter"]=13457,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7945,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2622,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=173876,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17561,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=173876,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=17294,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1345,
+ ["unit"]=0
+ }
+ },
+ [13457]={
+ ["next_chapter"]=13458,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7951,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2624,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=175615,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17737,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=175615,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=17294,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1345,
+ ["unit"]=0
+ }
+ },
+ [13458]={
+ ["next_chapter"]=13459,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7957,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2626,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=177371,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17914,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=177371,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=17294,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1345,
+ ["unit"]=0
+ }
+ },
+ [13459]={
+ ["next_chapter"]=13460,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7963,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2628,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=179145,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18094,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=179145,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=17294,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1345,
+ ["unit"]=0
+ }
+ },
+ [13460]={
+ ["next_chapter"]=13461,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=7969,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2630,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=180936,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18275,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=180936,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=19104,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1346,
+ ["unit"]=0
+ }
+ },
+ [13461]={
+ ["next_chapter"]=13462,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7975,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2632,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=182746,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18457,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=182746,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=19104,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1346,
+ ["unit"]=0
+ }
+ },
+ [13462]={
+ ["next_chapter"]=13463,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7981,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2634,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=184573,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18642,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=184573,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=19104,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1346,
+ ["unit"]=0
+ }
+ },
+ [13463]={
+ ["next_chapter"]=13464,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7987,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2636,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=186419,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18828,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=186419,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=19104,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1346,
+ ["unit"]=0
+ }
+ },
+ [13464]={
+ ["next_chapter"]=13465,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7993,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2638,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=188283,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19017,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=188283,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=19104,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1346,
+ ["unit"]=0
+ }
+ },
+ [13465]={
+ ["next_chapter"]=13466,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=7999,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2640,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=190166,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19207,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=190166,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=19104,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1346,
+ ["unit"]=0
+ }
+ },
+ [13466]={
+ ["next_chapter"]=13467,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8005,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2642,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=192067,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19399,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=192067,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=19104,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1346,
+ ["unit"]=0
+ }
+ },
+ [13467]={
+ ["next_chapter"]=13468,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8011,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2644,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=193988,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19593,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=193988,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=19104,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1346,
+ ["unit"]=0
+ }
+ },
+ [13468]={
+ ["next_chapter"]=13469,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8017,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2646,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=195928,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19789,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=195928,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=19104,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1346,
+ ["unit"]=0
+ }
+ },
+ [13469]={
+ ["next_chapter"]=13470,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8023,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2648,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=197887,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19987,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=197887,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=19104,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1346,
+ ["unit"]=0
+ }
+ },
+ [13470]={
+ ["next_chapter"]=13471,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=8029,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2650,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=199866,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20186,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=199866,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=21102,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1347,
+ ["unit"]=0
+ }
+ },
+ [13471]={
+ ["next_chapter"]=13472,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8035,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2652,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=201865,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20388,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=201865,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=21102,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1347,
+ ["unit"]=0
+ }
+ },
+ [13472]={
+ ["next_chapter"]=13473,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8041,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2654,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=203883,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20592,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=203883,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=21102,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1347,
+ ["unit"]=0
+ }
+ },
+ [13473]={
+ ["next_chapter"]=13474,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8047,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2656,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=205922,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20798,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=205922,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=21102,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1347,
+ ["unit"]=0
+ }
+ },
+ [13474]={
+ ["next_chapter"]=13475,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8053,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2658,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=207982,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21006,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=207982,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=21102,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1347,
+ ["unit"]=0
+ }
+ },
+ [13475]={
+ ["next_chapter"]=13476,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8059,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2660,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=210061,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21216,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=210061,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=21102,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1347,
+ ["unit"]=0
+ }
+ },
+ [13476]={
+ ["next_chapter"]=13477,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8065,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2662,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=212162,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21428,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=212162,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=21102,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1347,
+ ["unit"]=0
+ }
+ },
+ [13477]={
+ ["next_chapter"]=13478,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8071,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2664,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=214284,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21643,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=214284,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=21102,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1347,
+ ["unit"]=0
+ }
+ },
+ [13478]={
+ ["next_chapter"]=13479,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8078,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2666,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=216426,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21859,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=216426,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=21102,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1347,
+ ["unit"]=0
+ }
+ },
+ [13479]={
+ ["next_chapter"]=13480,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8084,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2668,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=218591,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22078,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=218591,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=21102,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1347,
+ ["unit"]=0
+ }
+ },
+ [13480]={
+ ["next_chapter"]=13481,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=8090,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2670,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=220777,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22298,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=220777,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=23310,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1348,
+ ["unit"]=0
+ }
+ },
+ [13481]={
+ ["next_chapter"]=13482,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8096,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2672,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=222984,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22521,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=222984,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=23310,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1348,
+ ["unit"]=0
+ }
+ },
+ [13482]={
+ ["next_chapter"]=13483,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8102,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2674,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=225214,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22747,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=225214,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=23310,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1348,
+ ["unit"]=0
+ }
+ },
+ [13483]={
+ ["next_chapter"]=13484,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8108,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2676,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=227466,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22974,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=227466,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=23310,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1348,
+ ["unit"]=0
+ }
+ },
+ [13484]={
+ ["next_chapter"]=13485,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8114,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2678,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=229741,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23204,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=229741,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=23310,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1348,
+ ["unit"]=0
+ }
+ },
+ [13485]={
+ ["next_chapter"]=13486,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8120,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2680,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=232038,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23436,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=232038,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=23310,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1348,
+ ["unit"]=0
+ }
+ },
+ [13486]={
+ ["next_chapter"]=13487,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8126,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2682,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=234359,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23670,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=234359,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=23310,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1348,
+ ["unit"]=0
+ }
+ },
+ [13487]={
+ ["next_chapter"]=13488,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8132,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2684,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=236702,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23907,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=236702,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=23310,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1348,
+ ["unit"]=0
+ }
+ },
+ [13488]={
+ ["next_chapter"]=13489,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8138,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2686,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=239069,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24146,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=239069,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=23310,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1348,
+ ["unit"]=0
+ }
+ },
+ [13489]={
+ ["next_chapter"]=13490,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8145,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2688,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=241460,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24387,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=241460,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=23310,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1348,
+ ["unit"]=0
+ }
+ },
+ [13490]={
+ ["next_chapter"]=13491,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=8151,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2690,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=243875,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24631,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=243875,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=25749,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1349,
+ ["unit"]=0
+ }
+ },
+ [13491]={
+ ["next_chapter"]=13492,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8157,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2692,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=246313,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24878,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=246313,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=25749,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1349,
+ ["unit"]=0
+ }
+ },
+ [13492]={
+ ["next_chapter"]=13493,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8163,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2694,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=248777,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25126,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=248777,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=25749,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1349,
+ ["unit"]=0
+ }
+ },
+ [13493]={
+ ["next_chapter"]=13494,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8169,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2696,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=251264,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25378,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=251264,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=25749,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1349,
+ ["unit"]=0
+ }
+ },
+ [13494]={
+ ["next_chapter"]=13495,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8175,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2698,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=253777,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25631,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=253777,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=25749,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1349,
+ ["unit"]=0
+ }
+ },
+ [13495]={
+ ["next_chapter"]=13496,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8181,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2700,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=256315,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25888,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=256315,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=25749,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1349,
+ ["unit"]=0
+ }
+ },
+ [13496]={
+ ["next_chapter"]=13497,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8187,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2702,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=258878,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26147,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=258878,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=25749,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1349,
+ ["unit"]=0
+ }
+ },
+ [13497]={
+ ["next_chapter"]=13498,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8194,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2704,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=261467,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26408,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=261467,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=25749,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1349,
+ ["unit"]=0
+ }
+ },
+ [13498]={
+ ["next_chapter"]=13499,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8200,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2706,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=264081,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26672,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=264081,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=25749,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1349,
+ ["unit"]=0
+ }
+ },
+ [13499]={
+ ["next_chapter"]=13500,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8206,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2708,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=266722,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26939,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=266722,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=25749,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1349,
+ ["unit"]=0
+ }
+ },
+ [13500]={
+ ["next_chapter"]=13501,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=8212,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2710,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=269389,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27208,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=269389,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=28443,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1350,
+ ["unit"]=0
+ }
+ },
+ [13501]={
+ ["next_chapter"]=13502,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8218,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2712,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=272083,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27480,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=272083,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=28443,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1350,
+ ["unit"]=0
+ }
+ },
+ [13502]={
+ ["next_chapter"]=13503,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8224,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2714,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=274804,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27755,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=274804,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=28443,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1350,
+ ["unit"]=0
+ }
+ },
+ [13503]={
+ ["next_chapter"]=13504,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8230,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2716,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=277552,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28033,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=277552,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=28443,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1350,
+ ["unit"]=0
+ }
+ },
+ [13504]={
+ ["next_chapter"]=13505,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8237,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2718,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=280328,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28313,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=280328,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=28443,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1350,
+ ["unit"]=0
+ }
+ },
+ [13505]={
+ ["next_chapter"]=13506,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8243,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2720,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=283131,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28596,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=283131,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=28443,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1350,
+ ["unit"]=0
+ }
+ },
+ [13506]={
+ ["next_chapter"]=13507,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8249,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2722,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=285962,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28882,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=285962,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=28443,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1350,
+ ["unit"]=0
+ }
+ },
+ [13507]={
+ ["next_chapter"]=13508,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8255,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2724,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=288822,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29171,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=288822,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=28443,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1350,
+ ["unit"]=0
+ }
+ },
+ [13508]={
+ ["next_chapter"]=13509,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8261,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2726,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=291710,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29463,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=291710,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=28443,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1350,
+ ["unit"]=0
+ }
+ },
+ [13509]={
+ ["next_chapter"]=13510,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8267,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2728,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=294627,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29757,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=294627,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=28443,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1350,
+ ["unit"]=0
+ }
+ },
+ [13510]={
+ ["next_chapter"]=13511,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=8274,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2730,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=297573,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30055,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=297573,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=31418,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1351,
+ ["unit"]=0
+ }
+ },
+ [13511]={
+ ["next_chapter"]=13512,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8280,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2732,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=300549,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30355,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=300549,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=31418,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1351,
+ ["unit"]=0
+ }
+ },
+ [13512]={
+ ["next_chapter"]=13513,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8286,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2734,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=303555,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30659,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=303555,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=31418,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1351,
+ ["unit"]=0
+ }
+ },
+ [13513]={
+ ["next_chapter"]=13514,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8292,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2736,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=306590,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30966,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=306590,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=31418,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1351,
+ ["unit"]=0
+ }
+ },
+ [13514]={
+ ["next_chapter"]=13515,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8298,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2738,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=309656,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31275,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=309656,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=31418,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1351,
+ ["unit"]=0
+ }
+ },
+ [13515]={
+ ["next_chapter"]=13516,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8305,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2740,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=312753,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31588,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=312753,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=31418,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1351,
+ ["unit"]=0
+ }
+ },
+ [13516]={
+ ["next_chapter"]=13517,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8311,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2743,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=315880,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31904,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=315880,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=31418,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1351,
+ ["unit"]=0
+ }
+ },
+ [13517]={
+ ["next_chapter"]=13518,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8317,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2745,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=319039,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32223,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=319039,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=31418,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1351,
+ ["unit"]=0
+ }
+ },
+ [13518]={
+ ["next_chapter"]=13519,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8323,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2747,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=322229,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32545,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=322229,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=31418,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1351,
+ ["unit"]=0
+ }
+ },
+ [13519]={
+ ["next_chapter"]=13520,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8329,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2749,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=325452,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32871,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=325452,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=31418,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1351,
+ ["unit"]=0
+ }
+ },
+ [13520]={
+ ["next_chapter"]=13521,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=8335,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2751,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=328706,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33199,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=328706,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=34705,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1352,
+ ["unit"]=0
+ }
+ },
+ [13521]={
+ ["next_chapter"]=13522,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8342,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2753,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=331993,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33531,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=331993,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=34705,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1352,
+ ["unit"]=0
+ }
+ },
+ [13522]={
+ ["next_chapter"]=13523,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8348,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2755,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=335313,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33867,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=335313,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=34705,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1352,
+ ["unit"]=0
+ }
+ },
+ [13523]={
+ ["next_chapter"]=13524,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8354,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2757,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=338666,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34205,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=338666,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=34705,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1352,
+ ["unit"]=0
+ }
+ },
+ [13524]={
+ ["next_chapter"]=13525,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8360,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2759,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=342053,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34547,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=342053,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=34705,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1352,
+ ["unit"]=0
+ }
+ },
+ [13525]={
+ ["next_chapter"]=13526,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8367,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2761,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=345474,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34893,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=345474,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=34705,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1352,
+ ["unit"]=0
+ }
+ },
+ [13526]={
+ ["next_chapter"]=13527,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8373,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2763,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=348928,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35242,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=348928,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=34705,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1352,
+ ["unit"]=0
+ }
+ },
+ [13527]={
+ ["next_chapter"]=13528,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8379,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2765,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=352418,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35594,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=352418,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=34705,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1352,
+ ["unit"]=0
+ }
+ },
+ [13528]={
+ ["next_chapter"]=13529,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8385,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2767,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=355942,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35950,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=355942,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=34705,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1352,
+ ["unit"]=0
+ }
+ },
+ [13529]={
+ ["next_chapter"]=13530,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8391,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2769,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=359501,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36310,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=359501,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=34705,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1352,
+ ["unit"]=0
+ }
+ },
+ [13530]={
+ ["next_chapter"]=13531,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=8398,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2771,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=363096,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36673,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=363096,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=38336,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1353,
+ ["unit"]=0
+ }
+ },
+ [13531]={
+ ["next_chapter"]=13532,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8404,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2773,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=366727,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37039,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=366727,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=38336,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1353,
+ ["unit"]=0
+ }
+ },
+ [13532]={
+ ["next_chapter"]=13533,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8410,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2775,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=370394,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37410,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=370394,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=38336,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1353,
+ ["unit"]=0
+ }
+ },
+ [13533]={
+ ["next_chapter"]=13534,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8416,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2777,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=374098,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37784,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=374098,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=38336,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1353,
+ ["unit"]=0
+ }
+ },
+ [13534]={
+ ["next_chapter"]=13535,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8423,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2779,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=377839,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=38162,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=377839,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=38336,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1353,
+ ["unit"]=0
+ }
+ },
+ [13535]={
+ ["next_chapter"]=13536,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8429,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2782,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=381618,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=38543,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=381618,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=38336,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1353,
+ ["unit"]=0
+ }
+ },
+ [13536]={
+ ["next_chapter"]=13537,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8435,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2784,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=385434,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=38929,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=385434,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=38336,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1353,
+ ["unit"]=0
+ }
+ },
+ [13537]={
+ ["next_chapter"]=13538,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8441,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2786,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=389288,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39318,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=389288,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=38336,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1353,
+ ["unit"]=0
+ }
+ },
+ [13538]={
+ ["next_chapter"]=13539,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8448,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2788,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=393181,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39711,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=393181,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=38336,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1353,
+ ["unit"]=0
+ }
+ },
+ [13539]={
+ ["next_chapter"]=13540,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8454,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2790,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=397113,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=40108,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=397113,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=38336,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1353,
+ ["unit"]=0
+ }
+ },
+ [13540]={
+ ["next_chapter"]=13541,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=8460,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2792,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=401084,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=40509,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=401084,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=42347,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1354,
+ ["unit"]=0
+ }
+ },
+ [13541]={
+ ["next_chapter"]=13542,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8466,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2794,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=405095,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=40915,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=405095,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=42347,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1354,
+ ["unit"]=0
+ }
+ },
+ [13542]={
+ ["next_chapter"]=13543,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8473,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2796,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=409146,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41324,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=409146,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=42347,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1354,
+ ["unit"]=0
+ }
+ },
+ [13543]={
+ ["next_chapter"]=13544,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8479,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2798,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=413237,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41737,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=413237,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=42347,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1354,
+ ["unit"]=0
+ }
+ },
+ [13544]={
+ ["next_chapter"]=13545,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8485,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2800,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=417370,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=42154,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=417370,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=42347,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1354,
+ ["unit"]=0
+ }
+ },
+ [13545]={
+ ["next_chapter"]=13546,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8492,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2802,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=421543,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=42576,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=421543,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=42347,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1354,
+ ["unit"]=0
+ }
+ },
+ [13546]={
+ ["next_chapter"]=13547,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8498,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2804,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=425759,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=43002,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=425759,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=42347,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1354,
+ ["unit"]=0
+ }
+ },
+ [13547]={
+ ["next_chapter"]=13548,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8504,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2806,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=430016,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=43432,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=430016,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=42347,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1354,
+ ["unit"]=0
+ }
+ },
+ [13548]={
+ ["next_chapter"]=13549,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8510,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2808,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=434317,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=43866,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=434317,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=42347,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1354,
+ ["unit"]=0
+ }
+ },
+ [13549]={
+ ["next_chapter"]=13550,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8517,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2811,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=438660,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=44305,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=438660,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=42347,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1354,
+ ["unit"]=0
+ }
+ },
+ [13550]={
+ ["next_chapter"]=13551,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=8523,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2813,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=443046,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=44748,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=443046,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=46778,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1355,
+ ["unit"]=0
+ }
+ },
+ [13551]={
+ ["next_chapter"]=13552,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8529,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2815,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=447477,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=45195,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=447477,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=46778,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1355,
+ ["unit"]=0
+ }
+ },
+ [13552]={
+ ["next_chapter"]=13553,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8536,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2817,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=451952,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=45647,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=451952,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=46778,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1355,
+ ["unit"]=0
+ }
+ },
+ [13553]={
+ ["next_chapter"]=13554,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8542,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2819,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=456471,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=46104,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=456471,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=46778,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1355,
+ ["unit"]=0
+ }
+ },
+ [13554]={
+ ["next_chapter"]=13555,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8548,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2821,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=461036,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=46565,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=461036,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=46778,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1355,
+ ["unit"]=0
+ }
+ },
+ [13555]={
+ ["next_chapter"]=13556,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8555,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2823,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=465646,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=47030,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=465646,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=46778,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1355,
+ ["unit"]=0
+ }
+ },
+ [13556]={
+ ["next_chapter"]=13557,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8561,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2825,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=470303,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=47501,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=470303,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=46778,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1355,
+ ["unit"]=0
+ }
+ },
+ [13557]={
+ ["next_chapter"]=13558,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8567,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2827,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=475006,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=47976,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=475006,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=46778,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1355,
+ ["unit"]=0
+ }
+ },
+ [13558]={
+ ["next_chapter"]=13559,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8574,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2829,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=479756,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=48455,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=479756,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=46778,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1355,
+ ["unit"]=0
+ }
+ },
+ [13559]={
+ ["next_chapter"]=13560,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8580,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2831,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=484553,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=48940,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=484553,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=46778,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1355,
+ ["unit"]=0
+ }
+ },
+ [13560]={
+ ["next_chapter"]=13561,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=8586,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2833,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=489399,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=49429,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=489399,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=51672,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1356,
+ ["unit"]=0
+ }
+ },
+ [13561]={
+ ["next_chapter"]=13562,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8593,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2836,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=494293,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=49924,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=494293,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=51672,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1356,
+ ["unit"]=0
+ }
+ },
+ [13562]={
+ ["next_chapter"]=13563,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8599,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2838,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=499236,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=50423,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=499236,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=51672,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1356,
+ ["unit"]=0
+ }
+ },
+ [13563]={
+ ["next_chapter"]=13564,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8605,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2840,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=504228,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=50927,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=504228,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=51672,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1356,
+ ["unit"]=0
+ }
+ },
+ [13564]={
+ ["next_chapter"]=13565,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8612,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2842,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=509270,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=51436,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=509270,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=51672,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1356,
+ ["unit"]=0
+ }
+ },
+ [13565]={
+ ["next_chapter"]=13566,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8618,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2844,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=514363,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=51951,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=514363,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=51672,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1356,
+ ["unit"]=0
+ }
+ },
+ [13566]={
+ ["next_chapter"]=13567,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8624,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2846,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=519507,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=52470,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=519507,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=51672,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1356,
+ ["unit"]=0
+ }
+ },
+ [13567]={
+ ["next_chapter"]=13568,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8631,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2848,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=524702,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=52995,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=524702,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=51672,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1356,
+ ["unit"]=0
+ }
+ },
+ [13568]={
+ ["next_chapter"]=13569,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8637,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2850,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=529949,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=53525,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=529949,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=51672,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1356,
+ ["unit"]=0
+ }
+ },
+ [13569]={
+ ["next_chapter"]=13570,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8643,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2852,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=535248,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=54060,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=535248,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=51672,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1356,
+ ["unit"]=0
+ }
+ },
+ [13570]={
+ ["next_chapter"]=13571,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=8650,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2854,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=540601,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=54601,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=540601,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=57078,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1357,
+ ["unit"]=0
+ }
+ },
+ [13571]={
+ ["next_chapter"]=13572,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8656,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2856,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=546007,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=55147,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=546007,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=57078,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1357,
+ ["unit"]=0
+ }
+ },
+ [13572]={
+ ["next_chapter"]=13573,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8662,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2859,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=551467,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=55698,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=551467,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=57078,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1357,
+ ["unit"]=0
+ }
+ },
+ [13573]={
+ ["next_chapter"]=13574,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8669,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2861,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=556981,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=56255,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=556981,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=57078,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1357,
+ ["unit"]=0
+ }
+ },
+ [13574]={
+ ["next_chapter"]=13575,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8675,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2863,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=562551,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=56818,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=562551,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=57078,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1357,
+ ["unit"]=0
+ }
+ },
+ [13575]={
+ ["next_chapter"]=13576,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8681,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2865,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=568177,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=57386,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=568177,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=57078,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1357,
+ ["unit"]=0
+ }
+ },
+ [13576]={
+ ["next_chapter"]=13577,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8688,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2867,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=573859,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=57960,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=573859,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=57078,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1357,
+ ["unit"]=0
+ }
+ },
+ [13577]={
+ ["next_chapter"]=13578,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8694,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2869,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=579597,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=58539,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=579597,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=57078,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1357,
+ ["unit"]=0
+ }
+ },
+ [13578]={
+ ["next_chapter"]=13579,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8701,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2871,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=585393,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=59125,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=585393,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=57078,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1357,
+ ["unit"]=0
+ }
+ },
+ [13579]={
+ ["next_chapter"]=13580,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8707,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2873,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=591247,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=59716,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=591247,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=57078,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1357,
+ ["unit"]=0
+ }
+ },
+ [13580]={
+ ["next_chapter"]=13581,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=8713,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2875,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=597160,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=60313,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=597160,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=63049,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1358,
+ ["unit"]=0
+ }
+ },
+ [13581]={
+ ["next_chapter"]=13582,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8720,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2878,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=603131,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=60916,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=603131,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=63049,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1358,
+ ["unit"]=0
+ }
+ },
+ [13582]={
+ ["next_chapter"]=13583,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8726,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2880,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=609162,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=61525,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=609162,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=63049,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1358,
+ ["unit"]=0
+ }
+ },
+ [13583]={
+ ["next_chapter"]=13584,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8733,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2882,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=615254,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=62141,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=615254,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=63049,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1358,
+ ["unit"]=0
+ }
+ },
+ [13584]={
+ ["next_chapter"]=13585,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8739,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2884,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=621407,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=62762,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=621407,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=63049,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1358,
+ ["unit"]=0
+ }
+ },
+ [13585]={
+ ["next_chapter"]=13586,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8745,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2886,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=627621,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=63390,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=627621,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=63049,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1358,
+ ["unit"]=0
+ }
+ },
+ [13586]={
+ ["next_chapter"]=13587,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8752,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2888,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=633897,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=64024,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=633897,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=63049,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1358,
+ ["unit"]=0
+ }
+ },
+ [13587]={
+ ["next_chapter"]=13588,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8758,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2890,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=640236,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=64664,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=640236,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=63049,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1358,
+ ["unit"]=0
+ }
+ },
+ [13588]={
+ ["next_chapter"]=13589,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8765,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2892,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=646638,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=65310,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=646638,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=63049,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1358,
+ ["unit"]=0
+ }
+ },
+ [13589]={
+ ["next_chapter"]=13590,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8771,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2894,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=653105,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=65964,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=653105,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=63049,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1358,
+ ["unit"]=0
+ }
+ },
+ [13590]={
+ ["next_chapter"]=13591,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=8777,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2897,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=659636,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=66623,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=659636,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=69646,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1359,
+ ["unit"]=0
+ }
+ },
+ [13591]={
+ ["next_chapter"]=13592,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8784,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2899,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=666232,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=67289,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=666232,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=69646,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1359,
+ ["unit"]=0
+ }
+ },
+ [13592]={
+ ["next_chapter"]=13593,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8790,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2901,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=672894,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=67962,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=672894,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=69646,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1359,
+ ["unit"]=0
+ }
+ },
+ [13593]={
+ ["next_chapter"]=13594,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8797,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2903,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=679623,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=68642,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=679623,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=69646,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1359,
+ ["unit"]=0
+ }
+ },
+ [13594]={
+ ["next_chapter"]=13595,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8803,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2905,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=686419,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=69328,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=686419,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=69646,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1359,
+ ["unit"]=0
+ }
+ },
+ [13595]={
+ ["next_chapter"]=13596,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8810,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2907,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=693284,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=70022,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=693284,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=69646,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1359,
+ ["unit"]=0
+ }
+ },
+ [13596]={
+ ["next_chapter"]=13597,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8816,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2909,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=700216,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=70722,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=700216,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=69646,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1359,
+ ["unit"]=0
+ }
+ },
+ [13597]={
+ ["next_chapter"]=13598,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8823,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2911,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=707219,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=71429,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=707219,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=69646,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1359,
+ ["unit"]=0
+ }
+ },
+ [13598]={
+ ["next_chapter"]=13599,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8829,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2914,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=714291,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=72143,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=714291,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=69646,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1359,
+ ["unit"]=0
+ }
+ },
+ [13599]={
+ ["next_chapter"]=13600,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8835,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2916,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=721434,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=72865,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=721434,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=69646,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1359,
+ ["unit"]=0
+ }
+ },
+ [13600]={
+ ["next_chapter"]=13601,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=8842,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2918,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=728648,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=73593,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=728648,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=76932,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1360,
+ ["unit"]=0
+ }
+ },
+ [13601]={
+ ["next_chapter"]=13602,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8848,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2920,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=735935,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=74329,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=735935,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=76932,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1360,
+ ["unit"]=0
+ }
+ },
+ [13602]={
+ ["next_chapter"]=13603,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8855,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2922,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=743294,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=75073,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=743294,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=76932,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1360,
+ ["unit"]=0
+ }
+ },
+ [13603]={
+ ["next_chapter"]=13604,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8861,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2924,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=750727,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=75823,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=750727,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=76932,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1360,
+ ["unit"]=0
+ }
+ },
+ [13604]={
+ ["next_chapter"]=13605,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8868,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2926,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=758234,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=76582,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=758234,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=76932,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1360,
+ ["unit"]=0
+ }
+ },
+ [13605]={
+ ["next_chapter"]=13606,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8874,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2928,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=765816,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=77347,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=765816,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=76932,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1360,
+ ["unit"]=0
+ }
+ },
+ [13606]={
+ ["next_chapter"]=13607,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8881,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2931,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=773475,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=78121,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=773475,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=76932,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1360,
+ ["unit"]=0
+ }
+ },
+ [13607]={
+ ["next_chapter"]=13608,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8887,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2933,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=781209,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=78902,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=781209,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=76932,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1360,
+ ["unit"]=0
+ }
+ },
+ [13608]={
+ ["next_chapter"]=13609,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8894,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2935,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=789021,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=79691,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=789021,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=76932,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1360,
+ ["unit"]=0
+ }
+ },
+ [13609]={
+ ["next_chapter"]=13610,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8900,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2937,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=796912,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=80488,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=796912,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=76932,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1360,
+ ["unit"]=0
+ }
+ },
+ [13610]={
+ ["next_chapter"]=13611,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=8907,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2939,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=804881,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=81293,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=804881,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=84981,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1361,
+ ["unit"]=0
+ }
+ },
+ [13611]={
+ ["next_chapter"]=13612,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8913,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2941,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=812930,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=82106,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=812930,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=84981,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1361,
+ ["unit"]=0
+ }
+ },
+ [13612]={
+ ["next_chapter"]=13613,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8920,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2943,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=821059,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=82927,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=821059,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=84981,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1361,
+ ["unit"]=0
+ }
+ },
+ [13613]={
+ ["next_chapter"]=13614,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8926,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2946,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=829269,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=83756,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=829269,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=84981,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1361,
+ ["unit"]=0
+ }
+ },
+ [13614]={
+ ["next_chapter"]=13615,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8933,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2948,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=837562,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=84594,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=837562,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=84981,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1361,
+ ["unit"]=0
+ }
+ },
+ [13615]={
+ ["next_chapter"]=13616,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8939,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2950,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=845938,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=85440,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=845938,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=84981,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1361,
+ ["unit"]=0
+ }
+ },
+ [13616]={
+ ["next_chapter"]=13617,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8946,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2952,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=854397,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=86294,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=854397,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=84981,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1361,
+ ["unit"]=0
+ }
+ },
+ [13617]={
+ ["next_chapter"]=13618,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8952,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2954,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=862941,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=87157,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=862941,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=84981,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1361,
+ ["unit"]=0
+ }
+ },
+ [13618]={
+ ["next_chapter"]=13619,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8959,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2956,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=871571,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=88029,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=871571,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=84981,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1361,
+ ["unit"]=0
+ }
+ },
+ [13619]={
+ ["next_chapter"]=13620,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8965,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2958,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=880286,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=88909,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=880286,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=84981,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1361,
+ ["unit"]=0
+ }
+ },
+ [13620]={
+ ["next_chapter"]=13621,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=8972,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2961,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=889089,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=89798,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=889089,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=93872,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1362,
+ ["unit"]=0
+ }
+ },
+ [13621]={
+ ["next_chapter"]=13622,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8978,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2963,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=897980,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=90696,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=897980,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=93872,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1362,
+ ["unit"]=0
+ }
+ },
+ [13622]={
+ ["next_chapter"]=13623,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8985,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2965,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=906960,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=91603,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=906960,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=93872,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1362,
+ ["unit"]=0
+ }
+ },
+ [13623]={
+ ["next_chapter"]=13624,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8991,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2967,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=916029,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=92519,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=916029,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=93872,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1362,
+ ["unit"]=0
+ }
+ },
+ [13624]={
+ ["next_chapter"]=13625,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=8998,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2969,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=925190,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=93444,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=925190,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=93872,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1362,
+ ["unit"]=0
+ }
+ },
+ [13625]={
+ ["next_chapter"]=13626,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9004,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2971,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=934442,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=94379,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=934442,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=93872,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1362,
+ ["unit"]=0
+ }
+ },
+ [13626]={
+ ["next_chapter"]=13627,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9011,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2974,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=943786,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=95322,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=943786,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=93872,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1362,
+ ["unit"]=0
+ }
+ },
+ [13627]={
+ ["next_chapter"]=13628,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9017,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2976,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=953224,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=96276,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=953224,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=93872,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1362,
+ ["unit"]=0
+ }
+ },
+ [13628]={
+ ["next_chapter"]=13629,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9024,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2978,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=962756,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=97238,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=962756,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=93872,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1362,
+ ["unit"]=0
+ }
+ },
+ [13629]={
+ ["next_chapter"]=13630,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9030,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2980,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=972384,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=98211,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=972384,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=93872,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1362,
+ ["unit"]=0
+ }
+ },
+ [13630]={
+ ["next_chapter"]=13631,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=9037,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2982,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=982108,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=99193,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=982108,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=103693,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1363,
+ ["unit"]=0
+ }
+ },
+ [13631]={
+ ["next_chapter"]=13632,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9044,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2984,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=991929,
+ ["unit"]=18
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=100185,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=991929,
+ ["unit"]=18
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=103693,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1363,
+ ["unit"]=0
+ }
+ },
+ [13632]={
+ ["next_chapter"]=13633,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9050,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2987,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1002,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=101187,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1002,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=103693,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1363,
+ ["unit"]=0
+ }
+ },
+ [13633]={
+ ["next_chapter"]=13634,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9057,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2989,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1012,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=102199,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1012,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=103693,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1363,
+ ["unit"]=0
+ }
+ },
+ [13634]={
+ ["next_chapter"]=13635,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9063,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2991,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1022,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=103220,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1022,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=103693,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1363,
+ ["unit"]=0
+ }
+ },
+ [13635]={
+ ["next_chapter"]=13636,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9070,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2993,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1032,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=104253,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1032,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=103693,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1363,
+ ["unit"]=0
+ }
+ },
+ [13636]={
+ ["next_chapter"]=13637,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9076,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2995,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1043,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=105295,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1043,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=103693,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1363,
+ ["unit"]=0
+ }
+ },
+ [13637]={
+ ["next_chapter"]=13638,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9083,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=2997,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1053,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=106348,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1053,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=103693,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1363,
+ ["unit"]=0
+ }
+ },
+ [13638]={
+ ["next_chapter"]=13639,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9089,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3000,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1063,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=107412,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1063,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=103693,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1363,
+ ["unit"]=0
+ }
+ },
+ [13639]={
+ ["next_chapter"]=13640,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9096,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3002,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1074,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=108486,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1074,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=103693,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1363,
+ ["unit"]=0
+ }
+ },
+ [13640]={
+ ["next_chapter"]=13641,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=9103,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3004,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1085,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=109571,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1085,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=114542,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1364,
+ ["unit"]=0
+ }
+ },
+ [13641]={
+ ["next_chapter"]=13642,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9109,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3006,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1096,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=110666,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1096,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=114542,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1364,
+ ["unit"]=0
+ }
+ },
+ [13642]={
+ ["next_chapter"]=13643,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9116,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3008,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1107,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=111773,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1107,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=114542,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1364,
+ ["unit"]=0
+ }
+ },
+ [13643]={
+ ["next_chapter"]=13644,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9122,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3010,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1118,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=112891,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1118,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=114542,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1364,
+ ["unit"]=0
+ }
+ },
+ [13644]={
+ ["next_chapter"]=13645,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9129,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3013,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1129,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=114020,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1129,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=114542,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1364,
+ ["unit"]=0
+ }
+ },
+ [13645]={
+ ["next_chapter"]=13646,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9136,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3015,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1140,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=115160,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1140,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=114542,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1364,
+ ["unit"]=0
+ }
+ },
+ [13646]={
+ ["next_chapter"]=13647,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9142,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3017,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1152,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=116311,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1152,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=114542,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1364,
+ ["unit"]=0
+ }
+ },
+ [13647]={
+ ["next_chapter"]=13648,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9149,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3019,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1163,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=117475,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1163,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=114542,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1364,
+ ["unit"]=0
+ }
+ },
+ [13648]={
+ ["next_chapter"]=13649,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9155,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3021,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1175,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=118649,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1175,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=114542,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1364,
+ ["unit"]=0
+ }
+ },
+ [13649]={
+ ["next_chapter"]=13650,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9162,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3023,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1186,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=119836,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1186,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=114542,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1364,
+ ["unit"]=0
+ }
+ },
+ [13650]={
+ ["next_chapter"]=13651,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=9169,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3026,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1198,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=121034,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1198,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=126525,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1365,
+ ["unit"]=0
+ }
+ },
+ [13651]={
+ ["next_chapter"]=13652,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9175,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3028,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1210,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=122244,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1210,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=126525,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1365,
+ ["unit"]=0
+ }
+ },
+ [13652]={
+ ["next_chapter"]=13653,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9182,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3030,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1222,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=123467,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1222,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=126525,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1365,
+ ["unit"]=0
+ }
+ },
+ [13653]={
+ ["next_chapter"]=13654,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9188,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3032,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1235,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=124702,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1235,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=126525,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1365,
+ ["unit"]=0
+ }
+ },
+ [13654]={
+ ["next_chapter"]=13655,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9195,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3034,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1247,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=125949,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1247,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=126525,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1365,
+ ["unit"]=0
+ }
+ },
+ [13655]={
+ ["next_chapter"]=13656,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9202,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3037,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1259,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=127208,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1259,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=126525,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1365,
+ ["unit"]=0
+ }
+ },
+ [13656]={
+ ["next_chapter"]=13657,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9208,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3039,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1272,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=128480,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1272,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=126525,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1365,
+ ["unit"]=0
+ }
+ },
+ [13657]={
+ ["next_chapter"]=13658,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9215,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3041,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1285,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=129765,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1285,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=126525,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1365,
+ ["unit"]=0
+ }
+ },
+ [13658]={
+ ["next_chapter"]=13659,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9222,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3043,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1298,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=131063,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1298,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=126525,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1365,
+ ["unit"]=0
+ }
+ },
+ [13659]={
+ ["next_chapter"]=13660,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9228,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3045,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1311,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=132373,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1311,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=126525,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1365,
+ ["unit"]=0
+ }
+ },
+ [13660]={
+ ["next_chapter"]=13661,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=9235,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3048,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1324,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=133697,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1324,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=139762,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1366,
+ ["unit"]=0
+ }
+ },
+ [13661]={
+ ["next_chapter"]=13662,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9242,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3050,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1337,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=135034,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1337,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=139762,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1366,
+ ["unit"]=0
+ }
+ },
+ [13662]={
+ ["next_chapter"]=13663,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9248,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3052,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1350,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=136384,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1350,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=139762,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1366,
+ ["unit"]=0
+ }
+ },
+ [13663]={
+ ["next_chapter"]=13664,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9255,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3054,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1364,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=137748,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1364,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=139762,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1366,
+ ["unit"]=0
+ }
+ },
+ [13664]={
+ ["next_chapter"]=13665,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9261,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3056,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1377,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=139126,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1377,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=139762,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1366,
+ ["unit"]=0
+ }
+ },
+ [13665]={
+ ["next_chapter"]=13666,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9268,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3058,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1391,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=140517,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1391,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=139762,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1366,
+ ["unit"]=0
+ }
+ },
+ [13666]={
+ ["next_chapter"]=13667,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9275,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3061,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1405,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=141922,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1405,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=139762,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1366,
+ ["unit"]=0
+ }
+ },
+ [13667]={
+ ["next_chapter"]=13668,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9281,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3063,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1419,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=143341,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1419,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=139762,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1366,
+ ["unit"]=0
+ }
+ },
+ [13668]={
+ ["next_chapter"]=13669,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9288,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3065,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1433,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=144775,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1433,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=139762,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1366,
+ ["unit"]=0
+ }
+ },
+ [13669]={
+ ["next_chapter"]=13670,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9295,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3067,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1448,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=146222,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1448,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=139762,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1366,
+ ["unit"]=0
+ }
+ },
+ [13670]={
+ ["next_chapter"]=13671,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=9301,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3069,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1462,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=147685,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1462,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=154385,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1367,
+ ["unit"]=0
+ }
+ },
+ [13671]={
+ ["next_chapter"]=13672,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9308,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3072,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1477,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=149161,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1477,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=154385,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1367,
+ ["unit"]=0
+ }
+ },
+ [13672]={
+ ["next_chapter"]=13673,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9315,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3074,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1492,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=150653,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1492,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=154385,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1367,
+ ["unit"]=0
+ }
+ },
+ [13673]={
+ ["next_chapter"]=13674,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9322,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3076,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1507,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=152160,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1507,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=154385,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1367,
+ ["unit"]=0
+ }
+ },
+ [13674]={
+ ["next_chapter"]=13675,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9328,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3078,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1522,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=153681,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1522,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=154385,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1367,
+ ["unit"]=0
+ }
+ },
+ [13675]={
+ ["next_chapter"]=13676,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9335,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3081,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1537,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=155218,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1537,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=154385,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1367,
+ ["unit"]=0
+ }
+ },
+ [13676]={
+ ["next_chapter"]=13677,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9342,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3083,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1552,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=156770,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1552,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=154385,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1367,
+ ["unit"]=0
+ }
+ },
+ [13677]={
+ ["next_chapter"]=13678,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9348,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3085,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1568,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=158338,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1568,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=154385,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1367,
+ ["unit"]=0
+ }
+ },
+ [13678]={
+ ["next_chapter"]=13679,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9355,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3087,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1583,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=159921,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1583,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=154385,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1367,
+ ["unit"]=0
+ }
+ },
+ [13679]={
+ ["next_chapter"]=13680,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9362,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3089,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1599,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=161521,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1599,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=154385,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1367,
+ ["unit"]=0
+ }
+ },
+ [13680]={
+ ["next_chapter"]=13681,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=9368,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3092,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1615,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=163136,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1615,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=170537,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1368,
+ ["unit"]=0
+ }
+ },
+ [13681]={
+ ["next_chapter"]=13682,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9375,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3094,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1631,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=164767,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1631,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=170537,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1368,
+ ["unit"]=0
+ }
+ },
+ [13682]={
+ ["next_chapter"]=13683,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9382,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3096,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1648,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=166415,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1648,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=170537,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1368,
+ ["unit"]=0
+ }
+ },
+ [13683]={
+ ["next_chapter"]=13684,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9389,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3098,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1664,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=168079,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1664,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=170537,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1368,
+ ["unit"]=0
+ }
+ },
+ [13684]={
+ ["next_chapter"]=13685,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9395,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3100,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1681,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=169760,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1681,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=170537,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1368,
+ ["unit"]=0
+ }
+ },
+ [13685]={
+ ["next_chapter"]=13686,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9402,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3103,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1698,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=171457,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1698,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=170537,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1368,
+ ["unit"]=0
+ }
+ },
+ [13686]={
+ ["next_chapter"]=13687,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9409,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3105,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1715,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=173172,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1715,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=170537,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1368,
+ ["unit"]=0
+ }
+ },
+ [13687]={
+ ["next_chapter"]=13688,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9415,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3107,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1732,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=174904,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1732,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=170537,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1368,
+ ["unit"]=0
+ }
+ },
+ [13688]={
+ ["next_chapter"]=13689,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9422,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3109,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1749,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=176653,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1749,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=170537,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1368,
+ ["unit"]=0
+ }
+ },
+ [13689]={
+ ["next_chapter"]=13690,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9429,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3112,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1767,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=178419,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1767,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=170537,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1368,
+ ["unit"]=0
+ }
+ },
+ [13690]={
+ ["next_chapter"]=13691,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=9436,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3114,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1784,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=180203,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1784,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=188379,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1369,
+ ["unit"]=0
+ }
+ },
+ [13691]={
+ ["next_chapter"]=13692,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9442,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3116,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1802,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=182005,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1802,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=188379,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1369,
+ ["unit"]=0
+ }
+ },
+ [13692]={
+ ["next_chapter"]=13693,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9449,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3118,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1820,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=183825,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1820,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=188379,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1369,
+ ["unit"]=0
+ }
+ },
+ [13693]={
+ ["next_chapter"]=13694,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9456,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3120,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1838,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=185664,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1838,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=188379,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1369,
+ ["unit"]=0
+ }
+ },
+ [13694]={
+ ["next_chapter"]=13695,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9463,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3123,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1857,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=187520,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1857,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=188379,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1369,
+ ["unit"]=0
+ }
+ },
+ [13695]={
+ ["next_chapter"]=13696,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9469,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3125,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1875,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=189396,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1875,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=188379,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1369,
+ ["unit"]=0
+ }
+ },
+ [13696]={
+ ["next_chapter"]=13697,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9476,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3127,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1894,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=191289,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1894,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=188379,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1369,
+ ["unit"]=0
+ }
+ },
+ [13697]={
+ ["next_chapter"]=13698,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9483,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3129,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1913,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=193202,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1913,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=188379,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1369,
+ ["unit"]=0
+ }
+ },
+ [13698]={
+ ["next_chapter"]=13699,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9490,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3132,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1932,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=195134,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1932,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=188379,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1369,
+ ["unit"]=0
+ }
+ },
+ [13699]={
+ ["next_chapter"]=13700,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9496,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3134,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1951,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=197086,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1951,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=188379,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1369,
+ ["unit"]=0
+ }
+ },
+ [13700]={
+ ["next_chapter"]=13701,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=9503,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3136,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1971,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=199057,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1971,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=208087,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1370,
+ ["unit"]=0
+ }
+ },
+ [13701]={
+ ["next_chapter"]=13702,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9510,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3138,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1991,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=201047,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=1991,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=208087,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1370,
+ ["unit"]=0
+ }
+ },
+ [13702]={
+ ["next_chapter"]=13703,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9517,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3141,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2010,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=203058,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=2010,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=208087,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1370,
+ ["unit"]=0
+ }
+ },
+ [13703]={
+ ["next_chapter"]=13704,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9524,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3143,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2031,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=205088,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=2031,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=208087,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1370,
+ ["unit"]=0
+ }
+ },
+ [13704]={
+ ["next_chapter"]=13705,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9530,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3145,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2051,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=207139,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=2051,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=208087,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1370,
+ ["unit"]=0
+ }
+ },
+ [13705]={
+ ["next_chapter"]=13706,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9537,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3147,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2071,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=209210,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=2071,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=208087,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1370,
+ ["unit"]=0
+ }
+ },
+ [13706]={
+ ["next_chapter"]=13707,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9544,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3150,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2092,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=211303,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=2092,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=208087,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1370,
+ ["unit"]=0
+ }
+ },
+ [13707]={
+ ["next_chapter"]=13708,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9551,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3152,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2113,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=213416,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=2113,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=208087,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1370,
+ ["unit"]=0
+ }
+ },
+ [13708]={
+ ["next_chapter"]=13709,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9558,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3154,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2134,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=215550,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=2134,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=208087,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1370,
+ ["unit"]=0
+ }
+ },
+ [13709]={
+ ["next_chapter"]=13710,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9564,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3156,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2155,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=217705,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=2155,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=208087,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1370,
+ ["unit"]=0
+ }
+ },
+ [13710]={
+ ["next_chapter"]=13711,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=9571,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3158,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2177,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=219882,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=2177,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=229858,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1371,
+ ["unit"]=0
+ }
+ },
+ [13711]={
+ ["next_chapter"]=13712,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9578,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3161,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2199,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=222081,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=2199,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=229858,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1371,
+ ["unit"]=0
+ }
+ },
+ [13712]={
+ ["next_chapter"]=13713,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9585,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3163,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2221,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=224302,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=2221,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=229858,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1371,
+ ["unit"]=0
+ }
+ },
+ [13713]={
+ ["next_chapter"]=13714,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9592,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3165,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2243,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=226545,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=2243,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=229858,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1371,
+ ["unit"]=0
+ }
+ },
+ [13714]={
+ ["next_chapter"]=13715,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9598,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3167,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2265,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=228810,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=2265,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=229858,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1371,
+ ["unit"]=0
+ }
+ },
+ [13715]={
+ ["next_chapter"]=13716,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9605,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3170,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2288,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=231099,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=2288,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=229858,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1371,
+ ["unit"]=0
+ }
+ },
+ [13716]={
+ ["next_chapter"]=13717,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9612,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3172,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2311,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=233410,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=2311,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=229858,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1371,
+ ["unit"]=0
+ }
+ },
+ [13717]={
+ ["next_chapter"]=13718,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9619,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3174,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2334,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=235744,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=2334,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=229858,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1371,
+ ["unit"]=0
+ }
+ },
+ [13718]={
+ ["next_chapter"]=13719,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9626,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3176,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2357,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=238101,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=2357,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=229858,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1371,
+ ["unit"]=0
+ }
+ },
+ [13719]={
+ ["next_chapter"]=13720,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9633,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3179,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2381,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=240482,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=2381,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=229858,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1371,
+ ["unit"]=0
+ }
+ },
+ [13720]={
+ ["next_chapter"]=13721,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=9639,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3181,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2405,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=242887,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=2405,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=253906,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1372,
+ ["unit"]=0
+ }
+ },
+ [13721]={
+ ["next_chapter"]=13722,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9646,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3183,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2429,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=245316,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=2429,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=253906,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1372,
+ ["unit"]=0
+ }
+ },
+ [13722]={
+ ["next_chapter"]=13723,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9653,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3186,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2453,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=247769,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=2453,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=253906,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1372,
+ ["unit"]=0
+ }
+ },
+ [13723]={
+ ["next_chapter"]=13724,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9660,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3188,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2478,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=250247,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=2478,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=253906,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1372,
+ ["unit"]=0
+ }
+ },
+ [13724]={
+ ["next_chapter"]=13725,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9667,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3190,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2502,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=252749,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=2502,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=253906,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1372,
+ ["unit"]=0
+ }
+ },
+ [13725]={
+ ["next_chapter"]=13726,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9674,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3192,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2527,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=255277,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=2527,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=253906,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1372,
+ ["unit"]=0
+ }
+ },
+ [13726]={
+ ["next_chapter"]=13727,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9680,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3195,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2553,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=257829,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=2553,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=253906,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1372,
+ ["unit"]=0
+ }
+ },
+ [13727]={
+ ["next_chapter"]=13728,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9687,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3197,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2578,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=260408,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=2578,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=253906,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1372,
+ ["unit"]=0
+ }
+ },
+ [13728]={
+ ["next_chapter"]=13729,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9694,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3199,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2604,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=263012,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=2604,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=253906,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1372,
+ ["unit"]=0
+ }
+ },
+ [13729]={
+ ["next_chapter"]=13730,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9701,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3201,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2630,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=265642,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=2630,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=253906,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1372,
+ ["unit"]=0
+ }
+ },
+ [13730]={
+ ["next_chapter"]=13731,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=9708,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3204,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2656,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=268298,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=2656,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=280470,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1373,
+ ["unit"]=0
+ }
+ },
+ [13731]={
+ ["next_chapter"]=13732,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9715,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3206,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2683,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=270981,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=2683,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=280470,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1373,
+ ["unit"]=0
+ }
+ },
+ [13732]={
+ ["next_chapter"]=13733,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9722,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3208,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2710,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=273691,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=2710,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=280470,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1373,
+ ["unit"]=0
+ }
+ },
+ [13733]={
+ ["next_chapter"]=13734,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9729,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3210,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2737,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=276428,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=2737,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=280470,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1373,
+ ["unit"]=0
+ }
+ },
+ [13734]={
+ ["next_chapter"]=13735,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9735,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3213,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2764,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=279192,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=2764,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=280470,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1373,
+ ["unit"]=0
+ }
+ },
+ [13735]={
+ ["next_chapter"]=13736,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9742,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3215,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2792,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=281984,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=2792,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=280470,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1373,
+ ["unit"]=0
+ }
+ },
+ [13736]={
+ ["next_chapter"]=13737,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9749,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3217,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2820,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=284804,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=2820,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=280470,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1373,
+ ["unit"]=0
+ }
+ },
+ [13737]={
+ ["next_chapter"]=13738,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9756,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3220,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2848,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=287652,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=2848,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=280470,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1373,
+ ["unit"]=0
+ }
+ },
+ [13738]={
+ ["next_chapter"]=13739,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9763,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3222,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2877,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=290529,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=2877,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=280470,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1373,
+ ["unit"]=0
+ }
+ },
+ [13739]={
+ ["next_chapter"]=13740,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9770,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3224,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2905,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=293434,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=2905,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=280470,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1373,
+ ["unit"]=0
+ }
+ },
+ [13740]={
+ ["next_chapter"]=13741,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=9777,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3226,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2934,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=296368,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=2934,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=309814,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1374,
+ ["unit"]=0
+ }
+ },
+ [13741]={
+ ["next_chapter"]=13742,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9784,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3229,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2964,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=299332,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=2964,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=309814,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1374,
+ ["unit"]=0
+ }
+ },
+ [13742]={
+ ["next_chapter"]=13743,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9791,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3231,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2993,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=302325,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=2993,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=309814,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1374,
+ ["unit"]=0
+ }
+ },
+ [13743]={
+ ["next_chapter"]=13744,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9798,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3233,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3023,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=305348,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=3023,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=309814,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1374,
+ ["unit"]=0
+ }
+ },
+ [13744]={
+ ["next_chapter"]=13745,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9804,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3235,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3053,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=308402,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=3053,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=309814,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1374,
+ ["unit"]=0
+ }
+ },
+ [13745]={
+ ["next_chapter"]=13746,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9811,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3238,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3084,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=311486,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=3084,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=309814,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1374,
+ ["unit"]=0
+ }
+ },
+ [13746]={
+ ["next_chapter"]=13747,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9818,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3240,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3115,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=314601,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=3115,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=309814,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1374,
+ ["unit"]=0
+ }
+ },
+ [13747]={
+ ["next_chapter"]=13748,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9825,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3242,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3146,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=317747,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=3146,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=309814,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1374,
+ ["unit"]=0
+ }
+ },
+ [13748]={
+ ["next_chapter"]=13749,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9832,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3245,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3177,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=320924,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=3177,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=309814,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1374,
+ ["unit"]=0
+ }
+ },
+ [13749]={
+ ["next_chapter"]=13750,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9839,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3247,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3209,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=324133,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=3209,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=309814,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1374,
+ ["unit"]=0
+ }
+ },
+ [13750]={
+ ["next_chapter"]=13751,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=9846,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3249,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3241,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=327375,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=3241,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=342227,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1375,
+ ["unit"]=0
+ }
+ },
+ [13751]={
+ ["next_chapter"]=13752,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9853,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3251,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3274,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=330649,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=3274,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=342227,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1375,
+ ["unit"]=0
+ }
+ },
+ [13752]={
+ ["next_chapter"]=13753,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9860,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3254,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3306,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=333955,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=3306,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=342227,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1375,
+ ["unit"]=0
+ }
+ },
+ [13753]={
+ ["next_chapter"]=13754,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9867,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3256,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3340,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=337295,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=3340,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=342227,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1375,
+ ["unit"]=0
+ }
+ },
+ [13754]={
+ ["next_chapter"]=13755,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9874,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3258,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3373,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=340668,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=3373,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=342227,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1375,
+ ["unit"]=0
+ }
+ },
+ [13755]={
+ ["next_chapter"]=13756,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9881,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3261,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3407,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=344074,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=3407,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=342227,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1375,
+ ["unit"]=0
+ }
+ },
+ [13756]={
+ ["next_chapter"]=13757,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9888,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3263,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3441,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=347515,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=3441,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=342227,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1375,
+ ["unit"]=0
+ }
+ },
+ [13757]={
+ ["next_chapter"]=13758,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9895,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3265,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3475,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=350990,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=3475,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=342227,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1375,
+ ["unit"]=0
+ }
+ },
+ [13758]={
+ ["next_chapter"]=13759,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9902,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3268,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3510,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=354500,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=3510,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=342227,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1375,
+ ["unit"]=0
+ }
+ },
+ [13759]={
+ ["next_chapter"]=13760,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9909,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3270,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3545,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=358045,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=3545,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=342227,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1375,
+ ["unit"]=0
+ }
+ },
+ [13760]={
+ ["next_chapter"]=13761,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=9916,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3272,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3580,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=361625,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=3580,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=378031,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1376,
+ ["unit"]=0
+ }
+ },
+ [13761]={
+ ["next_chapter"]=13762,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9922,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3274,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3616,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=365242,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=3616,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=378031,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1376,
+ ["unit"]=0
+ }
+ },
+ [13762]={
+ ["next_chapter"]=13763,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9929,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3277,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3652,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=368894,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=3652,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=378031,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1376,
+ ["unit"]=0
+ }
+ },
+ [13763]={
+ ["next_chapter"]=13764,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9936,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3279,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3689,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=372583,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=3689,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=378031,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1376,
+ ["unit"]=0
+ }
+ },
+ [13764]={
+ ["next_chapter"]=13765,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9943,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3281,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3726,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=376309,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=3726,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=378031,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1376,
+ ["unit"]=0
+ }
+ },
+ [13765]={
+ ["next_chapter"]=13766,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9950,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3284,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3763,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=380072,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=3763,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=378031,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1376,
+ ["unit"]=0
+ }
+ },
+ [13766]={
+ ["next_chapter"]=13767,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9957,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3286,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3801,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=383873,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=3801,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=378031,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1376,
+ ["unit"]=0
+ }
+ },
+ [13767]={
+ ["next_chapter"]=13768,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9964,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3288,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3839,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=387711,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=3839,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=378031,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1376,
+ ["unit"]=0
+ }
+ },
+ [13768]={
+ ["next_chapter"]=13769,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9971,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3291,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3877,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=391589,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=3877,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=378031,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1376,
+ ["unit"]=0
+ }
+ },
+ [13769]={
+ ["next_chapter"]=13770,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9978,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3293,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3916,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=395504,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=3916,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=378031,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1376,
+ ["unit"]=0
+ }
+ },
+ [13770]={
+ ["next_chapter"]=13771,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=9985,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3295,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3955,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=399459,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=3955,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=417582,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1377,
+ ["unit"]=0
+ }
+ },
+ [13771]={
+ ["next_chapter"]=13772,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9992,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3297,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3995,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=403454,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=3995,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=417582,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1377,
+ ["unit"]=0
+ }
+ },
+ [13772]={
+ ["next_chapter"]=13773,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=9999,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3300,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4035,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=407489,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=4035,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=417582,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1377,
+ ["unit"]=0
+ }
+ },
+ [13773]={
+ ["next_chapter"]=13774,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10006,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3302,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4075,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=411564,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=4075,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=417582,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1377,
+ ["unit"]=0
+ }
+ },
+ [13774]={
+ ["next_chapter"]=13775,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10013,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3304,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4116,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=415679,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=4116,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=417582,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1377,
+ ["unit"]=0
+ }
+ },
+ [13775]={
+ ["next_chapter"]=13776,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10020,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3307,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4157,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=419836,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=4157,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=417582,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1377,
+ ["unit"]=0
+ }
+ },
+ [13776]={
+ ["next_chapter"]=13777,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10027,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3309,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4198,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=424034,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=4198,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=417582,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1377,
+ ["unit"]=0
+ }
+ },
+ [13777]={
+ ["next_chapter"]=13778,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10034,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3311,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4240,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=428275,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=4240,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=417582,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1377,
+ ["unit"]=0
+ }
+ },
+ [13778]={
+ ["next_chapter"]=13779,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10041,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3314,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4283,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=432557,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=4283,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=417582,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1377,
+ ["unit"]=0
+ }
+ },
+ [13779]={
+ ["next_chapter"]=13780,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10049,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3316,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4326,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=436883,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=4326,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=417582,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1377,
+ ["unit"]=0
+ }
+ },
+ [13780]={
+ ["next_chapter"]=13781,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=10056,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3318,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4369,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=441252,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=4369,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=461270,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1378,
+ ["unit"]=0
+ }
+ },
+ [13781]={
+ ["next_chapter"]=13782,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10063,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3321,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4413,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=445664,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=4413,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=461270,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1378,
+ ["unit"]=0
+ }
+ },
+ [13782]={
+ ["next_chapter"]=13783,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10070,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3323,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4457,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=450121,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=4457,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=461270,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1378,
+ ["unit"]=0
+ }
+ },
+ [13783]={
+ ["next_chapter"]=13784,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10077,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3325,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4501,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=454622,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=4501,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=461270,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1378,
+ ["unit"]=0
+ }
+ },
+ [13784]={
+ ["next_chapter"]=13785,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10084,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3328,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4546,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=459168,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=4546,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=461270,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1378,
+ ["unit"]=0
+ }
+ },
+ [13785]={
+ ["next_chapter"]=13786,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10091,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3330,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4592,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=463760,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=4592,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=461270,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1378,
+ ["unit"]=0
+ }
+ },
+ [13786]={
+ ["next_chapter"]=13787,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10098,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3332,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4638,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=468398,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=4638,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=461270,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1378,
+ ["unit"]=0
+ }
+ },
+ [13787]={
+ ["next_chapter"]=13788,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10105,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3335,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4684,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=473082,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=4684,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=461270,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1378,
+ ["unit"]=0
+ }
+ },
+ [13788]={
+ ["next_chapter"]=13789,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10112,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3337,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4731,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=477812,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=4731,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=461270,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1378,
+ ["unit"]=0
+ }
+ },
+ [13789]={
+ ["next_chapter"]=13790,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10119,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3339,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4778,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=482591,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=4778,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=461270,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1378,
+ ["unit"]=0
+ }
+ },
+ [13790]={
+ ["next_chapter"]=13791,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=10126,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3342,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4826,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=487416,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=4826,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=509529,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1379,
+ ["unit"]=0
+ }
+ },
+ [13791]={
+ ["next_chapter"]=13792,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10133,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3344,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4874,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=492291,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=4874,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=509529,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1379,
+ ["unit"]=0
+ }
+ },
+ [13792]={
+ ["next_chapter"]=13793,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10140,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3346,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4923,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=497214,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=4923,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=509529,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1379,
+ ["unit"]=0
+ }
+ },
+ [13793]={
+ ["next_chapter"]=13794,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10147,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3349,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4972,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=502186,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=4972,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=509529,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1379,
+ ["unit"]=0
+ }
+ },
+ [13794]={
+ ["next_chapter"]=13795,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10154,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3351,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5022,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=507208,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=5022,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=509529,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1379,
+ ["unit"]=0
+ }
+ },
+ [13795]={
+ ["next_chapter"]=13796,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10161,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3353,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5072,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=512280,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=5072,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=509529,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1379,
+ ["unit"]=0
+ }
+ },
+ [13796]={
+ ["next_chapter"]=13797,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10169,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3356,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5123,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=517402,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=5123,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=509529,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1379,
+ ["unit"]=0
+ }
+ },
+ [13797]={
+ ["next_chapter"]=13798,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10176,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3358,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5174,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=522576,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=5174,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=509529,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1379,
+ ["unit"]=0
+ }
+ },
+ [13798]={
+ ["next_chapter"]=13799,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10183,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3360,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5226,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=527802,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=5226,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=509529,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1379,
+ ["unit"]=0
+ }
+ },
+ [13799]={
+ ["next_chapter"]=13800,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10190,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3363,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5278,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=533080,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=5278,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=509529,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1379,
+ ["unit"]=0
+ }
+ },
+ [13800]={
+ ["next_chapter"]=13801,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=10197,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3365,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5331,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=538411,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=5331,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=562837,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1380,
+ ["unit"]=0
+ }
+ },
+ [13801]={
+ ["next_chapter"]=13802,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10204,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3367,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5384,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=543795,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=5384,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=562837,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1380,
+ ["unit"]=0
+ }
+ },
+ [13802]={
+ ["next_chapter"]=13803,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10211,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3370,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5438,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=549233,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=5438,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=562837,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1380,
+ ["unit"]=0
+ }
+ },
+ [13803]={
+ ["next_chapter"]=13804,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10218,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3372,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5492,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=554725,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=5492,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=562837,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1380,
+ ["unit"]=0
+ }
+ },
+ [13804]={
+ ["next_chapter"]=13805,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10225,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3374,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5547,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=560273,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=5547,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=562837,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1380,
+ ["unit"]=0
+ }
+ },
+ [13805]={
+ ["next_chapter"]=13806,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10232,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3377,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5603,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=565875,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=5603,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=562837,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1380,
+ ["unit"]=0
+ }
+ },
+ [13806]={
+ ["next_chapter"]=13807,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10240,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3379,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5659,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=571534,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=5659,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=562837,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1380,
+ ["unit"]=0
+ }
+ },
+ [13807]={
+ ["next_chapter"]=13808,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10247,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3381,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5715,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=577250,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=5715,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=562837,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1380,
+ ["unit"]=0
+ }
+ },
+ [13808]={
+ ["next_chapter"]=13809,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10254,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3384,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5772,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=583022,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=5772,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=562837,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1380,
+ ["unit"]=0
+ }
+ },
+ [13809]={
+ ["next_chapter"]=13810,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10261,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3386,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5830,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=588852,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=5830,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=562837,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1380,
+ ["unit"]=0
+ }
+ },
+ [13810]={
+ ["next_chapter"]=13811,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=10268,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3388,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5889,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=594741,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=5889,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=621722,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1381,
+ ["unit"]=0
+ }
+ },
+ [13811]={
+ ["next_chapter"]=13812,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10275,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3391,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5947,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=600688,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=5947,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=621722,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1381,
+ ["unit"]=0
+ }
+ },
+ [13812]={
+ ["next_chapter"]=13813,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10282,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3393,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6007,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=606695,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=6007,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=621722,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1381,
+ ["unit"]=0
+ }
+ },
+ [13813]={
+ ["next_chapter"]=13814,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10289,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3396,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6067,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=612762,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=6067,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=621722,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1381,
+ ["unit"]=0
+ }
+ },
+ [13814]={
+ ["next_chapter"]=13815,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10297,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3398,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6128,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=618890,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=6128,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=621722,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1381,
+ ["unit"]=0
+ }
+ },
+ [13815]={
+ ["next_chapter"]=13816,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10304,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3400,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6189,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=625079,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=6189,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=621722,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1381,
+ ["unit"]=0
+ }
+ },
+ [13816]={
+ ["next_chapter"]=13817,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10311,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3403,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6251,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=631329,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=6251,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=621722,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1381,
+ ["unit"]=0
+ }
+ },
+ [13817]={
+ ["next_chapter"]=13818,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10318,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3405,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6313,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=637643,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=6313,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=621722,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1381,
+ ["unit"]=0
+ }
+ },
+ [13818]={
+ ["next_chapter"]=13819,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10325,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3407,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6376,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=644019,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=6376,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=621722,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1381,
+ ["unit"]=0
+ }
+ },
+ [13819]={
+ ["next_chapter"]=13820,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10332,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3410,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6440,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=650459,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=6440,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=621722,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1381,
+ ["unit"]=0
+ }
+ },
+ [13820]={
+ ["next_chapter"]=13821,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=10340,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3412,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6505,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=656964,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=6505,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=686768,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1382,
+ ["unit"]=0
+ }
+ },
+ [13821]={
+ ["next_chapter"]=13822,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10347,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3414,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6570,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=663533,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=6570,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=686768,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1382,
+ ["unit"]=0
+ }
+ },
+ [13822]={
+ ["next_chapter"]=13823,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10354,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3417,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6635,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=670169,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=6635,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=686768,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1382,
+ ["unit"]=0
+ }
+ },
+ [13823]={
+ ["next_chapter"]=13824,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10361,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3419,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6702,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=676870,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=6702,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=686768,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1382,
+ ["unit"]=0
+ }
+ },
+ [13824]={
+ ["next_chapter"]=13825,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10368,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3422,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6769,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=683639,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=6769,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=686768,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1382,
+ ["unit"]=0
+ }
+ },
+ [13825]={
+ ["next_chapter"]=13826,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10375,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3424,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6836,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=690476,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=6836,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=686768,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1382,
+ ["unit"]=0
+ }
+ },
+ [13826]={
+ ["next_chapter"]=13827,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10383,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3426,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6905,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=697380,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=6905,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=686768,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1382,
+ ["unit"]=0
+ }
+ },
+ [13827]={
+ ["next_chapter"]=13828,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10390,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3429,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6974,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=704354,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=6974,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=686768,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1382,
+ ["unit"]=0
+ }
+ },
+ [13828]={
+ ["next_chapter"]=13829,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10397,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3431,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7044,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=711398,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=7044,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=686768,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1382,
+ ["unit"]=0
+ }
+ },
+ [13829]={
+ ["next_chapter"]=13830,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10404,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3433,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7114,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=718512,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=7114,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=686768,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1382,
+ ["unit"]=0
+ }
+ },
+ [13830]={
+ ["next_chapter"]=13831,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=10411,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3436,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7185,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=725697,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=7185,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=758619,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1383,
+ ["unit"]=0
+ }
+ },
+ [13831]={
+ ["next_chapter"]=13832,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10419,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3438,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7257,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=732954,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=7257,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=758619,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1383,
+ ["unit"]=0
+ }
+ },
+ [13832]={
+ ["next_chapter"]=13833,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10426,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3441,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7330,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=740283,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=7330,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=758619,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1383,
+ ["unit"]=0
+ }
+ },
+ [13833]={
+ ["next_chapter"]=13834,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10433,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3443,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7403,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=747686,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=7403,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=758619,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1383,
+ ["unit"]=0
+ }
+ },
+ [13834]={
+ ["next_chapter"]=13835,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10440,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3445,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7477,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=755163,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=7477,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=758619,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1383,
+ ["unit"]=0
+ }
+ },
+ [13835]={
+ ["next_chapter"]=13836,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10447,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3448,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7552,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=762715,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=7552,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=758619,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1383,
+ ["unit"]=0
+ }
+ },
+ [13836]={
+ ["next_chapter"]=13837,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10455,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3450,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7627,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=770342,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=7627,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=758619,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1383,
+ ["unit"]=0
+ }
+ },
+ [13837]={
+ ["next_chapter"]=13838,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10462,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3452,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7703,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=778045,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=7703,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=758619,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1383,
+ ["unit"]=0
+ }
+ },
+ [13838]={
+ ["next_chapter"]=13839,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10469,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3455,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7780,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=785826,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=7780,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=758619,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1383,
+ ["unit"]=0
+ }
+ },
+ [13839]={
+ ["next_chapter"]=13840,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10476,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3457,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7858,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=793684,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=7858,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=758619,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1383,
+ ["unit"]=0
+ }
+ },
+ [13840]={
+ ["next_chapter"]=13841,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=10484,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3460,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7937,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=801621,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=7937,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=837988,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1384,
+ ["unit"]=0
+ }
+ },
+ [13841]={
+ ["next_chapter"]=13842,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10491,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3462,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8016,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=809637,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=8016,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=837988,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1384,
+ ["unit"]=0
+ }
+ },
+ [13842]={
+ ["next_chapter"]=13843,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10498,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3464,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8096,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=817733,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=8096,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=837988,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1384,
+ ["unit"]=0
+ }
+ },
+ [13843]={
+ ["next_chapter"]=13844,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10505,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3467,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8177,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=825911,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=8177,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=837988,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1384,
+ ["unit"]=0
+ }
+ },
+ [13844]={
+ ["next_chapter"]=13845,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10513,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3469,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8259,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=834170,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=8259,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=837988,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1384,
+ ["unit"]=0
+ }
+ },
+ [13845]={
+ ["next_chapter"]=13846,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10520,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3472,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8342,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=842511,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=8342,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=837988,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1384,
+ ["unit"]=0
+ }
+ },
+ [13846]={
+ ["next_chapter"]=13847,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10527,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3474,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8425,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=850937,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=8425,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=837988,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1384,
+ ["unit"]=0
+ }
+ },
+ [13847]={
+ ["next_chapter"]=13848,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10534,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3476,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8509,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=859446,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=8509,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=837988,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1384,
+ ["unit"]=0
+ }
+ },
+ [13848]={
+ ["next_chapter"]=13849,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10542,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3479,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8594,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=868040,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=8594,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=837988,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1384,
+ ["unit"]=0
+ }
+ },
+ [13849]={
+ ["next_chapter"]=13850,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10549,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3481,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8680,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=876721,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=8680,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=837988,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1384,
+ ["unit"]=0
+ }
+ },
+ [13850]={
+ ["next_chapter"]=13851,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=10556,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3483,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8767,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=885488,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=8767,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=925660,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1385,
+ ["unit"]=0
+ }
+ },
+ [13851]={
+ ["next_chapter"]=13852,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10563,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3486,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8855,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=894343,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=8855,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=925660,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1385,
+ ["unit"]=0
+ }
+ },
+ [13852]={
+ ["next_chapter"]=13853,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10571,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3488,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8943,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=903286,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=8943,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=925660,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1385,
+ ["unit"]=0
+ }
+ },
+ [13853]={
+ ["next_chapter"]=13854,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10578,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3491,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=9033,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=912319,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=9033,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=925660,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1385,
+ ["unit"]=0
+ }
+ },
+ [13854]={
+ ["next_chapter"]=13855,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10585,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3493,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=9123,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=921442,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=9123,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=925660,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1385,
+ ["unit"]=0
+ }
+ },
+ [13855]={
+ ["next_chapter"]=13856,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10592,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3495,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=9214,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=930657,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=9214,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=925660,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1385,
+ ["unit"]=0
+ }
+ },
+ [13856]={
+ ["next_chapter"]=13857,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10600,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3498,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=9307,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=939963,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=9307,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=925660,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1385,
+ ["unit"]=0
+ }
+ },
+ [13857]={
+ ["next_chapter"]=13858,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10607,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3500,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=9400,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=949363,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=9400,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=925660,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1385,
+ ["unit"]=0
+ }
+ },
+ [13858]={
+ ["next_chapter"]=13859,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10614,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3503,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=9494,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=958857,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=9494,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=925660,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1385,
+ ["unit"]=0
+ }
+ },
+ [13859]={
+ ["next_chapter"]=13860,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10622,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3505,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=9589,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=968445,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=9589,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=925660,
+ ["unit"]=19
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1385,
+ ["unit"]=0
+ }
+ },
+ [13860]={
+ ["next_chapter"]=13861,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=10629,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3508,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=9684,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=978130,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=9684,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1023,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1386,
+ ["unit"]=0
+ }
+ },
+ [13861]={
+ ["next_chapter"]=13862,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10636,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3510,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=9781,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=987911,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=9781,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1023,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1386,
+ ["unit"]=0
+ }
+ },
+ [13862]={
+ ["next_chapter"]=13863,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10643,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3512,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=9879,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=997790,
+ ["unit"]=19
+ },
+ ["idle_gold"]={
+ ["value"]=9879,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1023,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1386,
+ ["unit"]=0
+ }
+ },
+ [13863]={
+ ["next_chapter"]=13864,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10651,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3515,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=9978,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1008,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=9978,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1023,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1386,
+ ["unit"]=0
+ }
+ },
+ [13864]={
+ ["next_chapter"]=13865,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10658,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3517,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=10078,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1018,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=10078,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1023,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1386,
+ ["unit"]=0
+ }
+ },
+ [13865]={
+ ["next_chapter"]=13866,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10665,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3520,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=10178,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1028,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=10178,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1023,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1386,
+ ["unit"]=0
+ }
+ },
+ [13866]={
+ ["next_chapter"]=13867,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10673,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3522,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=10280,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1038,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=10280,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1023,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1386,
+ ["unit"]=0
+ }
+ },
+ [13867]={
+ ["next_chapter"]=13868,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10680,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3524,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=10383,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1049,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=10383,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1023,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1386,
+ ["unit"]=0
+ }
+ },
+ [13868]={
+ ["next_chapter"]=13869,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10687,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3527,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=10487,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1059,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=10487,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1023,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1386,
+ ["unit"]=0
+ }
+ },
+ [13869]={
+ ["next_chapter"]=13870,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10695,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3529,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=10592,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1070,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=10592,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1023,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1386,
+ ["unit"]=0
+ }
+ },
+ [13870]={
+ ["next_chapter"]=13871,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=10702,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3532,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=10698,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1080,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=10698,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1129,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1387,
+ ["unit"]=0
+ }
+ },
+ [13871]={
+ ["next_chapter"]=13872,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10709,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3534,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=10805,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1091,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=10805,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1129,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1387,
+ ["unit"]=0
+ }
+ },
+ [13872]={
+ ["next_chapter"]=13873,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10717,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3537,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=10913,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1102,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=10913,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1129,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1387,
+ ["unit"]=0
+ }
+ },
+ [13873]={
+ ["next_chapter"]=13874,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10724,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3539,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=11022,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1113,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=11022,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1129,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1387,
+ ["unit"]=0
+ }
+ },
+ [13874]={
+ ["next_chapter"]=13875,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10731,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3541,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=11132,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1124,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=11132,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1129,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1387,
+ ["unit"]=0
+ }
+ },
+ [13875]={
+ ["next_chapter"]=13876,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10739,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3544,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=11243,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1136,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=11243,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1129,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1387,
+ ["unit"]=0
+ }
+ },
+ [13876]={
+ ["next_chapter"]=13877,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10746,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3546,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=11356,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1147,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=11356,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1129,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1387,
+ ["unit"]=0
+ }
+ },
+ [13877]={
+ ["next_chapter"]=13878,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10753,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3549,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=11469,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1158,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=11469,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1129,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1387,
+ ["unit"]=0
+ }
+ },
+ [13878]={
+ ["next_chapter"]=13879,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10761,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3551,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=11584,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1170,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=11584,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1129,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1387,
+ ["unit"]=0
+ }
+ },
+ [13879]={
+ ["next_chapter"]=13880,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10768,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3553,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=11700,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1182,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=11700,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1129,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1387,
+ ["unit"]=0
+ }
+ },
+ [13880]={
+ ["next_chapter"]=13881,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=10776,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3556,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=11817,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1194,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=11817,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1248,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1388,
+ ["unit"]=0
+ }
+ },
+ [13881]={
+ ["next_chapter"]=13882,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10783,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3558,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=11935,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1205,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=11935,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1248,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1388,
+ ["unit"]=0
+ }
+ },
+ [13882]={
+ ["next_chapter"]=13883,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10790,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3561,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=12054,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1217,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=12054,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1248,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1388,
+ ["unit"]=0
+ }
+ },
+ [13883]={
+ ["next_chapter"]=13884,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10798,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3563,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=12175,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1230,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=12175,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1248,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1388,
+ ["unit"]=0
+ }
+ },
+ [13884]={
+ ["next_chapter"]=13885,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10805,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3566,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=12297,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1242,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=12297,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1248,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1388,
+ ["unit"]=0
+ }
+ },
+ [13885]={
+ ["next_chapter"]=13886,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10812,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3568,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=12420,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1254,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=12420,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1248,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1388,
+ ["unit"]=0
+ }
+ },
+ [13886]={
+ ["next_chapter"]=13887,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10820,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3571,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=12544,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1267,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=12544,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1248,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1388,
+ ["unit"]=0
+ }
+ },
+ [13887]={
+ ["next_chapter"]=13888,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10827,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3573,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=12669,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1280,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=12669,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1248,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1388,
+ ["unit"]=0
+ }
+ },
+ [13888]={
+ ["next_chapter"]=13889,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10835,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3575,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=12796,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1292,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=12796,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1248,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1388,
+ ["unit"]=0
+ }
+ },
+ [13889]={
+ ["next_chapter"]=13890,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10842,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3578,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=12924,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1305,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=12924,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1248,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1388,
+ ["unit"]=0
+ }
+ },
+ [13890]={
+ ["next_chapter"]=13891,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=10849,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3580,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=13053,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1318,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=13053,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1378,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1389,
+ ["unit"]=0
+ }
+ },
+ [13891]={
+ ["next_chapter"]=13892,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10857,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3583,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=13184,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1332,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=13184,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1378,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1389,
+ ["unit"]=0
+ }
+ },
+ [13892]={
+ ["next_chapter"]=13893,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10864,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3585,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=13316,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1345,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=13316,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1378,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1389,
+ ["unit"]=0
+ }
+ },
+ [13893]={
+ ["next_chapter"]=13894,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10872,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3588,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=13449,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1358,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=13449,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1378,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1389,
+ ["unit"]=0
+ }
+ },
+ [13894]={
+ ["next_chapter"]=13895,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10879,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3590,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=13583,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1372,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=13583,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1378,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1389,
+ ["unit"]=0
+ }
+ },
+ [13895]={
+ ["next_chapter"]=13896,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10886,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3593,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=13719,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1386,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=13719,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1378,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1389,
+ ["unit"]=0
+ }
+ },
+ [13896]={
+ ["next_chapter"]=13897,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10894,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3595,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=13856,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1399,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=13856,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1378,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1389,
+ ["unit"]=0
+ }
+ },
+ [13897]={
+ ["next_chapter"]=13898,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10901,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3597,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=13995,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1413,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=13995,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1378,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1389,
+ ["unit"]=0
+ }
+ },
+ [13898]={
+ ["next_chapter"]=13899,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10909,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3600,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=14135,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1428,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=14135,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1378,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1389,
+ ["unit"]=0
+ }
+ },
+ [13899]={
+ ["next_chapter"]=13900,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10916,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3602,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=14276,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1442,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=14276,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1378,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1389,
+ ["unit"]=0
+ }
+ },
+ [13900]={
+ ["next_chapter"]=13901,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=10924,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3605,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=14419,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1456,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=14419,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1522,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1390,
+ ["unit"]=0
+ }
+ },
+ [13901]={
+ ["next_chapter"]=13902,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10931,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3607,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=14563,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1471,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=14563,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1522,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1390,
+ ["unit"]=0
+ }
+ },
+ [13902]={
+ ["next_chapter"]=13903,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10938,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3610,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=14709,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1486,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=14709,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1522,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1390,
+ ["unit"]=0
+ }
+ },
+ [13903]={
+ ["next_chapter"]=13904,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10946,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3612,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=14856,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1500,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=14856,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1522,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1390,
+ ["unit"]=0
+ }
+ },
+ [13904]={
+ ["next_chapter"]=13905,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10953,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3615,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=15004,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1515,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=15004,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1522,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1390,
+ ["unit"]=0
+ }
+ },
+ [13905]={
+ ["next_chapter"]=13906,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10961,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3617,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=15154,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1531,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=15154,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1522,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1390,
+ ["unit"]=0
+ }
+ },
+ [13906]={
+ ["next_chapter"]=13907,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10968,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3620,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=15306,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1546,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=15306,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1522,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1390,
+ ["unit"]=0
+ }
+ },
+ [13907]={
+ ["next_chapter"]=13908,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10976,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3622,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=15459,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1561,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=15459,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1522,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1390,
+ ["unit"]=0
+ }
+ },
+ [13908]={
+ ["next_chapter"]=13909,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10983,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3624,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=15614,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1577,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=15614,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1522,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1390,
+ ["unit"]=0
+ }
+ },
+ [13909]={
+ ["next_chapter"]=13910,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=10991,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3627,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=15770,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1593,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=15770,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1522,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1390,
+ ["unit"]=0
+ }
+ },
+ [13910]={
+ ["next_chapter"]=13911,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=10998,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3629,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=15927,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1609,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=15927,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1682,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1391,
+ ["unit"]=0
+ }
+ },
+ [13911]={
+ ["next_chapter"]=13912,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11006,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3632,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=16087,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1625,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=16087,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1682,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1391,
+ ["unit"]=0
+ }
+ },
+ [13912]={
+ ["next_chapter"]=13913,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11013,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3634,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=16247,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1641,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=16247,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1682,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1391,
+ ["unit"]=0
+ }
+ },
+ [13913]={
+ ["next_chapter"]=13914,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11020,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3637,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=16410,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1657,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=16410,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1682,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1391,
+ ["unit"]=0
+ }
+ },
+ [13914]={
+ ["next_chapter"]=13915,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11028,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3639,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=16574,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1674,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=16574,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1682,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1391,
+ ["unit"]=0
+ }
+ },
+ [13915]={
+ ["next_chapter"]=13916,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11035,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3642,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=16740,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1691,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=16740,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1682,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1391,
+ ["unit"]=0
+ }
+ },
+ [13916]={
+ ["next_chapter"]=13917,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11043,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3644,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=16907,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1708,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=16907,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1682,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1391,
+ ["unit"]=0
+ }
+ },
+ [13917]={
+ ["next_chapter"]=13918,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11050,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3647,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=17076,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1725,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=17076,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1682,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1391,
+ ["unit"]=0
+ }
+ },
+ [13918]={
+ ["next_chapter"]=13919,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11058,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3649,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=17247,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1742,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=17247,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1682,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1391,
+ ["unit"]=0
+ }
+ },
+ [13919]={
+ ["next_chapter"]=13920,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11065,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3652,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=17420,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1759,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=17420,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1682,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1391,
+ ["unit"]=0
+ }
+ },
+ [13920]={
+ ["next_chapter"]=13921,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=11073,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3654,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=17594,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1777,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=17594,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1858,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1392,
+ ["unit"]=0
+ }
+ },
+ [13921]={
+ ["next_chapter"]=13922,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11080,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3657,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=17770,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1795,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=17770,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1858,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1392,
+ ["unit"]=0
+ }
+ },
+ [13922]={
+ ["next_chapter"]=13923,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11088,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3659,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=17947,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1813,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=17947,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1858,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1392,
+ ["unit"]=0
+ }
+ },
+ [13923]={
+ ["next_chapter"]=13924,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11095,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3661,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=18127,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1831,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=18127,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1858,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1392,
+ ["unit"]=0
+ }
+ },
+ [13924]={
+ ["next_chapter"]=13925,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11103,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3664,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=18308,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1849,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=18308,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1858,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1392,
+ ["unit"]=0
+ }
+ },
+ [13925]={
+ ["next_chapter"]=13926,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11110,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3666,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=18491,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1868,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=18491,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1858,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1392,
+ ["unit"]=0
+ }
+ },
+ [13926]={
+ ["next_chapter"]=13927,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11118,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3669,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=18676,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1886,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=18676,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1858,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1392,
+ ["unit"]=0
+ }
+ },
+ [13927]={
+ ["next_chapter"]=13928,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11126,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3671,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=18863,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1905,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=18863,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1858,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1392,
+ ["unit"]=0
+ }
+ },
+ [13928]={
+ ["next_chapter"]=13929,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11133,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3674,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=19051,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1924,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=19051,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1858,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1392,
+ ["unit"]=0
+ }
+ },
+ [13929]={
+ ["next_chapter"]=13930,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11141,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3676,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=19242,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1943,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=19242,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=1858,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1392,
+ ["unit"]=0
+ }
+ },
+ [13930]={
+ ["next_chapter"]=13931,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=11148,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3679,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=19434,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1963,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=19434,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2052,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1393,
+ ["unit"]=0
+ }
+ },
+ [13931]={
+ ["next_chapter"]=13932,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11156,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3681,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=19629,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1983,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=19629,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2052,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1393,
+ ["unit"]=0
+ }
+ },
+ [13932]={
+ ["next_chapter"]=13933,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11163,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3684,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=19825,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2002,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=19825,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2052,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1393,
+ ["unit"]=0
+ }
+ },
+ [13933]={
+ ["next_chapter"]=13934,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11171,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3686,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=20023,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2022,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=20023,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2052,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1393,
+ ["unit"]=0
+ }
+ },
+ [13934]={
+ ["next_chapter"]=13935,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11178,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3689,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=20224,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2043,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=20224,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2052,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1393,
+ ["unit"]=0
+ }
+ },
+ [13935]={
+ ["next_chapter"]=13936,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11186,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3691,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=20426,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2063,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=20426,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2052,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1393,
+ ["unit"]=0
+ }
+ },
+ [13936]={
+ ["next_chapter"]=13937,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11193,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3694,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=20630,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2084,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=20630,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2052,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1393,
+ ["unit"]=0
+ }
+ },
+ [13937]={
+ ["next_chapter"]=13938,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11201,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3696,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=20836,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2104,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=20836,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2052,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1393,
+ ["unit"]=0
+ }
+ },
+ [13938]={
+ ["next_chapter"]=13939,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11208,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3699,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=21045,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2126,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=21045,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2052,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1393,
+ ["unit"]=0
+ }
+ },
+ [13939]={
+ ["next_chapter"]=13940,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11216,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3701,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=21255,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2147,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=21255,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2052,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1393,
+ ["unit"]=0
+ }
+ },
+ [13940]={
+ ["next_chapter"]=13941,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=11224,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3704,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=21468,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2168,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=21468,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2267,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1394,
+ ["unit"]=0
+ }
+ },
+ [13941]={
+ ["next_chapter"]=13942,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11231,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3706,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=21682,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2190,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=21682,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2267,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1394,
+ ["unit"]=0
+ }
+ },
+ [13942]={
+ ["next_chapter"]=13943,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11239,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3709,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=21899,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2212,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=21899,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2267,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1394,
+ ["unit"]=0
+ }
+ },
+ [13943]={
+ ["next_chapter"]=13944,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11246,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3711,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=22118,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2234,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=22118,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2267,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1394,
+ ["unit"]=0
+ }
+ },
+ [13944]={
+ ["next_chapter"]=13945,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11254,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3714,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=22339,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2256,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=22339,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2267,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1394,
+ ["unit"]=0
+ }
+ },
+ [13945]={
+ ["next_chapter"]=13946,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11262,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3716,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=22563,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2279,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=22563,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2267,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1394,
+ ["unit"]=0
+ }
+ },
+ [13946]={
+ ["next_chapter"]=13947,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11269,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3719,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=22788,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2302,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=22788,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2267,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1394,
+ ["unit"]=0
+ }
+ },
+ [13947]={
+ ["next_chapter"]=13948,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11277,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3721,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=23016,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2325,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=23016,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2267,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1394,
+ ["unit"]=0
+ }
+ },
+ [13948]={
+ ["next_chapter"]=13949,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11284,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3724,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=23246,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2348,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=23246,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2267,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1394,
+ ["unit"]=0
+ }
+ },
+ [13949]={
+ ["next_chapter"]=13950,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11292,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3726,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=23479,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2371,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=23479,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2267,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1394,
+ ["unit"]=0
+ }
+ },
+ [13950]={
+ ["next_chapter"]=13951,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=11300,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3729,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=23714,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2395,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=23714,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2504,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1395,
+ ["unit"]=0
+ }
+ },
+ [13951]={
+ ["next_chapter"]=13952,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11307,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3731,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=23951,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2419,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=23951,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2504,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1395,
+ ["unit"]=0
+ }
+ },
+ [13952]={
+ ["next_chapter"]=13953,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11315,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3734,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=24190,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2443,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=24190,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2504,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1395,
+ ["unit"]=0
+ }
+ },
+ [13953]={
+ ["next_chapter"]=13954,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11322,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3736,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=24432,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2468,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=24432,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2504,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1395,
+ ["unit"]=0
+ }
+ },
+ [13954]={
+ ["next_chapter"]=13955,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11330,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3739,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=24677,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2492,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=24677,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2504,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1395,
+ ["unit"]=0
+ }
+ },
+ [13955]={
+ ["next_chapter"]=13956,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11338,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3741,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=24923,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2517,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=24923,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2504,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1395,
+ ["unit"]=0
+ }
+ },
+ [13956]={
+ ["next_chapter"]=13957,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11345,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3744,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=25173,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2542,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=25173,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2504,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1395,
+ ["unit"]=0
+ }
+ },
+ [13957]={
+ ["next_chapter"]=13958,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11353,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3746,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=25424,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2568,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=25424,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2504,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1395,
+ ["unit"]=0
+ }
+ },
+ [13958]={
+ ["next_chapter"]=13959,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11360,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3749,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=25678,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2594,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=25678,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2504,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1395,
+ ["unit"]=0
+ }
+ },
+ [13959]={
+ ["next_chapter"]=13960,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11368,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3751,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=25935,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2619,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=25935,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2504,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1395,
+ ["unit"]=0
+ }
+ },
+ [13960]={
+ ["next_chapter"]=13961,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=11376,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3754,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=26195,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2646,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=26195,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2766,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1396,
+ ["unit"]=0
+ }
+ },
+ [13961]={
+ ["next_chapter"]=13962,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11383,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3757,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=26457,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2672,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=26457,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2766,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1396,
+ ["unit"]=0
+ }
+ },
+ [13962]={
+ ["next_chapter"]=13963,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11391,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3759,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=26721,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2699,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=26721,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2766,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1396,
+ ["unit"]=0
+ }
+ },
+ [13963]={
+ ["next_chapter"]=13964,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11399,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3762,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=26988,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2726,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=26988,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2766,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1396,
+ ["unit"]=0
+ }
+ },
+ [13964]={
+ ["next_chapter"]=13965,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11406,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3764,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=27258,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2753,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=27258,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2766,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1396,
+ ["unit"]=0
+ }
+ },
+ [13965]={
+ ["next_chapter"]=13966,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11414,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3767,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=27531,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2781,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=27531,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2766,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1396,
+ ["unit"]=0
+ }
+ },
+ [13966]={
+ ["next_chapter"]=13967,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11422,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3769,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=27806,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2808,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=27806,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2766,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1396,
+ ["unit"]=0
+ }
+ },
+ [13967]={
+ ["next_chapter"]=13968,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11429,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3772,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=28084,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2837,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=28084,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2766,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1396,
+ ["unit"]=0
+ }
+ },
+ [13968]={
+ ["next_chapter"]=13969,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11437,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3774,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=28365,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2865,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=28365,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2766,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1396,
+ ["unit"]=0
+ }
+ },
+ [13969]={
+ ["next_chapter"]=13970,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11445,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3777,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=28649,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2894,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=28649,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=2766,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1396,
+ ["unit"]=0
+ }
+ },
+ [13970]={
+ ["next_chapter"]=13971,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=11452,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3779,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=28935,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2922,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=28935,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3055,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1397,
+ ["unit"]=0
+ }
+ },
+ [13971]={
+ ["next_chapter"]=13972,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11460,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3782,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=29225,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2952,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=29225,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3055,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1397,
+ ["unit"]=0
+ }
+ },
+ [13972]={
+ ["next_chapter"]=13973,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11468,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3784,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=29517,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2981,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=29517,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3055,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1397,
+ ["unit"]=0
+ }
+ },
+ [13973]={
+ ["next_chapter"]=13974,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11475,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3787,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=29812,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3011,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=29812,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3055,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1397,
+ ["unit"]=0
+ }
+ },
+ [13974]={
+ ["next_chapter"]=13975,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11483,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3789,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=30110,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3041,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=30110,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3055,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1397,
+ ["unit"]=0
+ }
+ },
+ [13975]={
+ ["next_chapter"]=13976,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11491,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3792,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=30411,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3072,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=30411,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3055,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1397,
+ ["unit"]=0
+ }
+ },
+ [13976]={
+ ["next_chapter"]=13977,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11498,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3794,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=30715,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3102,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=30715,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3055,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1397,
+ ["unit"]=0
+ }
+ },
+ [13977]={
+ ["next_chapter"]=13978,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11506,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3797,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=31022,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3133,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=31022,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3055,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1397,
+ ["unit"]=0
+ }
+ },
+ [13978]={
+ ["next_chapter"]=13979,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11514,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3800,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=31333,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3165,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=31333,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3055,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1397,
+ ["unit"]=0
+ }
+ },
+ [13979]={
+ ["next_chapter"]=13980,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11521,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3802,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=31646,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3196,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=31646,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3055,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1397,
+ ["unit"]=0
+ }
+ },
+ [13980]={
+ ["next_chapter"]=13981,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=11529,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3805,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=31962,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3228,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=31962,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3375,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1398,
+ ["unit"]=0
+ }
+ },
+ [13981]={
+ ["next_chapter"]=13982,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11537,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3807,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=32282,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3260,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=32282,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3375,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1398,
+ ["unit"]=0
+ }
+ },
+ [13982]={
+ ["next_chapter"]=13983,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11545,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3810,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=32605,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3293,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=32605,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3375,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1398,
+ ["unit"]=0
+ }
+ },
+ [13983]={
+ ["next_chapter"]=13984,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11552,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3812,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=32931,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3326,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=32931,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3375,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1398,
+ ["unit"]=0
+ }
+ },
+ [13984]={
+ ["next_chapter"]=13985,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11560,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3815,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=33260,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3359,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=33260,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3375,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1398,
+ ["unit"]=0
+ }
+ },
+ [13985]={
+ ["next_chapter"]=13986,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11568,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3817,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=33593,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3393,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=33593,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3375,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1398,
+ ["unit"]=0
+ }
+ },
+ [13986]={
+ ["next_chapter"]=13987,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11575,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3820,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=33929,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3427,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=33929,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3375,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1398,
+ ["unit"]=0
+ }
+ },
+ [13987]={
+ ["next_chapter"]=13988,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11583,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3822,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=34268,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3461,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=34268,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3375,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1398,
+ ["unit"]=0
+ }
+ },
+ [13988]={
+ ["next_chapter"]=13989,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11591,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3825,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=34611,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3496,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=34611,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3375,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1398,
+ ["unit"]=0
+ }
+ },
+ [13989]={
+ ["next_chapter"]=13990,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11599,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3828,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=34957,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3531,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=34957,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3375,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1398,
+ ["unit"]=0
+ }
+ },
+ [13990]={
+ ["next_chapter"]=13991,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=11606,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3830,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=35306,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3566,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=35306,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3728,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1399,
+ ["unit"]=0
+ }
+ },
+ [13991]={
+ ["next_chapter"]=13992,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11614,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3833,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=35659,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3602,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=35659,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3728,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1399,
+ ["unit"]=0
+ }
+ },
+ [13992]={
+ ["next_chapter"]=13993,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11622,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3835,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=36016,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3638,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=36016,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3728,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1399,
+ ["unit"]=0
+ }
+ },
+ [13993]={
+ ["next_chapter"]=13994,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11630,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3838,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=36376,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3674,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=36376,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3728,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1399,
+ ["unit"]=0
+ }
+ },
+ [13994]={
+ ["next_chapter"]=13995,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11637,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3840,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=36740,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3711,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=36740,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3728,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1399,
+ ["unit"]=0
+ }
+ },
+ [13995]={
+ ["next_chapter"]=13996,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11645,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3843,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=37107,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3748,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=37107,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3728,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1399,
+ ["unit"]=0
+ }
+ },
+ [13996]={
+ ["next_chapter"]=13997,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11653,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3845,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=37478,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3785,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=37478,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3728,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1399,
+ ["unit"]=0
+ }
+ },
+ [13997]={
+ ["next_chapter"]=13998,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11661,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3848,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=37853,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3823,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=37853,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3728,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1399,
+ ["unit"]=0
+ }
+ },
+ [13998]={
+ ["next_chapter"]=13999,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11668,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3851,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=38232,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3861,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=38232,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3728,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1399,
+ ["unit"]=0
+ }
+ },
+ [13999]={
+ ["next_chapter"]=14000,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11676,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3853,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=38614,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3900,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=38614,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=3728,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1399,
+ ["unit"]=0
+ }
+ },
+ [14000]={
+ ["next_chapter"]=14001,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=11684,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3856,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=39000,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3939,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=39000,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=4118,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1400,
+ ["unit"]=0
+ }
+ },
+ [14001]={
+ ["next_chapter"]=14002,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11692,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3858,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=39390,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3978,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=39390,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=4118,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1400,
+ ["unit"]=0
+ }
+ },
+ [14002]={
+ ["next_chapter"]=14003,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11700,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3861,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=39784,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4018,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=39784,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=4118,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1400,
+ ["unit"]=0
+ }
+ },
+ [14003]={
+ ["next_chapter"]=14004,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11707,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3863,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=40182,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4058,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=40182,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=4118,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1400,
+ ["unit"]=0
+ }
+ },
+ [14004]={
+ ["next_chapter"]=14005,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11715,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3866,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=40584,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4099,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=40584,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=4118,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1400,
+ ["unit"]=0
+ }
+ },
+ [14005]={
+ ["next_chapter"]=14006,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11723,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3869,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=40990,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4140,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=40990,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=4118,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1400,
+ ["unit"]=0
+ }
+ },
+ [14006]={
+ ["next_chapter"]=14007,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11731,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3871,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=41400,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4181,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=41400,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=4118,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1400,
+ ["unit"]=0
+ }
+ },
+ [14007]={
+ ["next_chapter"]=14008,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11739,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3874,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=41814,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4223,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=41814,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=4118,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1400,
+ ["unit"]=0
+ }
+ },
+ [14008]={
+ ["next_chapter"]=14009,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11746,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3876,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=42232,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4265,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=42232,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=4118,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1400,
+ ["unit"]=0
+ }
+ },
+ [14009]={
+ ["next_chapter"]=14010,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11754,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3879,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=42654,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4308,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=42654,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=4118,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1400,
+ ["unit"]=0
+ }
+ },
+ [14010]={
+ ["next_chapter"]=14011,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=11762,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3881,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=43081,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4351,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=43081,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=4549,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1401,
+ ["unit"]=0
+ }
+ },
+ [14011]={
+ ["next_chapter"]=14012,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11770,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3884,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=43511,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4395,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=43511,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=4549,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1401,
+ ["unit"]=0
+ }
+ },
+ [14012]={
+ ["next_chapter"]=14013,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11778,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3887,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=43946,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4439,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=43946,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=4549,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1401,
+ ["unit"]=0
+ }
+ },
+ [14013]={
+ ["next_chapter"]=14014,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11785,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3889,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=44386,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4483,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=44386,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=4549,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1401,
+ ["unit"]=0
+ }
+ },
+ [14014]={
+ ["next_chapter"]=14015,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11793,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3892,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=44830,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4528,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=44830,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=4549,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1401,
+ ["unit"]=0
+ }
+ },
+ [14015]={
+ ["next_chapter"]=14016,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11801,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3894,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=45278,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4573,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=45278,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=4549,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1401,
+ ["unit"]=0
+ }
+ },
+ [14016]={
+ ["next_chapter"]=14017,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11809,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3897,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=45731,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4619,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=45731,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=4549,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1401,
+ ["unit"]=0
+ }
+ },
+ [14017]={
+ ["next_chapter"]=14018,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11817,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3900,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=46188,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4665,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=46188,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=4549,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1401,
+ ["unit"]=0
+ }
+ },
+ [14018]={
+ ["next_chapter"]=14019,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11825,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3902,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=46650,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4712,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=46650,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=4549,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1401,
+ ["unit"]=0
+ }
+ },
+ [14019]={
+ ["next_chapter"]=14020,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11832,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3905,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=47117,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4759,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=47117,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=4549,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1401,
+ ["unit"]=0
+ }
+ },
+ [14020]={
+ ["next_chapter"]=14021,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=11840,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3907,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=47588,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4806,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=47588,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=5024,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1402,
+ ["unit"]=0
+ }
+ },
+ [14021]={
+ ["next_chapter"]=14022,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11848,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3910,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=48064,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4854,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=48064,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=5024,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1402,
+ ["unit"]=0
+ }
+ },
+ [14022]={
+ ["next_chapter"]=14023,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11856,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3912,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=48544,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4903,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=48544,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=5024,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1402,
+ ["unit"]=0
+ }
+ },
+ [14023]={
+ ["next_chapter"]=14024,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11864,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3915,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=49030,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4952,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=49030,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=5024,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1402,
+ ["unit"]=0
+ }
+ },
+ [14024]={
+ ["next_chapter"]=14025,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11872,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3918,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=49520,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5002,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=49520,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=5024,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1402,
+ ["unit"]=0
+ }
+ },
+ [14025]={
+ ["next_chapter"]=14026,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11879,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3920,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=50015,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5052,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=50015,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=5024,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1402,
+ ["unit"]=0
+ }
+ },
+ [14026]={
+ ["next_chapter"]=14027,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11887,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3923,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=50515,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5102,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=50515,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=5024,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1402,
+ ["unit"]=0
+ }
+ },
+ [14027]={
+ ["next_chapter"]=14028,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11895,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3925,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=51020,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5153,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=51020,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=5024,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1402,
+ ["unit"]=0
+ }
+ },
+ [14028]={
+ ["next_chapter"]=14029,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11903,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3928,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=51531,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5205,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=51531,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=5024,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1402,
+ ["unit"]=0
+ }
+ },
+ [14029]={
+ ["next_chapter"]=14030,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11911,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3931,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=52046,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5257,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=52046,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=5024,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1402,
+ ["unit"]=0
+ }
+ },
+ [14030]={
+ ["next_chapter"]=14031,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=11919,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3933,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=52566,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5309,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=52566,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=5550,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1403,
+ ["unit"]=0
+ }
+ },
+ [14031]={
+ ["next_chapter"]=14032,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11927,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3936,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=53092,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5362,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=53092,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=5550,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1403,
+ ["unit"]=0
+ }
+ },
+ [14032]={
+ ["next_chapter"]=14033,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11935,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3938,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=53623,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5416,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=53623,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=5550,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1403,
+ ["unit"]=0
+ }
+ },
+ [14033]={
+ ["next_chapter"]=14034,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11942,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3941,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=54159,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5470,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=54159,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=5550,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1403,
+ ["unit"]=0
+ }
+ },
+ [14034]={
+ ["next_chapter"]=14035,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11950,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3944,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=54701,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5525,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=54701,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=5550,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1403,
+ ["unit"]=0
+ }
+ },
+ [14035]={
+ ["next_chapter"]=14036,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11958,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3946,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=55248,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5580,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=55248,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=5550,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1403,
+ ["unit"]=0
+ }
+ },
+ [14036]={
+ ["next_chapter"]=14037,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11966,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3949,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=55800,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5636,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=55800,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=5550,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1403,
+ ["unit"]=0
+ }
+ },
+ [14037]={
+ ["next_chapter"]=14038,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11974,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3951,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=56358,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5692,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=56358,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=5550,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1403,
+ ["unit"]=0
+ }
+ },
+ [14038]={
+ ["next_chapter"]=14039,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11982,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3954,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=56922,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5749,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=56922,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=5550,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1403,
+ ["unit"]=0
+ }
+ },
+ [14039]={
+ ["next_chapter"]=14040,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=11990,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3957,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=57491,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5807,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=57491,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=5550,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1403,
+ ["unit"]=0
+ }
+ },
+ [14040]={
+ ["next_chapter"]=14041,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=11998,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3959,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=58066,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5865,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=58066,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=6131,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1404,
+ ["unit"]=0
+ }
+ },
+ [14041]={
+ ["next_chapter"]=14042,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12006,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3962,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=58647,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5923,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=58647,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=6131,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1404,
+ ["unit"]=0
+ }
+ },
+ [14042]={
+ ["next_chapter"]=14043,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12014,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3965,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=59233,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5983,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=59233,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=6131,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1404,
+ ["unit"]=0
+ }
+ },
+ [14043]={
+ ["next_chapter"]=14044,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12022,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3967,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=59826,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6042,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=59826,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=6131,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1404,
+ ["unit"]=0
+ }
+ },
+ [14044]={
+ ["next_chapter"]=14045,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12030,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3970,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=60424,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6103,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=60424,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=6131,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1404,
+ ["unit"]=0
+ }
+ },
+ [14045]={
+ ["next_chapter"]=14046,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12037,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3972,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=61028,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6164,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=61028,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=6131,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1404,
+ ["unit"]=0
+ }
+ },
+ [14046]={
+ ["next_chapter"]=14047,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12045,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3975,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=61638,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6225,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=61638,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=6131,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1404,
+ ["unit"]=0
+ }
+ },
+ [14047]={
+ ["next_chapter"]=14048,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12053,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3978,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=62255,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6288,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=62255,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=6131,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1404,
+ ["unit"]=0
+ }
+ },
+ [14048]={
+ ["next_chapter"]=14049,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12061,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3980,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=62877,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6351,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=62877,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=6131,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1404,
+ ["unit"]=0
+ }
+ },
+ [14049]={
+ ["next_chapter"]=14050,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12069,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3983,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=63506,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6414,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=63506,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=6131,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1404,
+ ["unit"]=0
+ }
+ },
+ [14050]={
+ ["next_chapter"]=14051,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=12077,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3985,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=64141,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6478,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=64141,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=6772,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1405,
+ ["unit"]=0
+ }
+ },
+ [14051]={
+ ["next_chapter"]=14052,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12085,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3988,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=64782,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6543,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=64782,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=6772,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1405,
+ ["unit"]=0
+ }
+ },
+ [14052]={
+ ["next_chapter"]=14053,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12093,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3991,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=65430,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6608,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=65430,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=6772,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1405,
+ ["unit"]=0
+ }
+ },
+ [14053]={
+ ["next_chapter"]=14054,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12101,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3993,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=66085,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6675,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=66085,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=6772,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1405,
+ ["unit"]=0
+ }
+ },
+ [14054]={
+ ["next_chapter"]=14055,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12109,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3996,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=66745,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6741,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=66745,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=6772,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1405,
+ ["unit"]=0
+ }
+ },
+ [14055]={
+ ["next_chapter"]=14056,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12117,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=3999,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=67413,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6809,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=67413,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=6772,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1405,
+ ["unit"]=0
+ }
+ },
+ [14056]={
+ ["next_chapter"]=14057,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12125,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4001,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=68087,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6877,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=68087,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=6772,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1405,
+ ["unit"]=0
+ }
+ },
+ [14057]={
+ ["next_chapter"]=14058,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12133,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4004,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=68768,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6946,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=68768,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=6772,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1405,
+ ["unit"]=0
+ }
+ },
+ [14058]={
+ ["next_chapter"]=14059,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12141,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4006,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=69456,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7015,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=69456,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=6772,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1405,
+ ["unit"]=0
+ }
+ },
+ [14059]={
+ ["next_chapter"]=14060,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12149,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4009,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=70150,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7085,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=70150,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=6772,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1405,
+ ["unit"]=0
+ }
+ },
+ [14060]={
+ ["next_chapter"]=14061,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=12157,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4012,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=70852,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7156,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=70852,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=7481,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1406,
+ ["unit"]=0
+ }
+ },
+ [14061]={
+ ["next_chapter"]=14062,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12165,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4014,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=71560,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7228,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=71560,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=7481,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1406,
+ ["unit"]=0
+ }
+ },
+ [14062]={
+ ["next_chapter"]=14063,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12173,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4017,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=72276,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7300,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=72276,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=7481,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1406,
+ ["unit"]=0
+ }
+ },
+ [14063]={
+ ["next_chapter"]=14064,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12181,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4020,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=72998,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7373,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=72998,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=7481,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1406,
+ ["unit"]=0
+ }
+ },
+ [14064]={
+ ["next_chapter"]=14065,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12189,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4022,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=73728,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7447,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=73728,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=7481,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1406,
+ ["unit"]=0
+ }
+ },
+ [14065]={
+ ["next_chapter"]=14066,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12197,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4025,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=74466,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7521,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=74466,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=7481,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1406,
+ ["unit"]=0
+ }
+ },
+ [14066]={
+ ["next_chapter"]=14067,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12205,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4028,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=75210,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7596,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=75210,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=7481,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1406,
+ ["unit"]=0
+ }
+ },
+ [14067]={
+ ["next_chapter"]=14068,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12213,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4030,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=75963,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7672,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=75963,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=7481,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1406,
+ ["unit"]=0
+ }
+ },
+ [14068]={
+ ["next_chapter"]=14069,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12221,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4033,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=76722,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7749,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=76722,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=7481,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1406,
+ ["unit"]=0
+ }
+ },
+ [14069]={
+ ["next_chapter"]=14070,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12229,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4036,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=77489,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7826,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=77489,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=7481,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1406,
+ ["unit"]=0
+ }
+ },
+ [14070]={
+ ["next_chapter"]=14071,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=12237,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4038,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=78264,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7905,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=78264,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=8263,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1407,
+ ["unit"]=0
+ }
+ },
+ [14071]={
+ ["next_chapter"]=14072,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12245,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4041,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=79047,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7984,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=79047,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=8263,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1407,
+ ["unit"]=0
+ }
+ },
+ [14072]={
+ ["next_chapter"]=14073,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12253,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4043,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=79837,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8064,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=79837,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=8263,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1407,
+ ["unit"]=0
+ }
+ },
+ [14073]={
+ ["next_chapter"]=14074,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12261,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4046,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=80636,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8144,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=80636,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=8263,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1407,
+ ["unit"]=0
+ }
+ },
+ [14074]={
+ ["next_chapter"]=14075,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12269,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4049,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=81442,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8226,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=81442,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=8263,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1407,
+ ["unit"]=0
+ }
+ },
+ [14075]={
+ ["next_chapter"]=14076,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12277,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4051,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=82257,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8308,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=82257,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=8263,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1407,
+ ["unit"]=0
+ }
+ },
+ [14076]={
+ ["next_chapter"]=14077,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12285,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4054,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=83079,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8391,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=83079,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=8263,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1407,
+ ["unit"]=0
+ }
+ },
+ [14077]={
+ ["next_chapter"]=14078,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12293,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4057,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=83910,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8475,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=83910,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=8263,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1407,
+ ["unit"]=0
+ }
+ },
+ [14078]={
+ ["next_chapter"]=14079,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12301,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4059,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=84749,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8560,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=84749,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=8263,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1407,
+ ["unit"]=0
+ }
+ },
+ [14079]={
+ ["next_chapter"]=14080,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12309,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4062,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=85596,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8645,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=85596,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=8263,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1407,
+ ["unit"]=0
+ }
+ },
+ [14080]={
+ ["next_chapter"]=14081,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=12317,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4065,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=86452,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8732,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=86452,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=9128,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1408,
+ ["unit"]=0
+ }
+ },
+ [14081]={
+ ["next_chapter"]=14082,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12325,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4067,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=87317,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8819,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=87317,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=9128,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1408,
+ ["unit"]=0
+ }
+ },
+ [14082]={
+ ["next_chapter"]=14083,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12333,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4070,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=88190,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8907,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=88190,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=9128,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1408,
+ ["unit"]=0
+ }
+ },
+ [14083]={
+ ["next_chapter"]=14084,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12341,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4073,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=89072,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8996,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=89072,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=9128,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1408,
+ ["unit"]=0
+ }
+ },
+ [14084]={
+ ["next_chapter"]=14085,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12349,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4075,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=89963,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9086,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=89963,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=9128,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1408,
+ ["unit"]=0
+ }
+ },
+ [14085]={
+ ["next_chapter"]=14086,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12358,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4078,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=90862,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9177,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=90862,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=9128,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1408,
+ ["unit"]=0
+ }
+ },
+ [14086]={
+ ["next_chapter"]=14087,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12366,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4081,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=91771,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9269,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=91771,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=9128,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1408,
+ ["unit"]=0
+ }
+ },
+ [14087]={
+ ["next_chapter"]=14088,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12374,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4083,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=92689,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9362,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=92689,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=9128,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1408,
+ ["unit"]=0
+ }
+ },
+ [14088]={
+ ["next_chapter"]=14089,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12382,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4086,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=93616,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9455,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=93616,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=9128,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1408,
+ ["unit"]=0
+ }
+ },
+ [14089]={
+ ["next_chapter"]=14090,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12390,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4089,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=94552,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9550,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=94552,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=9128,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1408,
+ ["unit"]=0
+ }
+ },
+ [14090]={
+ ["next_chapter"]=14091,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=12398,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4091,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=95497,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9645,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=95497,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=10083,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1409,
+ ["unit"]=0
+ }
+ },
+ [14091]={
+ ["next_chapter"]=14092,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12406,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4094,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=96452,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9742,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=96452,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=10083,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1409,
+ ["unit"]=0
+ }
+ },
+ [14092]={
+ ["next_chapter"]=14093,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12414,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4097,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=97417,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9839,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=97417,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=10083,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1409,
+ ["unit"]=0
+ }
+ },
+ [14093]={
+ ["next_chapter"]=14094,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12422,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4099,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=98391,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9937,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=98391,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=10083,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1409,
+ ["unit"]=0
+ }
+ },
+ [14094]={
+ ["next_chapter"]=14095,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12430,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4102,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=99375,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10037,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=99375,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=10083,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1409,
+ ["unit"]=0
+ }
+ },
+ [14095]={
+ ["next_chapter"]=14096,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12438,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4105,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=100369,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10137,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=100369,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=10083,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1409,
+ ["unit"]=0
+ }
+ },
+ [14096]={
+ ["next_chapter"]=14097,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12447,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4107,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=101372,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10239,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=101372,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=10083,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1409,
+ ["unit"]=0
+ }
+ },
+ [14097]={
+ ["next_chapter"]=14098,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12455,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4110,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=102386,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10341,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=102386,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=10083,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1409,
+ ["unit"]=0
+ }
+ },
+ [14098]={
+ ["next_chapter"]=14099,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12463,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4113,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=103410,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10444,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=103410,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=10083,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1409,
+ ["unit"]=0
+ }
+ },
+ [14099]={
+ ["next_chapter"]=14100,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12471,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4115,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=104444,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10549,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=104444,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=10083,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1409,
+ ["unit"]=0
+ }
+ },
+ [14100]={
+ ["next_chapter"]=14101,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=12479,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4118,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=105488,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10654,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=105488,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=61,
+ ["grasp_gold_reward"]={
+ ["value"]=11138,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1410,
+ ["unit"]=0
+ }
+ },
+ [14101]={
+ ["next_chapter"]=14102,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12487,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4121,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=106543,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10761,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=106543,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=11138,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1410,
+ ["unit"]=0
+ }
+ },
+ [14102]={
+ ["next_chapter"]=14103,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12495,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4123,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=107609,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10868,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=107609,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=11138,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1410,
+ ["unit"]=0
+ }
+ },
+ [14103]={
+ ["next_chapter"]=14104,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12503,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4126,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=108685,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10977,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=108685,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=11138,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1410,
+ ["unit"]=0
+ }
+ },
+ [14104]={
+ ["next_chapter"]=14105,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12512,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4129,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=109772,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11087,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=109772,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=11138,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1410,
+ ["unit"]=0
+ }
+ },
+ [14105]={
+ ["next_chapter"]=14106,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12520,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4131,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=110869,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11198,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=110869,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=11138,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1410,
+ ["unit"]=0
+ }
+ },
+ [14106]={
+ ["next_chapter"]=14107,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12528,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4134,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=111978,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11310,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=111978,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=11138,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1410,
+ ["unit"]=0
+ }
+ },
+ [14107]={
+ ["next_chapter"]=14108,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12536,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4137,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=113098,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11423,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=113098,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=11138,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1410,
+ ["unit"]=0
+ }
+ },
+ [14108]={
+ ["next_chapter"]=14109,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12544,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4140,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=114229,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11537,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=114229,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=11138,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1410,
+ ["unit"]=0
+ }
+ },
+ [14109]={
+ ["next_chapter"]=14110,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12552,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4142,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=115371,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11652,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=115371,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=11138,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1410,
+ ["unit"]=0
+ }
+ },
+ [14110]={
+ ["next_chapter"]=14111,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=12560,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4145,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=116525,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11769,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=116525,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=12303,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1411,
+ ["unit"]=0
+ }
+ },
+ [14111]={
+ ["next_chapter"]=14112,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12569,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4148,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=117690,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11887,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=117690,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=12303,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1411,
+ ["unit"]=0
+ }
+ },
+ [14112]={
+ ["next_chapter"]=14113,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12577,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4150,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=118867,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12006,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=118867,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=12303,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1411,
+ ["unit"]=0
+ }
+ },
+ [14113]={
+ ["next_chapter"]=14114,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12585,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4153,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=120056,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12126,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=120056,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=12303,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1411,
+ ["unit"]=0
+ }
+ },
+ [14114]={
+ ["next_chapter"]=14115,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12593,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4156,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=121256,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12247,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=121256,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=12303,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1411,
+ ["unit"]=0
+ }
+ },
+ [14115]={
+ ["next_chapter"]=14116,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12601,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4158,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=122469,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12369,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=122469,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=12303,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1411,
+ ["unit"]=0
+ }
+ },
+ [14116]={
+ ["next_chapter"]=14117,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12609,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4161,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=123693,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12493,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=123693,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=12303,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1411,
+ ["unit"]=0
+ }
+ },
+ [14117]={
+ ["next_chapter"]=14118,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12618,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4164,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=124930,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12618,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=124930,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=12303,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1411,
+ ["unit"]=0
+ }
+ },
+ [14118]={
+ ["next_chapter"]=14119,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12626,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4167,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=126180,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12744,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=126180,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=12303,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1411,
+ ["unit"]=0
+ }
+ },
+ [14119]={
+ ["next_chapter"]=14120,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12634,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4169,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=127441,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12872,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=127441,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=12303,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1411,
+ ["unit"]=0
+ }
+ },
+ [14120]={
+ ["next_chapter"]=14121,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=12642,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4172,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=128716,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13000,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=128716,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=13590,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1412,
+ ["unit"]=0
+ }
+ },
+ [14121]={
+ ["next_chapter"]=14122,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12650,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4175,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=130003,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13130,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=130003,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=13590,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1412,
+ ["unit"]=0
+ }
+ },
+ [14122]={
+ ["next_chapter"]=14123,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12659,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4177,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=131303,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13262,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=131303,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=13590,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1412,
+ ["unit"]=0
+ }
+ },
+ [14123]={
+ ["next_chapter"]=14124,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12667,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4180,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=132616,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13394,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=132616,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=13590,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1412,
+ ["unit"]=0
+ }
+ },
+ [14124]={
+ ["next_chapter"]=14125,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12675,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4183,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=133942,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13528,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=133942,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=13590,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1412,
+ ["unit"]=0
+ }
+ },
+ [14125]={
+ ["next_chapter"]=14126,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12683,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4185,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=135282,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13663,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=135282,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=13590,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1412,
+ ["unit"]=0
+ }
+ },
+ [14126]={
+ ["next_chapter"]=14127,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12691,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4188,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=136635,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13800,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=136635,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=13590,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1412,
+ ["unit"]=0
+ }
+ },
+ [14127]={
+ ["next_chapter"]=14128,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12700,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4191,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=138001,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13938,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=138001,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=13590,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1412,
+ ["unit"]=0
+ }
+ },
+ [14128]={
+ ["next_chapter"]=14129,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12708,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4194,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=139381,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14077,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=139381,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=13590,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1412,
+ ["unit"]=0
+ }
+ },
+ [14129]={
+ ["next_chapter"]=14130,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12716,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4196,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=140775,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14218,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=140775,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=13590,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1412,
+ ["unit"]=0
+ }
+ },
+ [14130]={
+ ["next_chapter"]=14131,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=12724,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4199,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=142182,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14360,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=142182,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=15012,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1413,
+ ["unit"]=0
+ }
+ },
+ [14131]={
+ ["next_chapter"]=14132,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12733,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4202,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=143604,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14504,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=143604,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=15012,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1413,
+ ["unit"]=0
+ }
+ },
+ [14132]={
+ ["next_chapter"]=14133,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12741,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4204,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=145040,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14649,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=145040,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=15012,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1413,
+ ["unit"]=0
+ }
+ },
+ [14133]={
+ ["next_chapter"]=14134,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12749,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4207,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=146491,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14796,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=146491,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=15012,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1413,
+ ["unit"]=0
+ }
+ },
+ [14134]={
+ ["next_chapter"]=14135,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12757,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4210,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=147956,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14944,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=147956,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=15012,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1413,
+ ["unit"]=0
+ }
+ },
+ [14135]={
+ ["next_chapter"]=14136,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12766,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4213,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=149435,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15093,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=149435,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=15012,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1413,
+ ["unit"]=0
+ }
+ },
+ [14136]={
+ ["next_chapter"]=14137,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12774,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4215,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=150930,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15244,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=150930,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=15012,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1413,
+ ["unit"]=0
+ }
+ },
+ [14137]={
+ ["next_chapter"]=14138,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12782,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4218,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=152439,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15396,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=152439,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=15012,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1413,
+ ["unit"]=0
+ }
+ },
+ [14138]={
+ ["next_chapter"]=14139,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12790,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4221,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=153963,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15550,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=153963,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=15012,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1413,
+ ["unit"]=0
+ }
+ },
+ [14139]={
+ ["next_chapter"]=14140,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12799,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4224,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=155503,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15706,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=155503,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=15012,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1413,
+ ["unit"]=0
+ }
+ },
+ [14140]={
+ ["next_chapter"]=14141,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=12807,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4226,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=157058,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15863,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=157058,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=16582,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1414,
+ ["unit"]=0
+ }
+ },
+ [14141]={
+ ["next_chapter"]=14142,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12815,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4229,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=158628,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16021,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=158628,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=16582,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1414,
+ ["unit"]=0
+ }
+ },
+ [14142]={
+ ["next_chapter"]=14143,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12823,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4232,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=160215,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16182,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=160215,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=16582,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1414,
+ ["unit"]=0
+ }
+ },
+ [14143]={
+ ["next_chapter"]=14144,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12832,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4234,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=161817,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16344,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=161817,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=16582,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1414,
+ ["unit"]=0
+ }
+ },
+ [14144]={
+ ["next_chapter"]=14145,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12840,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4237,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=163435,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16507,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=163435,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=16582,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1414,
+ ["unit"]=0
+ }
+ },
+ [14145]={
+ ["next_chapter"]=14146,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12848,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4240,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=165069,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16672,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=165069,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=16582,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1414,
+ ["unit"]=0
+ }
+ },
+ [14146]={
+ ["next_chapter"]=14147,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12857,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4243,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=166720,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16839,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=166720,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=16582,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1414,
+ ["unit"]=0
+ }
+ },
+ [14147]={
+ ["next_chapter"]=14148,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12865,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4245,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=168387,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17007,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=168387,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=16582,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1414,
+ ["unit"]=0
+ }
+ },
+ [14148]={
+ ["next_chapter"]=14149,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12873,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4248,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=170071,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17177,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=170071,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=16582,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1414,
+ ["unit"]=0
+ }
+ },
+ [14149]={
+ ["next_chapter"]=14150,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12881,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4251,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=171772,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17349,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=171772,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=16582,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1414,
+ ["unit"]=0
+ }
+ },
+ [14150]={
+ ["next_chapter"]=14151,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=12890,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4254,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=173490,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17522,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=173490,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=18317,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1415,
+ ["unit"]=0
+ }
+ },
+ [14151]={
+ ["next_chapter"]=14152,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12898,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4256,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=175224,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17698,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=175224,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=18317,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1415,
+ ["unit"]=0
+ }
+ },
+ [14152]={
+ ["next_chapter"]=14153,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12906,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4259,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=176977,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17875,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=176977,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=18317,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1415,
+ ["unit"]=0
+ }
+ },
+ [14153]={
+ ["next_chapter"]=14154,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12915,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4262,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=178746,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18053,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=178746,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=18317,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1415,
+ ["unit"]=0
+ }
+ },
+ [14154]={
+ ["next_chapter"]=14155,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12923,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4265,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=180534,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18234,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=180534,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=18317,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1415,
+ ["unit"]=0
+ }
+ },
+ [14155]={
+ ["next_chapter"]=14156,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12931,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4267,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=182339,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18416,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=182339,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=18317,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1415,
+ ["unit"]=0
+ }
+ },
+ [14156]={
+ ["next_chapter"]=14157,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12940,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4270,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=184163,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18600,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=184163,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=18317,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1415,
+ ["unit"]=0
+ }
+ },
+ [14157]={
+ ["next_chapter"]=14158,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12948,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4273,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=186004,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18786,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=186004,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=18317,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1415,
+ ["unit"]=0
+ }
+ },
+ [14158]={
+ ["next_chapter"]=14159,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12956,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4276,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=187864,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18974,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=187864,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=18317,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1415,
+ ["unit"]=0
+ }
+ },
+ [14159]={
+ ["next_chapter"]=14160,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12965,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4278,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=189743,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19164,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=189743,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=18317,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1415,
+ ["unit"]=0
+ }
+ },
+ [14160]={
+ ["next_chapter"]=14161,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=12973,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4281,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=191640,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19356,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=191640,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=20234,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1416,
+ ["unit"]=0
+ }
+ },
+ [14161]={
+ ["next_chapter"]=14162,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12981,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4284,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=193557,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19549,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=193557,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=20234,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1416,
+ ["unit"]=0
+ }
+ },
+ [14162]={
+ ["next_chapter"]=14163,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12990,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4287,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=195492,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19745,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=195492,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=20234,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1416,
+ ["unit"]=0
+ }
+ },
+ [14163]={
+ ["next_chapter"]=14164,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=12998,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4289,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=197447,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19942,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=197447,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=20234,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1416,
+ ["unit"]=0
+ }
+ },
+ [14164]={
+ ["next_chapter"]=14165,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13006,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4292,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=199422,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20142,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=199422,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=20234,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1416,
+ ["unit"]=0
+ }
+ },
+ [14165]={
+ ["next_chapter"]=14166,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13015,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4295,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=201416,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20343,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=201416,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=20234,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1416,
+ ["unit"]=0
+ }
+ },
+ [14166]={
+ ["next_chapter"]=14167,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13023,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4298,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=203430,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20546,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=203430,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=20234,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1416,
+ ["unit"]=0
+ }
+ },
+ [14167]={
+ ["next_chapter"]=14168,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13031,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4300,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=205464,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20752,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=205464,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=20234,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1416,
+ ["unit"]=0
+ }
+ },
+ [14168]={
+ ["next_chapter"]=14169,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13040,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4303,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=207519,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20959,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=207519,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=20234,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1416,
+ ["unit"]=0
+ }
+ },
+ [14169]={
+ ["next_chapter"]=14170,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13048,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4306,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=209594,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21169,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=209594,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=20234,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1416,
+ ["unit"]=0
+ }
+ },
+ [14170]={
+ ["next_chapter"]=14171,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=13056,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4309,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=211690,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21381,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=211690,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=22351,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1417,
+ ["unit"]=0
+ }
+ },
+ [14171]={
+ ["next_chapter"]=14172,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13065,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4311,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=213807,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21595,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=213807,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=22351,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1417,
+ ["unit"]=0
+ }
+ },
+ [14172]={
+ ["next_chapter"]=14173,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13073,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4314,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=215945,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21810,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=215945,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=22351,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1417,
+ ["unit"]=0
+ }
+ },
+ [14173]={
+ ["next_chapter"]=14174,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13082,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4317,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=218105,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22029,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=218105,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=22351,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1417,
+ ["unit"]=0
+ }
+ },
+ [14174]={
+ ["next_chapter"]=14175,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13090,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4320,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=220286,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22249,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=220286,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=22351,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1417,
+ ["unit"]=0
+ }
+ },
+ [14175]={
+ ["next_chapter"]=14176,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13098,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4322,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=222489,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22471,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=222489,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=22351,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1417,
+ ["unit"]=0
+ }
+ },
+ [14176]={
+ ["next_chapter"]=14177,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13107,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4325,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=224713,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22696,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=224713,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=22351,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1417,
+ ["unit"]=0
+ }
+ },
+ [14177]={
+ ["next_chapter"]=14178,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13115,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4328,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=226961,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22923,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=226961,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=22351,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1417,
+ ["unit"]=0
+ }
+ },
+ [14178]={
+ ["next_chapter"]=14179,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13124,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4331,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=229230,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23152,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=229230,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=22351,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1417,
+ ["unit"]=0
+ }
+ },
+ [14179]={
+ ["next_chapter"]=14180,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13132,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4334,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=231523,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23384,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=231523,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=22351,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1417,
+ ["unit"]=0
+ }
+ },
+ [14180]={
+ ["next_chapter"]=14181,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=13140,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4336,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=233838,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23618,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=233838,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=24689,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1418,
+ ["unit"]=0
+ }
+ },
+ [14181]={
+ ["next_chapter"]=14182,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13149,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4339,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=236176,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23854,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=236176,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=24689,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1418,
+ ["unit"]=0
+ }
+ },
+ [14182]={
+ ["next_chapter"]=14183,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13157,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4342,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=238538,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24092,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=238538,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=24689,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1418,
+ ["unit"]=0
+ }
+ },
+ [14183]={
+ ["next_chapter"]=14184,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13166,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4345,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=240923,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24333,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=240923,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=24689,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1418,
+ ["unit"]=0
+ }
+ },
+ [14184]={
+ ["next_chapter"]=14185,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13174,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4347,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=243333,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24577,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=243333,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=24689,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1418,
+ ["unit"]=0
+ }
+ },
+ [14185]={
+ ["next_chapter"]=14186,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13183,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4350,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=245766,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24822,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=245766,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=24689,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1418,
+ ["unit"]=0
+ }
+ },
+ [14186]={
+ ["next_chapter"]=14187,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13191,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4353,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=248223,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25071,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=248223,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=24689,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1418,
+ ["unit"]=0
+ }
+ },
+ [14187]={
+ ["next_chapter"]=14188,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13199,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4356,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=250706,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25321,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=250706,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=24689,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1418,
+ ["unit"]=0
+ }
+ },
+ [14188]={
+ ["next_chapter"]=14189,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13208,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4359,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=253213,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25574,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=253213,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=24689,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1418,
+ ["unit"]=0
+ }
+ },
+ [14189]={
+ ["next_chapter"]=14190,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13216,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4361,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=255745,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25830,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=255745,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=24689,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1418,
+ ["unit"]=0
+ }
+ },
+ [14190]={
+ ["next_chapter"]=14191,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=13225,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4364,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=258302,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26089,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=258302,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=27272,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1419,
+ ["unit"]=0
+ }
+ },
+ [14191]={
+ ["next_chapter"]=14192,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13233,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4367,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=260885,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26349,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=260885,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=27272,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1419,
+ ["unit"]=0
+ }
+ },
+ [14192]={
+ ["next_chapter"]=14193,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13242,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4370,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=263494,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26613,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=263494,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=27272,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1419,
+ ["unit"]=0
+ }
+ },
+ [14193]={
+ ["next_chapter"]=14194,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13250,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4373,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=266129,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26879,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=266129,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=27272,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1419,
+ ["unit"]=0
+ }
+ },
+ [14194]={
+ ["next_chapter"]=14195,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13259,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4375,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=268790,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27148,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=268790,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=27272,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1419,
+ ["unit"]=0
+ }
+ },
+ [14195]={
+ ["next_chapter"]=14196,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13267,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4378,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=271478,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27419,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=271478,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=27272,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1419,
+ ["unit"]=0
+ }
+ },
+ [14196]={
+ ["next_chapter"]=14197,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13275,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4381,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=274193,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27694,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=274193,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=27272,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1419,
+ ["unit"]=0
+ }
+ },
+ [14197]={
+ ["next_chapter"]=14198,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13284,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4384,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=276935,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27970,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=276935,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=27272,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1419,
+ ["unit"]=0
+ }
+ },
+ [14198]={
+ ["next_chapter"]=14199,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13292,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4386,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=279704,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28250,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=279704,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=27272,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1419,
+ ["unit"]=0
+ }
+ },
+ [14199]={
+ ["next_chapter"]=14200,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13301,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4389,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=282501,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28533,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=282501,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=27272,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1419,
+ ["unit"]=0
+ }
+ },
+ [14200]={
+ ["next_chapter"]=14201,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=13309,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4392,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=285326,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28818,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=285326,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=30125,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1420,
+ ["unit"]=0
+ }
+ },
+ [14201]={
+ ["next_chapter"]=14202,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13318,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4395,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=288180,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29106,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=288180,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=30125,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1420,
+ ["unit"]=0
+ }
+ },
+ [14202]={
+ ["next_chapter"]=14203,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13326,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4398,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=291062,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29397,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=291062,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=30125,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1420,
+ ["unit"]=0
+ }
+ },
+ [14203]={
+ ["next_chapter"]=14204,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13335,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4400,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=293972,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29691,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=293972,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=30125,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1420,
+ ["unit"]=0
+ }
+ },
+ [14204]={
+ ["next_chapter"]=14205,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13343,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4403,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=296912,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29988,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=296912,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=30125,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1420,
+ ["unit"]=0
+ }
+ },
+ [14205]={
+ ["next_chapter"]=14206,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13352,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4406,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=299881,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30288,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=299881,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=30125,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1420,
+ ["unit"]=0
+ }
+ },
+ [14206]={
+ ["next_chapter"]=14207,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13360,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4409,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=302880,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30591,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=302880,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=30125,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1420,
+ ["unit"]=0
+ }
+ },
+ [14207]={
+ ["next_chapter"]=14208,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13369,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4412,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=305909,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30897,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=305909,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=30125,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1420,
+ ["unit"]=0
+ }
+ },
+ [14208]={
+ ["next_chapter"]=14209,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13377,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4415,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=308968,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31206,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=308968,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=30125,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1420,
+ ["unit"]=0
+ }
+ },
+ [14209]={
+ ["next_chapter"]=14210,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13386,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4417,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=312057,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31518,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=312057,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=30125,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1420,
+ ["unit"]=0
+ }
+ },
+ [14210]={
+ ["next_chapter"]=14211,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=13394,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4420,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=315178,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31833,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=315178,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=33277,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1421,
+ ["unit"]=0
+ }
+ },
+ [14211]={
+ ["next_chapter"]=14212,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13403,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4423,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=318330,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32151,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=318330,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=33277,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1421,
+ ["unit"]=0
+ }
+ },
+ [14212]={
+ ["next_chapter"]=14213,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13411,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4426,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=321513,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32473,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=321513,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=33277,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1421,
+ ["unit"]=0
+ }
+ },
+ [14213]={
+ ["next_chapter"]=14214,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13420,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4429,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=324728,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32798,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=324728,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=33277,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1421,
+ ["unit"]=0
+ }
+ },
+ [14214]={
+ ["next_chapter"]=14215,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13428,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4431,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=327975,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33126,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=327975,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=33277,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1421,
+ ["unit"]=0
+ }
+ },
+ [14215]={
+ ["next_chapter"]=14216,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13437,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4434,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=331255,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33457,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=331255,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=33277,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1421,
+ ["unit"]=0
+ }
+ },
+ [14216]={
+ ["next_chapter"]=14217,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13446,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4437,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=334568,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33791,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=334568,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=33277,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1421,
+ ["unit"]=0
+ }
+ },
+ [14217]={
+ ["next_chapter"]=14218,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13454,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4440,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=337913,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34129,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=337913,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=33277,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1421,
+ ["unit"]=0
+ }
+ },
+ [14218]={
+ ["next_chapter"]=14219,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13463,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4443,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=341293,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34471,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=341293,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=33277,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1421,
+ ["unit"]=0
+ }
+ },
+ [14219]={
+ ["next_chapter"]=14220,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13471,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4445,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=344705,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34815,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=344705,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=33277,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1421,
+ ["unit"]=0
+ }
+ },
+ [14220]={
+ ["next_chapter"]=14221,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=13480,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4448,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=348153,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35163,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=348153,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=36759,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1422,
+ ["unit"]=0
+ }
+ },
+ [14221]={
+ ["next_chapter"]=14222,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13488,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4451,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=351634,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35515,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=351634,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=36759,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1422,
+ ["unit"]=0
+ }
+ },
+ [14222]={
+ ["next_chapter"]=14223,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13497,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4454,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=355150,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35870,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=355150,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=36759,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1422,
+ ["unit"]=0
+ }
+ },
+ [14223]={
+ ["next_chapter"]=14224,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13505,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4457,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=358702,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36229,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=358702,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=36759,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1422,
+ ["unit"]=0
+ }
+ },
+ [14224]={
+ ["next_chapter"]=14225,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13514,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4460,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=362289,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36591,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=362289,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=36759,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1422,
+ ["unit"]=0
+ }
+ },
+ [14225]={
+ ["next_chapter"]=14226,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13523,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4462,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=365912,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36957,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=365912,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=36759,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1422,
+ ["unit"]=0
+ }
+ },
+ [14226]={
+ ["next_chapter"]=14227,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13531,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4465,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=369571,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37327,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=369571,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=36759,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1422,
+ ["unit"]=0
+ }
+ },
+ [14227]={
+ ["next_chapter"]=14228,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13540,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4468,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=373267,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37700,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=373267,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=36759,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1422,
+ ["unit"]=0
+ }
+ },
+ [14228]={
+ ["next_chapter"]=14229,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13548,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4471,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=376999,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=38077,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=376999,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=36759,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1422,
+ ["unit"]=0
+ }
+ },
+ [14229]={
+ ["next_chapter"]=14230,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13557,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4474,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=380769,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=38458,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=380769,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=36759,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1422,
+ ["unit"]=0
+ }
+ },
+ [14230]={
+ ["next_chapter"]=14231,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=13565,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4477,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=384577,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=38842,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=384577,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=40604,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1423,
+ ["unit"]=0
+ }
+ },
+ [14231]={
+ ["next_chapter"]=14232,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13574,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4479,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=388423,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39231,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=388423,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=40604,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1423,
+ ["unit"]=0
+ }
+ },
+ [14232]={
+ ["next_chapter"]=14233,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13583,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4482,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=392307,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39623,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=392307,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=40604,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1423,
+ ["unit"]=0
+ }
+ },
+ [14233]={
+ ["next_chapter"]=14234,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13591,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4485,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=396230,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=40019,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=396230,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=40604,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1423,
+ ["unit"]=0
+ }
+ },
+ [14234]={
+ ["next_chapter"]=14235,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13600,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4488,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=400192,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=40419,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=400192,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=40604,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1423,
+ ["unit"]=0
+ }
+ },
+ [14235]={
+ ["next_chapter"]=14236,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13608,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4491,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=404194,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=40824,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=404194,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=40604,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1423,
+ ["unit"]=0
+ }
+ },
+ [14236]={
+ ["next_chapter"]=14237,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13617,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4494,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=408236,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41232,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=408236,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=40604,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1423,
+ ["unit"]=0
+ }
+ },
+ [14237]={
+ ["next_chapter"]=14238,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13626,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4496,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=412319,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41644,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=412319,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=40604,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1423,
+ ["unit"]=0
+ }
+ },
+ [14238]={
+ ["next_chapter"]=14239,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13634,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4499,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=416442,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=42061,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=416442,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=40604,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1423,
+ ["unit"]=0
+ }
+ },
+ [14239]={
+ ["next_chapter"]=14240,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13643,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4502,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=420606,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=42481,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=420606,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=40604,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1423,
+ ["unit"]=0
+ }
+ },
+ [14240]={
+ ["next_chapter"]=14241,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=13652,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4505,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=424812,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=42906,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=424812,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=44853,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1424,
+ ["unit"]=0
+ }
+ },
+ [14241]={
+ ["next_chapter"]=14242,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13660,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4508,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=429060,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=43335,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=429060,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=44853,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1424,
+ ["unit"]=0
+ }
+ },
+ [14242]={
+ ["next_chapter"]=14243,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13669,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4511,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=433351,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=43768,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=433351,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=44853,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1424,
+ ["unit"]=0
+ }
+ },
+ [14243]={
+ ["next_chapter"]=14244,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13677,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4514,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=437685,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=44206,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=437685,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=44853,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1424,
+ ["unit"]=0
+ }
+ },
+ [14244]={
+ ["next_chapter"]=14245,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13686,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4516,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=442061,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=44648,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=442061,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=44853,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1424,
+ ["unit"]=0
+ }
+ },
+ [14245]={
+ ["next_chapter"]=14246,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13695,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4519,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=446482,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=45095,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=446482,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=44853,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1424,
+ ["unit"]=0
+ }
+ },
+ [14246]={
+ ["next_chapter"]=14247,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13703,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4522,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=450947,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=45546,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=450947,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=44853,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1424,
+ ["unit"]=0
+ }
+ },
+ [14247]={
+ ["next_chapter"]=14248,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13712,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4525,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=455456,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=46001,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=455456,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=44853,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1424,
+ ["unit"]=0
+ }
+ },
+ [14248]={
+ ["next_chapter"]=14249,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13721,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4528,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=460011,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=46461,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=460011,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=44853,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1424,
+ ["unit"]=0
+ }
+ },
+ [14249]={
+ ["next_chapter"]=14250,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13729,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4531,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=464611,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=46926,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=464611,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=44853,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1424,
+ ["unit"]=0
+ }
+ },
+ [14250]={
+ ["next_chapter"]=14251,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=13738,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4534,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=469257,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=47395,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=469257,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=49545,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1425,
+ ["unit"]=0
+ }
+ },
+ [14251]={
+ ["next_chapter"]=14252,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13747,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4536,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=473950,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=47869,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=473950,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=49545,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1425,
+ ["unit"]=0
+ }
+ },
+ [14252]={
+ ["next_chapter"]=14253,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13755,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4539,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=478689,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=48348,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=478689,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=49545,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1425,
+ ["unit"]=0
+ }
+ },
+ [14253]={
+ ["next_chapter"]=14254,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13764,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4542,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=483476,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=48831,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=483476,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=49545,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1425,
+ ["unit"]=0
+ }
+ },
+ [14254]={
+ ["next_chapter"]=14255,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13773,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4545,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=488311,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=49319,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=488311,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=49545,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1425,
+ ["unit"]=0
+ }
+ },
+ [14255]={
+ ["next_chapter"]=14256,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13781,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4548,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=493194,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=49813,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=493194,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=49545,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1425,
+ ["unit"]=0
+ }
+ },
+ [14256]={
+ ["next_chapter"]=14257,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13790,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4551,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=498126,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=50311,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=498126,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=49545,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1425,
+ ["unit"]=0
+ }
+ },
+ [14257]={
+ ["next_chapter"]=14258,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13799,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4554,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=503107,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=50814,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=503107,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=49545,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1425,
+ ["unit"]=0
+ }
+ },
+ [14258]={
+ ["next_chapter"]=14259,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13807,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4556,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=508138,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=51322,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=508138,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=49545,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1425,
+ ["unit"]=0
+ }
+ },
+ [14259]={
+ ["next_chapter"]=14260,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13816,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4559,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=513220,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=51835,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=513220,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=49545,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1425,
+ ["unit"]=0
+ }
+ },
+ [14260]={
+ ["next_chapter"]=14261,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=13825,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4562,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=518352,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=52354,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=518352,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=54729,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1426,
+ ["unit"]=0
+ }
+ },
+ [14261]={
+ ["next_chapter"]=14262,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13834,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4565,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=523535,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=52877,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=523535,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=54729,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1426,
+ ["unit"]=0
+ }
+ },
+ [14262]={
+ ["next_chapter"]=14263,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13842,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4568,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=528771,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=53406,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=528771,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=54729,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1426,
+ ["unit"]=0
+ }
+ },
+ [14263]={
+ ["next_chapter"]=14264,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13851,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4571,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=534058,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=53940,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=534058,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=54729,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1426,
+ ["unit"]=0
+ }
+ },
+ [14264]={
+ ["next_chapter"]=14265,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13860,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4574,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=539399,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=54479,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=539399,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=54729,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1426,
+ ["unit"]=0
+ }
+ },
+ [14265]={
+ ["next_chapter"]=14266,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13868,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4577,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=544793,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=55024,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=544793,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=54729,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1426,
+ ["unit"]=0
+ }
+ },
+ [14266]={
+ ["next_chapter"]=14267,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13877,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4579,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=550241,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=55574,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=550241,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=54729,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1426,
+ ["unit"]=0
+ }
+ },
+ [14267]={
+ ["next_chapter"]=14268,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13886,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4582,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=555743,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=56130,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=555743,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=54729,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1426,
+ ["unit"]=0
+ }
+ },
+ [14268]={
+ ["next_chapter"]=14269,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13895,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4585,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=561301,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=56691,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=561301,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=54729,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1426,
+ ["unit"]=0
+ }
+ },
+ [14269]={
+ ["next_chapter"]=14270,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13903,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4588,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=566914,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=57258,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=566914,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=54729,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1426,
+ ["unit"]=0
+ }
+ },
+ [14270]={
+ ["next_chapter"]=14271,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=13912,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4591,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=572583,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=57831,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=572583,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=60454,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1427,
+ ["unit"]=0
+ }
+ },
+ [14271]={
+ ["next_chapter"]=14272,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13921,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4594,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=578309,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=58409,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=578309,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=60454,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1427,
+ ["unit"]=0
+ }
+ },
+ [14272]={
+ ["next_chapter"]=14273,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13929,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4597,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=584092,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=58993,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=584092,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=60454,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1427,
+ ["unit"]=0
+ }
+ },
+ [14273]={
+ ["next_chapter"]=14274,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13938,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4600,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=589933,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=59583,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=589933,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=60454,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1427,
+ ["unit"]=0
+ }
+ },
+ [14274]={
+ ["next_chapter"]=14275,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13947,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4603,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=595832,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=60179,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=595832,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=60454,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1427,
+ ["unit"]=0
+ }
+ },
+ [14275]={
+ ["next_chapter"]=14276,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13956,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4605,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=601790,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=60781,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=601790,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=60454,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1427,
+ ["unit"]=0
+ }
+ },
+ [14276]={
+ ["next_chapter"]=14277,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13964,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4608,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=607808,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=61389,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=607808,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=60454,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1427,
+ ["unit"]=0
+ }
+ },
+ [14277]={
+ ["next_chapter"]=14278,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13973,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4611,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=613886,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=62003,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=613886,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=60454,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1427,
+ ["unit"]=0
+ }
+ },
+ [14278]={
+ ["next_chapter"]=14279,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13982,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4614,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=620025,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=62623,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=620025,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=60454,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1427,
+ ["unit"]=0
+ }
+ },
+ [14279]={
+ ["next_chapter"]=14280,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=13991,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4617,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=626225,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=63249,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=626225,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=60454,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1427,
+ ["unit"]=0
+ }
+ },
+ [14280]={
+ ["next_chapter"]=14281,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=14000,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4620,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=632488,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=63881,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=632488,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=66779,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1428,
+ ["unit"]=0
+ }
+ },
+ [14281]={
+ ["next_chapter"]=14282,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14008,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4623,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=638812,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=64520,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=638812,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=66779,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1428,
+ ["unit"]=0
+ }
+ },
+ [14282]={
+ ["next_chapter"]=14283,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14017,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4626,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=645201,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=65165,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=645201,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=66779,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1428,
+ ["unit"]=0
+ }
+ },
+ [14283]={
+ ["next_chapter"]=14284,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14026,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4629,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=651653,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=65817,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=651653,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=66779,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1428,
+ ["unit"]=0
+ }
+ },
+ [14284]={
+ ["next_chapter"]=14285,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14035,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4631,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=658169,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=66475,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=658169,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=66779,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1428,
+ ["unit"]=0
+ }
+ },
+ [14285]={
+ ["next_chapter"]=14286,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14043,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4634,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=664751,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=67140,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=664751,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=66779,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1428,
+ ["unit"]=0
+ }
+ },
+ [14286]={
+ ["next_chapter"]=14287,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14052,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4637,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=671398,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=67811,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=671398,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=66779,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1428,
+ ["unit"]=0
+ }
+ },
+ [14287]={
+ ["next_chapter"]=14288,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14061,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4640,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=678112,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=68489,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=678112,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=66779,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1428,
+ ["unit"]=0
+ }
+ },
+ [14288]={
+ ["next_chapter"]=14289,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14070,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4643,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=684893,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=69174,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=684893,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=66779,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1428,
+ ["unit"]=0
+ }
+ },
+ [14289]={
+ ["next_chapter"]=14290,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14079,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4646,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=691742,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=69866,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=691742,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=66779,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1428,
+ ["unit"]=0
+ }
+ },
+ [14290]={
+ ["next_chapter"]=14291,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=14087,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4649,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=698660,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=70565,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=698660,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=73766,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1429,
+ ["unit"]=0
+ }
+ },
+ [14291]={
+ ["next_chapter"]=14292,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14096,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4652,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=705646,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=71270,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=705646,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=73766,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1429,
+ ["unit"]=0
+ }
+ },
+ [14292]={
+ ["next_chapter"]=14293,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14105,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4655,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=712703,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=71983,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=712703,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=73766,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1429,
+ ["unit"]=0
+ }
+ },
+ [14293]={
+ ["next_chapter"]=14294,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14114,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4658,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=719830,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=72703,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=719830,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=73766,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1429,
+ ["unit"]=0
+ }
+ },
+ [14294]={
+ ["next_chapter"]=14295,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14123,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4661,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=727028,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=73430,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=727028,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=73766,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1429,
+ ["unit"]=0
+ }
+ },
+ [14295]={
+ ["next_chapter"]=14296,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14132,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4663,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=734298,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=74164,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=734298,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=73766,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1429,
+ ["unit"]=0
+ }
+ },
+ [14296]={
+ ["next_chapter"]=14297,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14140,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4666,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=741641,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=74906,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=741641,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=73766,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1429,
+ ["unit"]=0
+ }
+ },
+ [14297]={
+ ["next_chapter"]=14298,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14149,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4669,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=749058,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=75655,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=749058,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=73766,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1429,
+ ["unit"]=0
+ }
+ },
+ [14298]={
+ ["next_chapter"]=14299,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14158,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4672,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=756548,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=76411,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=756548,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=73766,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1429,
+ ["unit"]=0
+ }
+ },
+ [14299]={
+ ["next_chapter"]=14300,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14167,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4675,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=764114,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=77176,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=764114,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=73766,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1429,
+ ["unit"]=0
+ }
+ },
+ [14300]={
+ ["next_chapter"]=14301,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=14176,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4678,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=771755,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=77947,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=771755,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=81484,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1430,
+ ["unit"]=0
+ }
+ },
+ [14301]={
+ ["next_chapter"]=14302,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14185,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4681,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=779473,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=78727,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=779473,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=81484,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1430,
+ ["unit"]=0
+ }
+ },
+ [14302]={
+ ["next_chapter"]=14303,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14193,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4684,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=787267,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=79514,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=787267,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=81484,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1430,
+ ["unit"]=0
+ }
+ },
+ [14303]={
+ ["next_chapter"]=14304,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14202,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4687,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=795140,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=80309,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=795140,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=81484,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1430,
+ ["unit"]=0
+ }
+ },
+ [14304]={
+ ["next_chapter"]=14305,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14211,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4690,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=803091,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=81112,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=803091,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=81484,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1430,
+ ["unit"]=0
+ }
+ },
+ [14305]={
+ ["next_chapter"]=14306,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14220,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4693,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=811122,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=81923,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=811122,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=81484,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1430,
+ ["unit"]=0
+ }
+ },
+ [14306]={
+ ["next_chapter"]=14307,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14229,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4696,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=819234,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=82743,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=819234,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=81484,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1430,
+ ["unit"]=0
+ }
+ },
+ [14307]={
+ ["next_chapter"]=14308,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14238,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4698,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=827426,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=83570,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=827426,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=81484,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1430,
+ ["unit"]=0
+ }
+ },
+ [14308]={
+ ["next_chapter"]=14309,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14247,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4701,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=835700,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=84406,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=835700,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=81484,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1430,
+ ["unit"]=0
+ }
+ },
+ [14309]={
+ ["next_chapter"]=14310,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14256,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4704,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=844057,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=85250,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=844057,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=81484,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1430,
+ ["unit"]=0
+ }
+ },
+ [14310]={
+ ["next_chapter"]=14311,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=14264,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4707,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=852498,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=86102,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=852498,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=90008,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1431,
+ ["unit"]=0
+ }
+ },
+ [14311]={
+ ["next_chapter"]=14312,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14273,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4710,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=861023,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=86963,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=861023,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=90008,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1431,
+ ["unit"]=0
+ }
+ },
+ [14312]={
+ ["next_chapter"]=14313,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14282,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4713,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=869633,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=87833,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=869633,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=90008,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1431,
+ ["unit"]=0
+ }
+ },
+ [14313]={
+ ["next_chapter"]=14314,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14291,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4716,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=878329,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=88711,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=878329,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=90008,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1431,
+ ["unit"]=0
+ }
+ },
+ [14314]={
+ ["next_chapter"]=14315,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14300,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4719,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=887113,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=89598,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=887113,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=90008,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1431,
+ ["unit"]=0
+ }
+ },
+ [14315]={
+ ["next_chapter"]=14316,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14309,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4722,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=895984,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=90494,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=895984,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=90008,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1431,
+ ["unit"]=0
+ }
+ },
+ [14316]={
+ ["next_chapter"]=14317,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14318,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4725,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=904943,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=91399,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=904943,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=90008,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1431,
+ ["unit"]=0
+ }
+ },
+ [14317]={
+ ["next_chapter"]=14318,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14327,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4728,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=913993,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=92313,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=913993,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=90008,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1431,
+ ["unit"]=0
+ }
+ },
+ [14318]={
+ ["next_chapter"]=14319,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14336,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4731,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=923133,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=93236,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=923133,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=90008,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1431,
+ ["unit"]=0
+ }
+ },
+ [14319]={
+ ["next_chapter"]=14320,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14345,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4734,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=932364,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=94169,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=932364,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=90008,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1431,
+ ["unit"]=0
+ }
+ },
+ [14320]={
+ ["next_chapter"]=14321,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=14353,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4737,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=941688,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=95110,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=941688,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=99425,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1432,
+ ["unit"]=0
+ }
+ },
+ [14321]={
+ ["next_chapter"]=14322,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14362,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4740,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=951105,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=96062,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=951105,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=99425,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1432,
+ ["unit"]=0
+ }
+ },
+ [14322]={
+ ["next_chapter"]=14323,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14371,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4743,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=960616,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=97022,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=960616,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=99425,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1432,
+ ["unit"]=0
+ }
+ },
+ [14323]={
+ ["next_chapter"]=14324,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14380,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4745,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=970222,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=97992,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=970222,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=99425,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1432,
+ ["unit"]=0
+ }
+ },
+ [14324]={
+ ["next_chapter"]=14325,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14389,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4748,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=979924,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=98972,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=979924,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=99425,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1432,
+ ["unit"]=0
+ }
+ },
+ [14325]={
+ ["next_chapter"]=14326,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14398,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4751,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=989723,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=99962,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=989723,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=99425,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1432,
+ ["unit"]=0
+ }
+ },
+ [14326]={
+ ["next_chapter"]=14327,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14407,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4754,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=999621,
+ ["unit"]=19
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=100962,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=999621,
+ ["unit"]=19
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=99425,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1432,
+ ["unit"]=0
+ }
+ },
+ [14327]={
+ ["next_chapter"]=14328,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14416,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4757,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1010,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=101971,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1010,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=99425,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1432,
+ ["unit"]=0
+ }
+ },
+ [14328]={
+ ["next_chapter"]=14329,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14425,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4760,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1020,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=102991,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1020,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=99425,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1432,
+ ["unit"]=0
+ }
+ },
+ [14329]={
+ ["next_chapter"]=14330,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14434,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4763,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1030,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=104021,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1030,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=99425,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1432,
+ ["unit"]=0
+ }
+ },
+ [14330]={
+ ["next_chapter"]=14331,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=14443,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4766,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1040,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=105061,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1040,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=109827,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1433,
+ ["unit"]=0
+ }
+ },
+ [14331]={
+ ["next_chapter"]=14332,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14452,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4769,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1051,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=106112,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1051,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=109827,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1433,
+ ["unit"]=0
+ }
+ },
+ [14332]={
+ ["next_chapter"]=14333,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14461,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4772,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1061,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=107173,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1061,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=109827,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1433,
+ ["unit"]=0
+ }
+ },
+ [14333]={
+ ["next_chapter"]=14334,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14470,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4775,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1072,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=108245,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1072,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=109827,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1433,
+ ["unit"]=0
+ }
+ },
+ [14334]={
+ ["next_chapter"]=14335,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14479,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4778,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1082,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=109327,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1082,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=109827,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1433,
+ ["unit"]=0
+ }
+ },
+ [14335]={
+ ["next_chapter"]=14336,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14488,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4781,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1093,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=110420,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1093,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=109827,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1433,
+ ["unit"]=0
+ }
+ },
+ [14336]={
+ ["next_chapter"]=14337,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14497,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4784,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1104,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=111525,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1104,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=109827,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1433,
+ ["unit"]=0
+ }
+ },
+ [14337]={
+ ["next_chapter"]=14338,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14506,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4787,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1115,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=112640,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1115,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=109827,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1433,
+ ["unit"]=0
+ }
+ },
+ [14338]={
+ ["next_chapter"]=14339,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14515,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4790,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1126,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=113766,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1126,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=109827,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1433,
+ ["unit"]=0
+ }
+ },
+ [14339]={
+ ["next_chapter"]=14340,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14524,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4793,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1138,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=114904,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1138,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=109827,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1433,
+ ["unit"]=0
+ }
+ },
+ [14340]={
+ ["next_chapter"]=14341,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=14533,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4796,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1149,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=116053,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1149,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=121318,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1434,
+ ["unit"]=0
+ }
+ },
+ [14341]={
+ ["next_chapter"]=14342,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14542,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4799,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1161,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=117213,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1161,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=121318,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1434,
+ ["unit"]=0
+ }
+ },
+ [14342]={
+ ["next_chapter"]=14343,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14551,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4802,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1172,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=118386,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1172,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=121318,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1434,
+ ["unit"]=0
+ }
+ },
+ [14343]={
+ ["next_chapter"]=14344,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14560,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4805,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1184,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=119569,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1184,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=121318,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1434,
+ ["unit"]=0
+ }
+ },
+ [14344]={
+ ["next_chapter"]=14345,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14569,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4808,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1196,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=120765,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1196,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=121318,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1434,
+ ["unit"]=0
+ }
+ },
+ [14345]={
+ ["next_chapter"]=14346,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14578,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4811,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1208,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=121973,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1208,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=121318,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1434,
+ ["unit"]=0
+ }
+ },
+ [14346]={
+ ["next_chapter"]=14347,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14587,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4814,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1220,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=123192,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1220,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=121318,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1434,
+ ["unit"]=0
+ }
+ },
+ [14347]={
+ ["next_chapter"]=14348,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14596,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4817,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1232,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=124424,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1232,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=121318,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1434,
+ ["unit"]=0
+ }
+ },
+ [14348]={
+ ["next_chapter"]=14349,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14605,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4820,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1244,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=125669,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1244,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=121318,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1434,
+ ["unit"]=0
+ }
+ },
+ [14349]={
+ ["next_chapter"]=14350,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14614,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4823,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1257,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=126925,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1257,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=121318,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1434,
+ ["unit"]=0
+ }
+ },
+ [14350]={
+ ["next_chapter"]=14351,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=14623,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4826,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1269,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=128195,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1269,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=134010,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1435,
+ ["unit"]=0
+ }
+ },
+ [14351]={
+ ["next_chapter"]=14352,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14632,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4828,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1282,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=129476,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1282,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=134010,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1435,
+ ["unit"]=0
+ }
+ },
+ [14352]={
+ ["next_chapter"]=14353,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14641,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4831,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1295,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=130771,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1295,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=134010,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1435,
+ ["unit"]=0
+ }
+ },
+ [14353]={
+ ["next_chapter"]=14354,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14650,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4834,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1308,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=132079,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1308,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=134010,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1435,
+ ["unit"]=0
+ }
+ },
+ [14354]={
+ ["next_chapter"]=14355,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14659,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4837,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1321,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=133400,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1321,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=134010,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1435,
+ ["unit"]=0
+ }
+ },
+ [14355]={
+ ["next_chapter"]=14356,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14668,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4840,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1334,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=134734,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1334,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=134010,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1435,
+ ["unit"]=0
+ }
+ },
+ [14356]={
+ ["next_chapter"]=14357,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14677,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4843,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1347,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=136081,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1347,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=134010,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1435,
+ ["unit"]=0
+ }
+ },
+ [14357]={
+ ["next_chapter"]=14358,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14686,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4846,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1361,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=137442,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1361,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=134010,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1435,
+ ["unit"]=0
+ }
+ },
+ [14358]={
+ ["next_chapter"]=14359,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14695,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4849,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1374,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=138816,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1374,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=134010,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1435,
+ ["unit"]=0
+ }
+ },
+ [14359]={
+ ["next_chapter"]=14360,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14704,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4852,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1388,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=140204,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1388,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=134010,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1435,
+ ["unit"]=0
+ }
+ },
+ [14360]={
+ ["next_chapter"]=14361,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=14713,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4855,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1402,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=141607,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1402,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=148031,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1436,
+ ["unit"]=0
+ }
+ },
+ [14361]={
+ ["next_chapter"]=14362,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14722,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4858,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1416,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=143023,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1416,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=148031,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1436,
+ ["unit"]=0
+ }
+ },
+ [14362]={
+ ["next_chapter"]=14363,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14731,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4861,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1430,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=144453,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1430,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=148031,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1436,
+ ["unit"]=0
+ }
+ },
+ [14363]={
+ ["next_chapter"]=14364,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14741,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4864,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1445,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=145897,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1445,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=148031,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1436,
+ ["unit"]=0
+ }
+ },
+ [14364]={
+ ["next_chapter"]=14365,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14750,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4867,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1459,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=147356,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1459,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=148031,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1436,
+ ["unit"]=0
+ }
+ },
+ [14365]={
+ ["next_chapter"]=14366,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14759,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4870,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1474,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=148830,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1474,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=148031,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1436,
+ ["unit"]=0
+ }
+ },
+ [14366]={
+ ["next_chapter"]=14367,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14768,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4873,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1488,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=150318,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1488,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=148031,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1436,
+ ["unit"]=0
+ }
+ },
+ [14367]={
+ ["next_chapter"]=14368,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14777,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4876,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1503,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=151821,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1503,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=148031,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1436,
+ ["unit"]=0
+ }
+ },
+ [14368]={
+ ["next_chapter"]=14369,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14786,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4879,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1518,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=153340,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1518,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=148031,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1436,
+ ["unit"]=0
+ }
+ },
+ [14369]={
+ ["next_chapter"]=14370,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14795,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4882,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1533,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=154873,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1533,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=148031,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1436,
+ ["unit"]=0
+ }
+ },
+ [14370]={
+ ["next_chapter"]=14371,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=14804,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4885,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1549,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=156422,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1549,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=163518,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1437,
+ ["unit"]=0
+ }
+ },
+ [14371]={
+ ["next_chapter"]=14372,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14813,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4888,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1564,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=157986,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1564,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=163518,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1437,
+ ["unit"]=0
+ }
+ },
+ [14372]={
+ ["next_chapter"]=14373,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14822,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4891,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1580,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=159566,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1580,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=163518,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1437,
+ ["unit"]=0
+ }
+ },
+ [14373]={
+ ["next_chapter"]=14374,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14832,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4894,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1596,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=161161,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1596,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=163518,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1437,
+ ["unit"]=0
+ }
+ },
+ [14374]={
+ ["next_chapter"]=14375,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14841,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4897,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1612,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=162773,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1612,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=163518,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1437,
+ ["unit"]=0
+ }
+ },
+ [14375]={
+ ["next_chapter"]=14376,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14850,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4900,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1628,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=164401,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1628,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=163518,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1437,
+ ["unit"]=0
+ }
+ },
+ [14376]={
+ ["next_chapter"]=14377,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14859,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4903,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1644,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=166045,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1644,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=163518,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1437,
+ ["unit"]=0
+ }
+ },
+ [14377]={
+ ["next_chapter"]=14378,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14868,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4906,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1660,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=167705,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1660,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=163518,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1437,
+ ["unit"]=0
+ }
+ },
+ [14378]={
+ ["next_chapter"]=14379,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14877,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4909,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1677,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=169382,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1677,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=163518,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1437,
+ ["unit"]=0
+ }
+ },
+ [14379]={
+ ["next_chapter"]=14380,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14886,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4912,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1694,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=171076,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1694,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=163518,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1437,
+ ["unit"]=0
+ }
+ },
+ [14380]={
+ ["next_chapter"]=14381,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=14895,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4915,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1711,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=172787,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1711,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=180626,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1438,
+ ["unit"]=0
+ }
+ },
+ [14381]={
+ ["next_chapter"]=14382,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14905,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4919,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1728,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=174515,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1728,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=180626,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1438,
+ ["unit"]=0
+ }
+ },
+ [14382]={
+ ["next_chapter"]=14383,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14914,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4922,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1745,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=176260,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1745,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=180626,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1438,
+ ["unit"]=0
+ }
+ },
+ [14383]={
+ ["next_chapter"]=14384,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14923,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4925,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1763,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=178022,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1763,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=180626,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1438,
+ ["unit"]=0
+ }
+ },
+ [14384]={
+ ["next_chapter"]=14385,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14932,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4928,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1780,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=179803,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1780,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=180626,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1438,
+ ["unit"]=0
+ }
+ },
+ [14385]={
+ ["next_chapter"]=14386,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14941,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4931,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1798,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=181601,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1798,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=180626,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1438,
+ ["unit"]=0
+ }
+ },
+ [14386]={
+ ["next_chapter"]=14387,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14950,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4934,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1816,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=183417,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1816,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=180626,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1438,
+ ["unit"]=0
+ }
+ },
+ [14387]={
+ ["next_chapter"]=14388,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14960,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4937,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1834,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=185251,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1834,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=180626,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1438,
+ ["unit"]=0
+ }
+ },
+ [14388]={
+ ["next_chapter"]=14389,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14969,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4940,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1853,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=187103,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1853,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=180626,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1438,
+ ["unit"]=0
+ }
+ },
+ [14389]={
+ ["next_chapter"]=14390,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14978,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4943,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1871,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=188974,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1871,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=180626,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1438,
+ ["unit"]=0
+ }
+ },
+ [14390]={
+ ["next_chapter"]=14391,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=14987,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4946,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1890,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=190864,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1890,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=199523,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1439,
+ ["unit"]=0
+ }
+ },
+ [14391]={
+ ["next_chapter"]=14392,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=14996,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4949,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1909,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=192773,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1909,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=199523,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1439,
+ ["unit"]=0
+ }
+ },
+ [14392]={
+ ["next_chapter"]=14393,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15005,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4952,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1928,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=194701,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1928,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=199523,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1439,
+ ["unit"]=0
+ }
+ },
+ [14393]={
+ ["next_chapter"]=14394,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15015,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4955,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1947,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=196648,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1947,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=199523,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1439,
+ ["unit"]=0
+ }
+ },
+ [14394]={
+ ["next_chapter"]=14395,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15024,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4958,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1966,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=198614,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1966,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=199523,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1439,
+ ["unit"]=0
+ }
+ },
+ [14395]={
+ ["next_chapter"]=14396,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15033,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4961,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1986,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=200600,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=1986,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=199523,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1439,
+ ["unit"]=0
+ }
+ },
+ [14396]={
+ ["next_chapter"]=14397,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15042,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4964,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2006,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=202606,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=2006,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=199523,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1439,
+ ["unit"]=0
+ }
+ },
+ [14397]={
+ ["next_chapter"]=14398,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15051,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4967,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2026,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=204632,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=2026,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=199523,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1439,
+ ["unit"]=0
+ }
+ },
+ [14398]={
+ ["next_chapter"]=14399,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15061,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4970,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2046,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=206679,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=2046,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=199523,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1439,
+ ["unit"]=0
+ }
+ },
+ [14399]={
+ ["next_chapter"]=14400,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15070,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4973,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2067,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=208745,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=2067,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=199523,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1439,
+ ["unit"]=0
+ }
+ },
+ [14400]={
+ ["next_chapter"]=14401,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=15079,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4976,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2087,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=210833,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=2087,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=220398,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1440,
+ ["unit"]=0
+ }
+ },
+ [14401]={
+ ["next_chapter"]=14402,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15088,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4979,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2108,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=212941,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=2108,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=220398,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1440,
+ ["unit"]=0
+ }
+ },
+ [14402]={
+ ["next_chapter"]=14403,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15098,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4982,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2129,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=215071,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=2129,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=220398,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1440,
+ ["unit"]=0
+ }
+ },
+ [14403]={
+ ["next_chapter"]=14404,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15107,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4985,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2151,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=217221,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=2151,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=220398,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1440,
+ ["unit"]=0
+ }
+ },
+ [14404]={
+ ["next_chapter"]=14405,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15116,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4988,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2172,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=219393,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=2172,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=220398,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1440,
+ ["unit"]=0
+ }
+ },
+ [14405]={
+ ["next_chapter"]=14406,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15125,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4991,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2194,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=221587,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=2194,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=220398,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1440,
+ ["unit"]=0
+ }
+ },
+ [14406]={
+ ["next_chapter"]=14407,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15134,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4994,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2216,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=223803,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=2216,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=220398,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1440,
+ ["unit"]=0
+ }
+ },
+ [14407]={
+ ["next_chapter"]=14408,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15144,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=4997,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2238,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=226041,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=2238,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=220398,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1440,
+ ["unit"]=0
+ }
+ },
+ [14408]={
+ ["next_chapter"]=14409,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15153,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5000,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2260,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=228302,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=2260,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=220398,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1440,
+ ["unit"]=0
+ }
+ },
+ [14409]={
+ ["next_chapter"]=14410,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15162,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5004,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2283,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=230585,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=2283,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=220398,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1440,
+ ["unit"]=0
+ }
+ },
+ [14410]={
+ ["next_chapter"]=14411,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=15171,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5007,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2306,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=232891,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=2306,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=243456,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1441,
+ ["unit"]=0
+ }
+ },
+ [14411]={
+ ["next_chapter"]=14412,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15181,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5010,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2329,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=235220,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=2329,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=243456,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1441,
+ ["unit"]=0
+ }
+ },
+ [14412]={
+ ["next_chapter"]=14413,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15190,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5013,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2352,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=237572,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=2352,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=243456,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1441,
+ ["unit"]=0
+ }
+ },
+ [14413]={
+ ["next_chapter"]=14414,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15199,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5016,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2376,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=239947,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=2376,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=243456,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1441,
+ ["unit"]=0
+ }
+ },
+ [14414]={
+ ["next_chapter"]=14415,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15209,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5019,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2399,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=242347,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=2399,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=243456,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1441,
+ ["unit"]=0
+ }
+ },
+ [14415]={
+ ["next_chapter"]=14416,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15218,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5022,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2423,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=244770,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=2423,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=243456,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1441,
+ ["unit"]=0
+ }
+ },
+ [14416]={
+ ["next_chapter"]=14417,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15227,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5025,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2448,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=247218,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=2448,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=243456,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1441,
+ ["unit"]=0
+ }
+ },
+ [14417]={
+ ["next_chapter"]=14418,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15236,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5028,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2472,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=249690,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=2472,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=243456,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1441,
+ ["unit"]=0
+ }
+ },
+ [14418]={
+ ["next_chapter"]=14419,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15246,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5031,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2497,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=252187,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=2497,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=243456,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1441,
+ ["unit"]=0
+ }
+ },
+ [14419]={
+ ["next_chapter"]=14420,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15255,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5034,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2522,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=254709,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=2522,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=243456,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1441,
+ ["unit"]=0
+ }
+ },
+ [14420]={
+ ["next_chapter"]=14421,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=15264,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5037,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2547,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=257256,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=2547,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=268927,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1442,
+ ["unit"]=0
+ }
+ },
+ [14421]={
+ ["next_chapter"]=14422,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15274,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5040,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2573,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=259829,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=2573,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=268927,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1442,
+ ["unit"]=0
+ }
+ },
+ [14422]={
+ ["next_chapter"]=14423,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15283,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5043,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2598,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=262427,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=2598,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=268927,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1442,
+ ["unit"]=0
+ }
+ },
+ [14423]={
+ ["next_chapter"]=14424,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15292,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5046,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2624,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=265051,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=2624,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=268927,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1442,
+ ["unit"]=0
+ }
+ },
+ [14424]={
+ ["next_chapter"]=14425,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15301,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5049,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2651,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=267702,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=2651,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=268927,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1442,
+ ["unit"]=0
+ }
+ },
+ [14425]={
+ ["next_chapter"]=14426,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15311,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5053,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2677,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=270379,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=2677,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=268927,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1442,
+ ["unit"]=0
+ }
+ },
+ [14426]={
+ ["next_chapter"]=14427,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15320,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5056,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2704,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=273083,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=2704,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=268927,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1442,
+ ["unit"]=0
+ }
+ },
+ [14427]={
+ ["next_chapter"]=14428,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15329,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5059,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2731,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=275813,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=2731,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=268927,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1442,
+ ["unit"]=0
+ }
+ },
+ [14428]={
+ ["next_chapter"]=14429,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15339,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5062,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2758,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=278572,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=2758,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=268927,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1442,
+ ["unit"]=0
+ }
+ },
+ [14429]={
+ ["next_chapter"]=14430,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15348,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5065,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2786,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=281357,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=2786,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=268927,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1442,
+ ["unit"]=0
+ }
+ },
+ [14430]={
+ ["next_chapter"]=14431,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=15357,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5068,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2814,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=284171,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=2814,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=297063,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1443,
+ ["unit"]=0
+ }
+ },
+ [14431]={
+ ["next_chapter"]=14432,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15367,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5071,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2842,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=287013,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=2842,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=297063,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1443,
+ ["unit"]=0
+ }
+ },
+ [14432]={
+ ["next_chapter"]=14433,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15376,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5074,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2870,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=289883,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=2870,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=297063,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1443,
+ ["unit"]=0
+ }
+ },
+ [14433]={
+ ["next_chapter"]=14434,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15385,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5077,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2899,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=292781,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=2899,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=297063,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1443,
+ ["unit"]=0
+ }
+ },
+ [14434]={
+ ["next_chapter"]=14435,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15395,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5080,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2928,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=295709,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=2928,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=297063,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1443,
+ ["unit"]=0
+ }
+ },
+ [14435]={
+ ["next_chapter"]=14436,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15404,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5083,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2957,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=298666,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=2957,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=297063,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1443,
+ ["unit"]=0
+ }
+ },
+ [14436]={
+ ["next_chapter"]=14437,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15413,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5086,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2987,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=301653,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=2987,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=297063,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1443,
+ ["unit"]=0
+ }
+ },
+ [14437]={
+ ["next_chapter"]=14438,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15423,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5090,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3017,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=304670,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=3017,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=297063,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1443,
+ ["unit"]=0
+ }
+ },
+ [14438]={
+ ["next_chapter"]=14439,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15432,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5093,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3047,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=307716,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=3047,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=297063,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1443,
+ ["unit"]=0
+ }
+ },
+ [14439]={
+ ["next_chapter"]=14440,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15442,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5096,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3077,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=310793,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=3077,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=297063,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1443,
+ ["unit"]=0
+ }
+ },
+ [14440]={
+ ["next_chapter"]=14441,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=15451,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5099,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3108,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=313901,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=3108,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=328142,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1444,
+ ["unit"]=0
+ }
+ },
+ [14441]={
+ ["next_chapter"]=14442,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15460,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5102,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3139,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=317040,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=3139,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=328142,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1444,
+ ["unit"]=0
+ }
+ },
+ [14442]={
+ ["next_chapter"]=14443,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15470,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5105,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3170,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=320211,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=3170,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=328142,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1444,
+ ["unit"]=0
+ }
+ },
+ [14443]={
+ ["next_chapter"]=14444,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15479,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5108,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3202,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=323413,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=3202,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=328142,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1444,
+ ["unit"]=0
+ }
+ },
+ [14444]={
+ ["next_chapter"]=14445,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15488,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5111,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3234,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=326647,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=3234,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=328142,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1444,
+ ["unit"]=0
+ }
+ },
+ [14445]={
+ ["next_chapter"]=14446,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15498,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5114,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3266,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=329913,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=3266,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=328142,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1444,
+ ["unit"]=0
+ }
+ },
+ [14446]={
+ ["next_chapter"]=14447,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15507,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5117,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3299,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=333213,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=3299,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=328142,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1444,
+ ["unit"]=0
+ }
+ },
+ [14447]={
+ ["next_chapter"]=14448,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15517,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5120,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3332,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=336545,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=3332,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=328142,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1444,
+ ["unit"]=0
+ }
+ },
+ [14448]={
+ ["next_chapter"]=14449,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15526,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5124,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3365,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=339910,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=3365,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=328142,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1444,
+ ["unit"]=0
+ }
+ },
+ [14449]={
+ ["next_chapter"]=14450,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15535,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5127,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3399,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=343309,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=3399,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=328142,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1444,
+ ["unit"]=0
+ }
+ },
+ [14450]={
+ ["next_chapter"]=14451,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=15545,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5130,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3433,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=346742,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=3433,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=362473,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1445,
+ ["unit"]=0
+ }
+ },
+ [14451]={
+ ["next_chapter"]=14452,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15554,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5133,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3467,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=350210,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=3467,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=362473,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1445,
+ ["unit"]=0
+ }
+ },
+ [14452]={
+ ["next_chapter"]=14453,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15564,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5136,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3502,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=353712,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=3502,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=362473,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1445,
+ ["unit"]=0
+ }
+ },
+ [14453]={
+ ["next_chapter"]=14454,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15573,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5139,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3537,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=357249,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=3537,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=362473,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1445,
+ ["unit"]=0
+ }
+ },
+ [14454]={
+ ["next_chapter"]=14455,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15582,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5142,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3572,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=360822,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=3572,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=362473,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1445,
+ ["unit"]=0
+ }
+ },
+ [14455]={
+ ["next_chapter"]=14456,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15592,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5145,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3608,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=364430,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=3608,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=362473,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1445,
+ ["unit"]=0
+ }
+ },
+ [14456]={
+ ["next_chapter"]=14457,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15601,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5148,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3644,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=368074,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=3644,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=362473,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1445,
+ ["unit"]=0
+ }
+ },
+ [14457]={
+ ["next_chapter"]=14458,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15611,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5152,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3681,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=371755,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=3681,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=362473,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1445,
+ ["unit"]=0
+ }
+ },
+ [14458]={
+ ["next_chapter"]=14459,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15620,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5155,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3718,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=375472,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=3718,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=362473,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1445,
+ ["unit"]=0
+ }
+ },
+ [14459]={
+ ["next_chapter"]=14460,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15630,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5158,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3755,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=379227,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=3755,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=362473,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1445,
+ ["unit"]=0
+ }
+ },
+ [14460]={
+ ["next_chapter"]=14461,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=15639,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5161,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3792,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=383019,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=3792,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=400396,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1446,
+ ["unit"]=0
+ }
+ },
+ [14461]={
+ ["next_chapter"]=14462,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15649,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5164,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3830,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=386849,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=3830,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=400396,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1446,
+ ["unit"]=0
+ }
+ },
+ [14462]={
+ ["next_chapter"]=14463,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15658,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5167,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3868,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=390718,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=3868,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=400396,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1446,
+ ["unit"]=0
+ }
+ },
+ [14463]={
+ ["next_chapter"]=14464,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15667,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5170,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3907,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=394625,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=3907,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=400396,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1446,
+ ["unit"]=0
+ }
+ },
+ [14464]={
+ ["next_chapter"]=14465,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15677,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5173,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3946,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=398571,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=3946,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=400396,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1446,
+ ["unit"]=0
+ }
+ },
+ [14465]={
+ ["next_chapter"]=14466,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15686,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5176,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3986,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=402557,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=3986,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=400396,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1446,
+ ["unit"]=0
+ }
+ },
+ [14466]={
+ ["next_chapter"]=14467,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15696,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5180,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4026,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=406583,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=4026,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=400396,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1446,
+ ["unit"]=0
+ }
+ },
+ [14467]={
+ ["next_chapter"]=14468,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15705,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5183,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4066,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=410649,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=4066,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=400396,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1446,
+ ["unit"]=0
+ }
+ },
+ [14468]={
+ ["next_chapter"]=14469,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15715,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5186,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4106,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=414755,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=4106,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=400396,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1446,
+ ["unit"]=0
+ }
+ },
+ [14469]={
+ ["next_chapter"]=14470,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15724,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5189,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4148,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=418903,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=4148,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=400396,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1446,
+ ["unit"]=0
+ }
+ },
+ [14470]={
+ ["next_chapter"]=14471,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=15734,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5192,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4189,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=423092,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=4189,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=442286,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1447,
+ ["unit"]=0
+ }
+ },
+ [14471]={
+ ["next_chapter"]=14472,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15743,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5195,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4231,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=427323,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=4231,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=442286,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1447,
+ ["unit"]=0
+ }
+ },
+ [14472]={
+ ["next_chapter"]=14473,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15753,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5198,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4273,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=431596,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=4273,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=442286,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1447,
+ ["unit"]=0
+ }
+ },
+ [14473]={
+ ["next_chapter"]=14474,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15762,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5202,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4316,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=435912,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=4316,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=442286,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1447,
+ ["unit"]=0
+ }
+ },
+ [14474]={
+ ["next_chapter"]=14475,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15772,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5205,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4359,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=440271,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=4359,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=442286,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1447,
+ ["unit"]=0
+ }
+ },
+ [14475]={
+ ["next_chapter"]=14476,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15781,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5208,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4403,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=444674,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=4403,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=442286,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1447,
+ ["unit"]=0
+ }
+ },
+ [14476]={
+ ["next_chapter"]=14477,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15791,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5211,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4447,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=449120,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=4447,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=442286,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1447,
+ ["unit"]=0
+ }
+ },
+ [14477]={
+ ["next_chapter"]=14478,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15800,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5214,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4491,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=453611,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=4491,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=442286,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1447,
+ ["unit"]=0
+ }
+ },
+ [14478]={
+ ["next_chapter"]=14479,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15810,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5217,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4536,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=458148,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=4536,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=442286,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1447,
+ ["unit"]=0
+ }
+ },
+ [14479]={
+ ["next_chapter"]=14480,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15819,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5220,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4581,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=462729,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=4581,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=442286,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1447,
+ ["unit"]=0
+ }
+ },
+ [14480]={
+ ["next_chapter"]=14481,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=15829,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5223,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4627,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=467356,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=4627,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=488559,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1448,
+ ["unit"]=0
+ }
+ },
+ [14481]={
+ ["next_chapter"]=14482,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15838,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5227,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4674,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=472030,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=4674,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=488559,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1448,
+ ["unit"]=0
+ }
+ },
+ [14482]={
+ ["next_chapter"]=14483,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15848,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5230,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4720,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=476750,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=4720,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=488559,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1448,
+ ["unit"]=0
+ }
+ },
+ [14483]={
+ ["next_chapter"]=14484,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15857,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5233,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4768,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=481518,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=4768,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=488559,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1448,
+ ["unit"]=0
+ }
+ },
+ [14484]={
+ ["next_chapter"]=14485,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15867,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5236,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4815,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=486333,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=4815,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=488559,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1448,
+ ["unit"]=0
+ }
+ },
+ [14485]={
+ ["next_chapter"]=14486,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15876,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5239,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4863,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=491196,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=4863,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=488559,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1448,
+ ["unit"]=0
+ }
+ },
+ [14486]={
+ ["next_chapter"]=14487,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15886,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5242,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4912,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=496108,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=4912,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=488559,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1448,
+ ["unit"]=0
+ }
+ },
+ [14487]={
+ ["next_chapter"]=14488,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15896,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5246,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4961,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=501069,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=4961,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=488559,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1448,
+ ["unit"]=0
+ }
+ },
+ [14488]={
+ ["next_chapter"]=14489,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15905,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5249,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5011,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=506080,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=5011,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=488559,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1448,
+ ["unit"]=0
+ }
+ },
+ [14489]={
+ ["next_chapter"]=14490,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15915,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5252,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5061,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=511141,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=5061,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=488559,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1448,
+ ["unit"]=0
+ }
+ },
+ [14490]={
+ ["next_chapter"]=14491,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=15924,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5255,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5111,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=516252,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=5111,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=539673,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1449,
+ ["unit"]=0
+ }
+ },
+ [14491]={
+ ["next_chapter"]=14492,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15934,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5258,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5163,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=521415,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=5163,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=539673,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1449,
+ ["unit"]=0
+ }
+ },
+ [14492]={
+ ["next_chapter"]=14493,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15943,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5261,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5214,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=526629,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=5214,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=539673,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1449,
+ ["unit"]=0
+ }
+ },
+ [14493]={
+ ["next_chapter"]=14494,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15953,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5264,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5266,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=531895,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=5266,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=539673,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1449,
+ ["unit"]=0
+ }
+ },
+ [14494]={
+ ["next_chapter"]=14495,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15962,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5268,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5319,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=537214,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=5319,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=539673,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1449,
+ ["unit"]=0
+ }
+ },
+ [14495]={
+ ["next_chapter"]=14496,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15972,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5271,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5372,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=542586,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=5372,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=539673,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1449,
+ ["unit"]=0
+ }
+ },
+ [14496]={
+ ["next_chapter"]=14497,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15982,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5274,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5426,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=548012,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=5426,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=539673,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1449,
+ ["unit"]=0
+ }
+ },
+ [14497]={
+ ["next_chapter"]=14498,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=15991,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5277,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5480,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=553492,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=5480,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=539673,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1449,
+ ["unit"]=0
+ }
+ },
+ [14498]={
+ ["next_chapter"]=14499,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16001,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5280,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5535,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=559027,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=5535,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=539673,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1449,
+ ["unit"]=0
+ }
+ },
+ [14499]={
+ ["next_chapter"]=14500,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16010,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5283,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5590,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=564617,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=5590,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=539673,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1449,
+ ["unit"]=0
+ }
+ },
+ [14500]={
+ ["next_chapter"]=14501,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=16020,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5287,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5646,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=570264,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=5646,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=596135,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1450,
+ ["unit"]=0
+ }
+ },
+ [14501]={
+ ["next_chapter"]=14502,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16030,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5290,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5703,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=575966,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=5703,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=596135,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1450,
+ ["unit"]=0
+ }
+ },
+ [14502]={
+ ["next_chapter"]=14503,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16039,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5293,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5760,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=581726,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=5760,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=596135,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1450,
+ ["unit"]=0
+ }
+ },
+ [14503]={
+ ["next_chapter"]=14504,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16049,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5296,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5817,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=587543,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=5817,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=596135,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1450,
+ ["unit"]=0
+ }
+ },
+ [14504]={
+ ["next_chapter"]=14505,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16058,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5299,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5875,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=593419,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=5875,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=596135,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1450,
+ ["unit"]=0
+ }
+ },
+ [14505]={
+ ["next_chapter"]=14506,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16068,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5302,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5934,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=599353,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=5934,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=596135,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1450,
+ ["unit"]=0
+ }
+ },
+ [14506]={
+ ["next_chapter"]=14507,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16078,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5306,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5994,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=605346,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=5994,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=596135,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1450,
+ ["unit"]=0
+ }
+ },
+ [14507]={
+ ["next_chapter"]=14508,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16087,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5309,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6053,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=611400,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=6053,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=596135,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1450,
+ ["unit"]=0
+ }
+ },
+ [14508]={
+ ["next_chapter"]=14509,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16097,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5312,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6114,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=617514,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=6114,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=596135,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1450,
+ ["unit"]=0
+ }
+ },
+ [14509]={
+ ["next_chapter"]=14510,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16107,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5315,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6175,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=623689,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=6175,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=596135,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1450,
+ ["unit"]=0
+ }
+ },
+ [14510]={
+ ["next_chapter"]=14511,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=16116,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5318,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6237,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=629926,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=6237,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=658504,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1451,
+ ["unit"]=0
+ }
+ },
+ [14511]={
+ ["next_chapter"]=14512,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16126,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5322,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6299,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=636225,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=6299,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=658504,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1451,
+ ["unit"]=0
+ }
+ },
+ [14512]={
+ ["next_chapter"]=14513,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16135,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5325,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6362,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=642587,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=6362,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=658504,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1451,
+ ["unit"]=0
+ }
+ },
+ [14513]={
+ ["next_chapter"]=14514,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16145,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5328,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6426,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=649013,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=6426,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=658504,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1451,
+ ["unit"]=0
+ }
+ },
+ [14514]={
+ ["next_chapter"]=14515,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16155,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5331,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6490,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=655503,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=6490,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=658504,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1451,
+ ["unit"]=0
+ }
+ },
+ [14515]={
+ ["next_chapter"]=14516,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16164,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5334,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6555,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=662058,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=6555,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=658504,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1451,
+ ["unit"]=0
+ }
+ },
+ [14516]={
+ ["next_chapter"]=14517,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16174,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5337,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6621,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=668679,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=6621,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=658504,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1451,
+ ["unit"]=0
+ }
+ },
+ [14517]={
+ ["next_chapter"]=14518,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16184,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5341,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6687,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=675366,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=6687,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=658504,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1451,
+ ["unit"]=0
+ }
+ },
+ [14518]={
+ ["next_chapter"]=14519,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16193,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5344,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6754,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=682119,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=6754,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=658504,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1451,
+ ["unit"]=0
+ }
+ },
+ [14519]={
+ ["next_chapter"]=14520,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16203,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5347,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6821,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=688940,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=6821,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=658504,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1451,
+ ["unit"]=0
+ }
+ },
+ [14520]={
+ ["next_chapter"]=14521,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=16213,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5350,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6889,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=695830,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=6889,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=727398,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1452,
+ ["unit"]=0
+ }
+ },
+ [14521]={
+ ["next_chapter"]=14522,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16222,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5353,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6958,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=702788,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=6958,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=727398,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1452,
+ ["unit"]=0
+ }
+ },
+ [14522]={
+ ["next_chapter"]=14523,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16232,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5357,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7028,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=709816,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=7028,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=727398,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1452,
+ ["unit"]=0
+ }
+ },
+ [14523]={
+ ["next_chapter"]=14524,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16242,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5360,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7098,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=716914,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=7098,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=727398,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1452,
+ ["unit"]=0
+ }
+ },
+ [14524]={
+ ["next_chapter"]=14525,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16252,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5363,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7169,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=724083,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=7169,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=727398,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1452,
+ ["unit"]=0
+ }
+ },
+ [14525]={
+ ["next_chapter"]=14526,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16261,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5366,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7241,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=731324,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=7241,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=727398,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1452,
+ ["unit"]=0
+ }
+ },
+ [14526]={
+ ["next_chapter"]=14527,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16271,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5369,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7313,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=738637,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=7313,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=727398,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1452,
+ ["unit"]=0
+ }
+ },
+ [14527]={
+ ["next_chapter"]=14528,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16281,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5373,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7386,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=746024,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=7386,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=727398,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1452,
+ ["unit"]=0
+ }
+ },
+ [14528]={
+ ["next_chapter"]=14529,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16290,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5376,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7460,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=753484,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=7460,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=727398,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1452,
+ ["unit"]=0
+ }
+ },
+ [14529]={
+ ["next_chapter"]=14530,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16300,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5379,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7535,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=761019,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=7535,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=727398,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1452,
+ ["unit"]=0
+ }
+ },
+ [14530]={
+ ["next_chapter"]=14531,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=16310,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5382,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7610,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=768629,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=7610,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=803500,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1453,
+ ["unit"]=0
+ }
+ },
+ [14531]={
+ ["next_chapter"]=14532,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16319,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5385,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7686,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=776315,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=7686,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=803500,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1453,
+ ["unit"]=0
+ }
+ },
+ [14532]={
+ ["next_chapter"]=14533,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16329,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5389,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7763,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=784079,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=7763,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=803500,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1453,
+ ["unit"]=0
+ }
+ },
+ [14533]={
+ ["next_chapter"]=14534,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16339,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5392,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7841,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=791919,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=7841,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=803500,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1453,
+ ["unit"]=0
+ }
+ },
+ [14534]={
+ ["next_chapter"]=14535,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16349,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5395,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7919,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=799839,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=7919,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=803500,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1453,
+ ["unit"]=0
+ }
+ },
+ [14535]={
+ ["next_chapter"]=14536,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16358,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5398,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7998,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=807837,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=7998,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=803500,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1453,
+ ["unit"]=0
+ }
+ },
+ [14536]={
+ ["next_chapter"]=14537,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16368,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5401,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8078,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=815915,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=8078,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=803500,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1453,
+ ["unit"]=0
+ }
+ },
+ [14537]={
+ ["next_chapter"]=14538,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16378,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5405,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8159,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=824074,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=8159,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=803500,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1453,
+ ["unit"]=0
+ }
+ },
+ [14538]={
+ ["next_chapter"]=14539,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16388,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5408,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8241,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=832315,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=8241,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=803500,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1453,
+ ["unit"]=0
+ }
+ },
+ [14539]={
+ ["next_chapter"]=14540,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16397,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5411,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8323,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=840638,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=8323,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=803500,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1453,
+ ["unit"]=0
+ }
+ },
+ [14540]={
+ ["next_chapter"]=14541,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=16407,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5414,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8406,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=849045,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=8406,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=887563,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1454,
+ ["unit"]=0
+ }
+ },
+ [14541]={
+ ["next_chapter"]=14542,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16417,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5418,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8490,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=857535,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=8490,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=887563,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1454,
+ ["unit"]=0
+ }
+ },
+ [14542]={
+ ["next_chapter"]=14543,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16427,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5421,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8575,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=866111,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=8575,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=887563,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1454,
+ ["unit"]=0
+ }
+ },
+ [14543]={
+ ["next_chapter"]=14544,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16436,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5424,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8661,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=874772,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=8661,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=887563,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1454,
+ ["unit"]=0
+ }
+ },
+ [14544]={
+ ["next_chapter"]=14545,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16446,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5427,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8748,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=883519,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=8748,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=887563,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1454,
+ ["unit"]=0
+ }
+ },
+ [14545]={
+ ["next_chapter"]=14546,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16456,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5430,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8835,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=892355,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=8835,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=887563,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1454,
+ ["unit"]=0
+ }
+ },
+ [14546]={
+ ["next_chapter"]=14547,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16466,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5434,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8924,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=901278,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=8924,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=887563,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1454,
+ ["unit"]=0
+ }
+ },
+ [14547]={
+ ["next_chapter"]=14548,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16475,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5437,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=9013,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=910291,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=9013,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=887563,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1454,
+ ["unit"]=0
+ }
+ },
+ [14548]={
+ ["next_chapter"]=14549,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16485,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5440,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=9103,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=919394,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=9103,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=887563,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1454,
+ ["unit"]=0
+ }
+ },
+ [14549]={
+ ["next_chapter"]=14550,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16495,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5443,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=9194,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=928588,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=9194,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=887563,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1454,
+ ["unit"]=0
+ }
+ },
+ [14550]={
+ ["next_chapter"]=14551,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=16505,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5447,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=9286,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=937874,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=9286,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=980422,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1455,
+ ["unit"]=0
+ }
+ },
+ [14551]={
+ ["next_chapter"]=14552,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16515,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5450,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=9379,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=947252,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=9379,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=980422,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1455,
+ ["unit"]=0
+ }
+ },
+ [14552]={
+ ["next_chapter"]=14553,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16524,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5453,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=9473,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=956725,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=9473,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=980422,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1455,
+ ["unit"]=0
+ }
+ },
+ [14553]={
+ ["next_chapter"]=14554,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16534,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5456,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=9567,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=966292,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=9567,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=980422,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1455,
+ ["unit"]=0
+ }
+ },
+ [14554]={
+ ["next_chapter"]=14555,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16544,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5460,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=9663,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=975955,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=9663,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=980422,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1455,
+ ["unit"]=0
+ }
+ },
+ [14555]={
+ ["next_chapter"]=14556,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16554,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5463,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=9760,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=985715,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=9760,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=980422,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1455,
+ ["unit"]=0
+ }
+ },
+ [14556]={
+ ["next_chapter"]=14557,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16564,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5466,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=9857,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=995572,
+ ["unit"]=20
+ },
+ ["idle_gold"]={
+ ["value"]=9857,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=980422,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1455,
+ ["unit"]=0
+ }
+ },
+ [14557]={
+ ["next_chapter"]=14558,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16573,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5469,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=9956,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1006,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=9956,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=980422,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1455,
+ ["unit"]=0
+ }
+ },
+ [14558]={
+ ["next_chapter"]=14559,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16583,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5472,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=10055,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1016,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=10055,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=980422,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1455,
+ ["unit"]=0
+ }
+ },
+ [14559]={
+ ["next_chapter"]=14560,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16593,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5476,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=10156,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1026,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=10156,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=980422,
+ ["unit"]=20
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1455,
+ ["unit"]=0
+ }
+ },
+ [14560]={
+ ["next_chapter"]=14561,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=16603,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5479,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=10257,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1036,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=10257,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1083,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1456,
+ ["unit"]=0
+ }
+ },
+ [14561]={
+ ["next_chapter"]=14562,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16613,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5482,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=10360,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1046,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=10360,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1083,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1456,
+ ["unit"]=0
+ }
+ },
+ [14562]={
+ ["next_chapter"]=14563,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16623,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5485,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=10464,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1057,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=10464,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1083,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1456,
+ ["unit"]=0
+ }
+ },
+ [14563]={
+ ["next_chapter"]=14564,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16632,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5489,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=10568,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1067,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=10568,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1083,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1456,
+ ["unit"]=0
+ }
+ },
+ [14564]={
+ ["next_chapter"]=14565,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16642,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5492,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=10674,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1078,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=10674,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1083,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1456,
+ ["unit"]=0
+ }
+ },
+ [14565]={
+ ["next_chapter"]=14566,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16652,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5495,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=10781,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1089,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=10781,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1083,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1456,
+ ["unit"]=0
+ }
+ },
+ [14566]={
+ ["next_chapter"]=14567,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16662,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5498,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=10888,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1100,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=10888,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1083,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1456,
+ ["unit"]=0
+ }
+ },
+ [14567]={
+ ["next_chapter"]=14568,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16672,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5502,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=10997,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1111,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=10997,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1083,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1456,
+ ["unit"]=0
+ }
+ },
+ [14568]={
+ ["next_chapter"]=14569,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16682,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5505,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=11107,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1122,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=11107,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1083,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1456,
+ ["unit"]=0
+ }
+ },
+ [14569]={
+ ["next_chapter"]=14570,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16692,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5508,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=11218,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1133,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=11218,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1083,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1456,
+ ["unit"]=0
+ }
+ },
+ [14570]={
+ ["next_chapter"]=14571,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=16701,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5511,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=11331,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1144,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=11331,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1196,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1457,
+ ["unit"]=0
+ }
+ },
+ [14571]={
+ ["next_chapter"]=14572,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16711,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5515,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=11444,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1156,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=11444,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1196,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1457,
+ ["unit"]=0
+ }
+ },
+ [14572]={
+ ["next_chapter"]=14573,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16721,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5518,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=11558,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1167,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=11558,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1196,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1457,
+ ["unit"]=0
+ }
+ },
+ [14573]={
+ ["next_chapter"]=14574,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16731,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5521,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=11674,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1179,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=11674,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1196,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1457,
+ ["unit"]=0
+ }
+ },
+ [14574]={
+ ["next_chapter"]=14575,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16741,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5525,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=11791,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1191,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=11791,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1196,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1457,
+ ["unit"]=0
+ }
+ },
+ [14575]={
+ ["next_chapter"]=14576,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16751,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5528,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=11909,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1203,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=11909,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1196,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1457,
+ ["unit"]=0
+ }
+ },
+ [14576]={
+ ["next_chapter"]=14577,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16761,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5531,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=12028,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1215,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=12028,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1196,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1457,
+ ["unit"]=0
+ }
+ },
+ [14577]={
+ ["next_chapter"]=14578,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16771,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5534,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=12148,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1227,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=12148,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1196,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1457,
+ ["unit"]=0
+ }
+ },
+ [14578]={
+ ["next_chapter"]=14579,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16781,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5538,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=12269,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1239,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=12269,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1196,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1457,
+ ["unit"]=0
+ }
+ },
+ [14579]={
+ ["next_chapter"]=14580,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16790,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5541,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=12392,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1252,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=12392,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1196,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1457,
+ ["unit"]=0
+ }
+ },
+ [14580]={
+ ["next_chapter"]=14581,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=16800,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5544,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=12516,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1264,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=12516,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1321,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1458,
+ ["unit"]=0
+ }
+ },
+ [14581]={
+ ["next_chapter"]=14582,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16810,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5547,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=12641,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1277,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=12641,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1321,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1458,
+ ["unit"]=0
+ }
+ },
+ [14582]={
+ ["next_chapter"]=14583,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16820,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5551,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=12768,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1290,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=12768,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1321,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1458,
+ ["unit"]=0
+ }
+ },
+ [14583]={
+ ["next_chapter"]=14584,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16830,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5554,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=12895,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1302,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=12895,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1321,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1458,
+ ["unit"]=0
+ }
+ },
+ [14584]={
+ ["next_chapter"]=14585,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16840,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5557,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=13024,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1315,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=13024,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1321,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1458,
+ ["unit"]=0
+ }
+ },
+ [14585]={
+ ["next_chapter"]=14586,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16850,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5560,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=13154,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1329,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=13154,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1321,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1458,
+ ["unit"]=0
+ }
+ },
+ [14586]={
+ ["next_chapter"]=14587,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16860,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5564,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=13286,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1342,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=13286,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1321,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1458,
+ ["unit"]=0
+ }
+ },
+ [14587]={
+ ["next_chapter"]=14588,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16870,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5567,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=13419,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1355,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=13419,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1321,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1458,
+ ["unit"]=0
+ }
+ },
+ [14588]={
+ ["next_chapter"]=14589,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16880,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5570,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=13553,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1369,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=13553,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1321,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1458,
+ ["unit"]=0
+ }
+ },
+ [14589]={
+ ["next_chapter"]=14590,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16890,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5574,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=13689,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1383,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=13689,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1321,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1458,
+ ["unit"]=0
+ }
+ },
+ [14590]={
+ ["next_chapter"]=14591,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=16900,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5577,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=13825,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1396,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=13825,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1460,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1459,
+ ["unit"]=0
+ }
+ },
+ [14591]={
+ ["next_chapter"]=14592,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16910,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5580,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=13964,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1410,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=13964,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1460,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1459,
+ ["unit"]=0
+ }
+ },
+ [14592]={
+ ["next_chapter"]=14593,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16920,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5583,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=14103,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1424,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=14103,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1460,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1459,
+ ["unit"]=0
+ }
+ },
+ [14593]={
+ ["next_chapter"]=14594,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16930,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5587,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=14244,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1439,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=14244,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1460,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1459,
+ ["unit"]=0
+ }
+ },
+ [14594]={
+ ["next_chapter"]=14595,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16939,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5590,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=14387,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1453,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=14387,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1460,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1459,
+ ["unit"]=0
+ }
+ },
+ [14595]={
+ ["next_chapter"]=14596,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16949,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5593,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=14531,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1468,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=14531,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1460,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1459,
+ ["unit"]=0
+ }
+ },
+ [14596]={
+ ["next_chapter"]=14597,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16959,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5597,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=14676,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1482,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=14676,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1460,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1459,
+ ["unit"]=0
+ }
+ },
+ [14597]={
+ ["next_chapter"]=14598,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16969,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5600,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=14823,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1497,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=14823,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1460,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1459,
+ ["unit"]=0
+ }
+ },
+ [14598]={
+ ["next_chapter"]=14599,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16979,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5603,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=14971,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1512,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=14971,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1460,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1459,
+ ["unit"]=0
+ }
+ },
+ [14599]={
+ ["next_chapter"]=14600,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=16989,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5606,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=15121,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1527,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=15121,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1460,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1459,
+ ["unit"]=0
+ }
+ },
+ [14600]={
+ ["next_chapter"]=14601,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=16999,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5610,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=15272,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1542,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=15272,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1612,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1460,
+ ["unit"]=0
+ }
+ },
+ [14601]={
+ ["next_chapter"]=14602,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17009,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5613,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=15425,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1558,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=15425,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1612,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1460,
+ ["unit"]=0
+ }
+ },
+ [14602]={
+ ["next_chapter"]=14603,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17019,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5616,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=15579,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1573,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=15579,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1612,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1460,
+ ["unit"]=0
+ }
+ },
+ [14603]={
+ ["next_chapter"]=14604,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17029,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5620,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=15735,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1589,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=15735,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1612,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1460,
+ ["unit"]=0
+ }
+ },
+ [14604]={
+ ["next_chapter"]=14605,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17039,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5623,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=15892,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1605,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=15892,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1612,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1460,
+ ["unit"]=0
+ }
+ },
+ [14605]={
+ ["next_chapter"]=14606,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17049,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5626,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=16051,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1621,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=16051,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1612,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1460,
+ ["unit"]=0
+ }
+ },
+ [14606]={
+ ["next_chapter"]=14607,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17059,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5630,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=16211,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1637,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=16211,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1612,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1460,
+ ["unit"]=0
+ }
+ },
+ [14607]={
+ ["next_chapter"]=14608,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17069,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5633,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=16373,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1654,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=16373,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1612,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1460,
+ ["unit"]=0
+ }
+ },
+ [14608]={
+ ["next_chapter"]=14609,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17079,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5636,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=16537,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1670,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=16537,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1612,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1460,
+ ["unit"]=0
+ }
+ },
+ [14609]={
+ ["next_chapter"]=14610,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17089,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5639,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=16703,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1687,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=16703,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1612,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1460,
+ ["unit"]=0
+ }
+ },
+ [14610]={
+ ["next_chapter"]=14611,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=17099,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5643,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=16870,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1704,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=16870,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1781,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1461,
+ ["unit"]=0
+ }
+ },
+ [14611]={
+ ["next_chapter"]=14612,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17109,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5646,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=17038,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1721,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=17038,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1781,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1461,
+ ["unit"]=0
+ }
+ },
+ [14612]={
+ ["next_chapter"]=14613,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17119,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5649,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=17209,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1738,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=17209,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1781,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1461,
+ ["unit"]=0
+ }
+ },
+ [14613]={
+ ["next_chapter"]=14614,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17130,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5653,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=17381,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1755,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=17381,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1781,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1461,
+ ["unit"]=0
+ }
+ },
+ [14614]={
+ ["next_chapter"]=14615,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17140,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5656,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=17555,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1773,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=17555,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1781,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1461,
+ ["unit"]=0
+ }
+ },
+ [14615]={
+ ["next_chapter"]=14616,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17150,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5659,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=17730,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1791,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=17730,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1781,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1461,
+ ["unit"]=0
+ }
+ },
+ [14616]={
+ ["next_chapter"]=14617,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17160,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5663,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=17907,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1809,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=17907,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1781,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1461,
+ ["unit"]=0
+ }
+ },
+ [14617]={
+ ["next_chapter"]=14618,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17170,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5666,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=18087,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1827,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=18087,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1781,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1461,
+ ["unit"]=0
+ }
+ },
+ [14618]={
+ ["next_chapter"]=14619,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17180,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5669,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=18267,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1845,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=18267,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1781,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1461,
+ ["unit"]=0
+ }
+ },
+ [14619]={
+ ["next_chapter"]=14620,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17190,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5673,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=18450,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1863,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=18450,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1781,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1461,
+ ["unit"]=0
+ }
+ },
+ [14620]={
+ ["next_chapter"]=14621,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=17200,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5676,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=18635,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1882,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=18635,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1967,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1462,
+ ["unit"]=0
+ }
+ },
+ [14621]={
+ ["next_chapter"]=14622,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17210,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5679,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=18821,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1901,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=18821,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1967,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1462,
+ ["unit"]=0
+ }
+ },
+ [14622]={
+ ["next_chapter"]=14623,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17220,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5683,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=19009,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1920,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=19009,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1967,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1462,
+ ["unit"]=0
+ }
+ },
+ [14623]={
+ ["next_chapter"]=14624,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17230,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5686,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=19199,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1939,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=19199,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1967,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1462,
+ ["unit"]=0
+ }
+ },
+ [14624]={
+ ["next_chapter"]=14625,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17240,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5689,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=19391,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1959,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=19391,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1967,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1462,
+ ["unit"]=0
+ }
+ },
+ [14625]={
+ ["next_chapter"]=14626,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17250,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5693,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=19585,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1978,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=19585,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1967,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1462,
+ ["unit"]=0
+ }
+ },
+ [14626]={
+ ["next_chapter"]=14627,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17260,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5696,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=19781,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1998,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=19781,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1967,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1462,
+ ["unit"]=0
+ }
+ },
+ [14627]={
+ ["next_chapter"]=14628,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17270,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5699,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=19979,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2018,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=19979,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1967,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1462,
+ ["unit"]=0
+ }
+ },
+ [14628]={
+ ["next_chapter"]=14629,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17281,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5703,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=20179,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2038,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=20179,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1967,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1462,
+ ["unit"]=0
+ }
+ },
+ [14629]={
+ ["next_chapter"]=14630,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17291,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5706,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=20380,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2058,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=20380,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=1967,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1462,
+ ["unit"]=0
+ }
+ },
+ [14630]={
+ ["next_chapter"]=14631,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=17301,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5709,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=20584,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2079,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=20584,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=2173,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1463,
+ ["unit"]=0
+ }
+ },
+ [14631]={
+ ["next_chapter"]=14632,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17311,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5713,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=20790,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2100,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=20790,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=2173,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1463,
+ ["unit"]=0
+ }
+ },
+ [14632]={
+ ["next_chapter"]=14633,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17321,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5716,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=20998,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2121,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=20998,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=2173,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1463,
+ ["unit"]=0
+ }
+ },
+ [14633]={
+ ["next_chapter"]=14634,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17331,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5719,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=21208,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2142,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=21208,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=2173,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1463,
+ ["unit"]=0
+ }
+ },
+ [14634]={
+ ["next_chapter"]=14635,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17341,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5723,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=21420,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2163,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=21420,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=2173,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1463,
+ ["unit"]=0
+ }
+ },
+ [14635]={
+ ["next_chapter"]=14636,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17351,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5726,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=21634,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2185,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=21634,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=2173,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1463,
+ ["unit"]=0
+ }
+ },
+ [14636]={
+ ["next_chapter"]=14637,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17361,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5729,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=21850,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2207,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=21850,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=2173,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1463,
+ ["unit"]=0
+ }
+ },
+ [14637]={
+ ["next_chapter"]=14638,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17372,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5733,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=22069,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2229,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=22069,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=2173,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1463,
+ ["unit"]=0
+ }
+ },
+ [14638]={
+ ["next_chapter"]=14639,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17382,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5736,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=22290,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2251,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=22290,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=2173,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1463,
+ ["unit"]=0
+ }
+ },
+ [14639]={
+ ["next_chapter"]=14640,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17392,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5739,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=22513,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2274,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=22513,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=2173,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1463,
+ ["unit"]=0
+ }
+ },
+ [14640]={
+ ["next_chapter"]=14641,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=17402,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5743,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=22738,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2297,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=22738,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=2401,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1464,
+ ["unit"]=0
+ }
+ },
+ [14641]={
+ ["next_chapter"]=14642,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17412,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5746,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=22965,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2319,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=22965,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=2401,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1464,
+ ["unit"]=0
+ }
+ },
+ [14642]={
+ ["next_chapter"]=14643,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17422,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5749,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=23195,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2343,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=23195,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=2401,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1464,
+ ["unit"]=0
+ }
+ },
+ [14643]={
+ ["next_chapter"]=14644,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17432,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5753,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=23427,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2366,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=23427,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=2401,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1464,
+ ["unit"]=0
+ }
+ },
+ [14644]={
+ ["next_chapter"]=14645,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17443,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5756,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=23661,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2390,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=23661,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=2401,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1464,
+ ["unit"]=0
+ }
+ },
+ [14645]={
+ ["next_chapter"]=14646,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17453,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5759,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=23898,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2414,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=23898,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=2401,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1464,
+ ["unit"]=0
+ }
+ },
+ [14646]={
+ ["next_chapter"]=14647,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17463,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5763,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=24137,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2438,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=24137,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=2401,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1464,
+ ["unit"]=0
+ }
+ },
+ [14647]={
+ ["next_chapter"]=14648,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17473,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5766,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=24378,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2462,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=24378,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=2401,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1464,
+ ["unit"]=0
+ }
+ },
+ [14648]={
+ ["next_chapter"]=14649,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17483,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5769,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=24622,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2487,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=24622,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=2401,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1464,
+ ["unit"]=0
+ }
+ },
+ [14649]={
+ ["next_chapter"]=14650,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17493,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5773,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=24868,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2512,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=24868,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=2401,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1464,
+ ["unit"]=0
+ }
+ },
+ [14650]={
+ ["next_chapter"]=14651,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=17504,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5776,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=25117,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2537,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=25117,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=2652,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1465,
+ ["unit"]=0
+ }
+ },
+ [14651]={
+ ["next_chapter"]=14652,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17514,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5780,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=25368,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2562,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=25368,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=2652,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1465,
+ ["unit"]=0
+ }
+ },
+ [14652]={
+ ["next_chapter"]=14653,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17524,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5783,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=25621,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2588,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=25621,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=2652,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1465,
+ ["unit"]=0
+ }
+ },
+ [14653]={
+ ["next_chapter"]=14654,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17534,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5786,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=25878,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2614,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=25878,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=2652,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1465,
+ ["unit"]=0
+ }
+ },
+ [14654]={
+ ["next_chapter"]=14655,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17544,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5790,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=26136,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2640,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=26136,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=2652,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1465,
+ ["unit"]=0
+ }
+ },
+ [14655]={
+ ["next_chapter"]=14656,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17555,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5793,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=26398,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2666,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=26398,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=2652,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1465,
+ ["unit"]=0
+ }
+ },
+ [14656]={
+ ["next_chapter"]=14657,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17565,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5796,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=26662,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2693,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=26662,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=2652,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1465,
+ ["unit"]=0
+ }
+ },
+ [14657]={
+ ["next_chapter"]=14658,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17575,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5800,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=26928,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2720,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=26928,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=2652,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1465,
+ ["unit"]=0
+ }
+ },
+ [14658]={
+ ["next_chapter"]=14659,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17585,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5803,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=27198,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2747,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=27198,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=2652,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1465,
+ ["unit"]=0
+ }
+ },
+ [14659]={
+ ["next_chapter"]=14660,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17595,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5806,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=27470,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2774,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=27470,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=2652,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1465,
+ ["unit"]=0
+ }
+ },
+ [14660]={
+ ["next_chapter"]=14661,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=17606,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5810,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=27744,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2802,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=27744,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=2929,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1466,
+ ["unit"]=0
+ }
+ },
+ [14661]={
+ ["next_chapter"]=14662,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17616,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5813,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=28022,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2830,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=28022,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=2929,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1466,
+ ["unit"]=0
+ }
+ },
+ [14662]={
+ ["next_chapter"]=14663,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17626,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5817,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=28302,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2858,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=28302,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=2929,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1466,
+ ["unit"]=0
+ }
+ },
+ [14663]={
+ ["next_chapter"]=14664,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17636,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5820,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=28585,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2887,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=28585,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=2929,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1466,
+ ["unit"]=0
+ }
+ },
+ [14664]={
+ ["next_chapter"]=14665,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17647,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5823,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=28871,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2916,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=28871,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=2929,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1466,
+ ["unit"]=0
+ }
+ },
+ [14665]={
+ ["next_chapter"]=14666,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17657,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5827,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=29160,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2945,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=29160,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=2929,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1466,
+ ["unit"]=0
+ }
+ },
+ [14666]={
+ ["next_chapter"]=14667,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17667,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5830,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=29451,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2975,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=29451,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=2929,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1466,
+ ["unit"]=0
+ }
+ },
+ [14667]={
+ ["next_chapter"]=14668,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17677,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5834,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=29746,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3004,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=29746,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=2929,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1466,
+ ["unit"]=0
+ }
+ },
+ [14668]={
+ ["next_chapter"]=14669,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17688,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5837,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=30043,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3034,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=30043,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=2929,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1466,
+ ["unit"]=0
+ }
+ },
+ [14669]={
+ ["next_chapter"]=14670,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17698,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5840,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=30344,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3065,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=30344,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=2929,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1466,
+ ["unit"]=0
+ }
+ },
+ [14670]={
+ ["next_chapter"]=14671,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=17708,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5844,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=30647,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3095,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=30647,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=3236,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1467,
+ ["unit"]=0
+ }
+ },
+ [14671]={
+ ["next_chapter"]=14672,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17718,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5847,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=30953,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3126,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=30953,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=3236,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1467,
+ ["unit"]=0
+ }
+ },
+ [14672]={
+ ["next_chapter"]=14673,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17729,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5850,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=31263,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3158,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=31263,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=3236,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1467,
+ ["unit"]=0
+ }
+ },
+ [14673]={
+ ["next_chapter"]=14674,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17739,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5854,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=31576,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3189,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=31576,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=3236,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1467,
+ ["unit"]=0
+ }
+ },
+ [14674]={
+ ["next_chapter"]=14675,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17749,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5857,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=31891,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3221,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=31891,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=3236,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1467,
+ ["unit"]=0
+ }
+ },
+ [14675]={
+ ["next_chapter"]=14676,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17759,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5861,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=32210,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3253,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=32210,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=3236,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1467,
+ ["unit"]=0
+ }
+ },
+ [14676]={
+ ["next_chapter"]=14677,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17770,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5864,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=32532,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3286,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=32532,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=3236,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1467,
+ ["unit"]=0
+ }
+ },
+ [14677]={
+ ["next_chapter"]=14678,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17780,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5867,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=32858,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3319,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=32858,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=3236,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1467,
+ ["unit"]=0
+ }
+ },
+ [14678]={
+ ["next_chapter"]=14679,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17790,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5871,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=33186,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3352,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=33186,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=3236,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1467,
+ ["unit"]=0
+ }
+ },
+ [14679]={
+ ["next_chapter"]=14680,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17801,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5874,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=33518,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3385,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=33518,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=3236,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1467,
+ ["unit"]=0
+ }
+ },
+ [14680]={
+ ["next_chapter"]=14681,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=17811,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5878,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=33853,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3419,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=33853,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=3574,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1468,
+ ["unit"]=0
+ }
+ },
+ [14681]={
+ ["next_chapter"]=14682,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17821,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5881,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=34192,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3453,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=34192,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=3574,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1468,
+ ["unit"]=0
+ }
+ },
+ [14682]={
+ ["next_chapter"]=14683,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17832,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5884,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=34534,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3488,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=34534,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=3574,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1468,
+ ["unit"]=0
+ }
+ },
+ [14683]={
+ ["next_chapter"]=14684,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17842,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5888,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=34879,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3523,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=34879,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=3574,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1468,
+ ["unit"]=0
+ }
+ },
+ [14684]={
+ ["next_chapter"]=14685,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17852,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5891,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=35228,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3558,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=35228,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=3574,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1468,
+ ["unit"]=0
+ }
+ },
+ [14685]={
+ ["next_chapter"]=14686,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17863,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5895,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=35580,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3594,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=35580,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=3574,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1468,
+ ["unit"]=0
+ }
+ },
+ [14686]={
+ ["next_chapter"]=14687,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17873,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5898,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=35936,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3630,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=35936,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=3574,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1468,
+ ["unit"]=0
+ }
+ },
+ [14687]={
+ ["next_chapter"]=14688,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17883,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5901,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=36295,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3666,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=36295,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=3574,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1468,
+ ["unit"]=0
+ }
+ },
+ [14688]={
+ ["next_chapter"]=14689,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17894,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5905,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=36658,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3702,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=36658,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=3574,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1468,
+ ["unit"]=0
+ }
+ },
+ [14689]={
+ ["next_chapter"]=14690,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17904,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5908,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=37025,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3740,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=37025,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=3574,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1468,
+ ["unit"]=0
+ }
+ },
+ [14690]={
+ ["next_chapter"]=14691,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=17914,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5912,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=37395,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3777,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=37395,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=3948,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1469,
+ ["unit"]=0
+ }
+ },
+ [14691]={
+ ["next_chapter"]=14692,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17925,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5915,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=37769,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3815,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=37769,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=3948,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1469,
+ ["unit"]=0
+ }
+ },
+ [14692]={
+ ["next_chapter"]=14693,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17935,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5919,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=38147,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3853,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=38147,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=3948,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1469,
+ ["unit"]=0
+ }
+ },
+ [14693]={
+ ["next_chapter"]=14694,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17945,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5922,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=38528,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3891,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=38528,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=3948,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1469,
+ ["unit"]=0
+ }
+ },
+ [14694]={
+ ["next_chapter"]=14695,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17956,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5925,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=38914,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3930,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=38914,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=3948,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1469,
+ ["unit"]=0
+ }
+ },
+ [14695]={
+ ["next_chapter"]=14696,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17966,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5929,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=39303,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3970,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=39303,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=3948,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1469,
+ ["unit"]=0
+ }
+ },
+ [14696]={
+ ["next_chapter"]=14697,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17976,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5932,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=39696,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4009,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=39696,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=3948,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1469,
+ ["unit"]=0
+ }
+ },
+ [14697]={
+ ["next_chapter"]=14698,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17987,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5936,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=40093,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4049,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=40093,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=3948,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1469,
+ ["unit"]=0
+ }
+ },
+ [14698]={
+ ["next_chapter"]=14699,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=17997,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5939,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=40494,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4090,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=40494,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=3948,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1469,
+ ["unit"]=0
+ }
+ },
+ [14699]={
+ ["next_chapter"]=14700,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18007,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5942,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=40899,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4131,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=40899,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=3948,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1469,
+ ["unit"]=0
+ }
+ },
+ [14700]={
+ ["next_chapter"]=14701,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=18018,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5946,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=41308,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4172,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=41308,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=4361,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1470,
+ ["unit"]=0
+ }
+ },
+ [14701]={
+ ["next_chapter"]=14702,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18028,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5949,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=41721,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4214,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=41721,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=4361,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1470,
+ ["unit"]=0
+ }
+ },
+ [14702]={
+ ["next_chapter"]=14703,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18039,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5953,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=42138,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4256,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=42138,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=4361,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1470,
+ ["unit"]=0
+ }
+ },
+ [14703]={
+ ["next_chapter"]=14704,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18049,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5956,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=42559,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4298,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=42559,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=4361,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1470,
+ ["unit"]=0
+ }
+ },
+ [14704]={
+ ["next_chapter"]=14705,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18059,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5960,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=42985,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4341,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=42985,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=4361,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1470,
+ ["unit"]=0
+ }
+ },
+ [14705]={
+ ["next_chapter"]=14706,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18070,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5963,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=43415,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4385,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=43415,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=4361,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1470,
+ ["unit"]=0
+ }
+ },
+ [14706]={
+ ["next_chapter"]=14707,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18080,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5966,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=43849,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4429,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=43849,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=4361,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1470,
+ ["unit"]=0
+ }
+ },
+ [14707]={
+ ["next_chapter"]=14708,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18091,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5970,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=44287,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4473,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=44287,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=4361,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1470,
+ ["unit"]=0
+ }
+ },
+ [14708]={
+ ["next_chapter"]=14709,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18101,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5973,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=44730,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4518,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=44730,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=4361,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1470,
+ ["unit"]=0
+ }
+ },
+ [14709]={
+ ["next_chapter"]=14710,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18111,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5977,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=45177,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4563,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=45177,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=4361,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1470,
+ ["unit"]=0
+ }
+ },
+ [14710]={
+ ["next_chapter"]=14711,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=18122,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5980,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=45629,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4609,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=45629,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=4818,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1471,
+ ["unit"]=0
+ }
+ },
+ [14711]={
+ ["next_chapter"]=14712,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18132,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5984,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=46085,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4655,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=46085,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=4818,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1471,
+ ["unit"]=0
+ }
+ },
+ [14712]={
+ ["next_chapter"]=14713,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18143,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5987,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=46546,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4701,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=46546,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=4818,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1471,
+ ["unit"]=0
+ }
+ },
+ [14713]={
+ ["next_chapter"]=14714,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18153,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5991,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=47012,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4748,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=47012,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=4818,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1471,
+ ["unit"]=0
+ }
+ },
+ [14714]={
+ ["next_chapter"]=14715,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18164,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5994,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=47482,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4796,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=47482,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=4818,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1471,
+ ["unit"]=0
+ }
+ },
+ [14715]={
+ ["next_chapter"]=14716,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18174,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=5997,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=47957,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4844,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=47957,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=4818,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1471,
+ ["unit"]=0
+ }
+ },
+ [14716]={
+ ["next_chapter"]=14717,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18184,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6001,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=48436,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4892,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=48436,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=4818,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1471,
+ ["unit"]=0
+ }
+ },
+ [14717]={
+ ["next_chapter"]=14718,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18195,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6004,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=48921,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4941,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=48921,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=4818,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1471,
+ ["unit"]=0
+ }
+ },
+ [14718]={
+ ["next_chapter"]=14719,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18205,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6008,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=49410,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4990,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=49410,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=4818,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1471,
+ ["unit"]=0
+ }
+ },
+ [14719]={
+ ["next_chapter"]=14720,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18216,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6011,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=49904,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5040,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=49904,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=4818,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1471,
+ ["unit"]=0
+ }
+ },
+ [14720]={
+ ["next_chapter"]=14721,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=18226,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6015,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=50403,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5091,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=50403,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=5322,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1472,
+ ["unit"]=0
+ }
+ },
+ [14721]={
+ ["next_chapter"]=14722,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18237,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6018,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=50907,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5142,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=50907,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=5322,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1472,
+ ["unit"]=0
+ }
+ },
+ [14722]={
+ ["next_chapter"]=14723,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18247,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6022,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=51416,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5193,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=51416,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=5322,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1472,
+ ["unit"]=0
+ }
+ },
+ [14723]={
+ ["next_chapter"]=14724,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18258,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6025,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=51930,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5245,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=51930,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=5322,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1472,
+ ["unit"]=0
+ }
+ },
+ [14724]={
+ ["next_chapter"]=14725,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18268,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6028,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=52450,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5297,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=52450,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=5322,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1472,
+ ["unit"]=0
+ }
+ },
+ [14725]={
+ ["next_chapter"]=14726,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18279,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6032,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=52974,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5350,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=52974,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=5322,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1472,
+ ["unit"]=0
+ }
+ },
+ [14726]={
+ ["next_chapter"]=14727,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18289,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6035,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=53504,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5404,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=53504,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=5322,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1472,
+ ["unit"]=0
+ }
+ },
+ [14727]={
+ ["next_chapter"]=14728,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18300,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6039,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=54039,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5458,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=54039,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=5322,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1472,
+ ["unit"]=0
+ }
+ },
+ [14728]={
+ ["next_chapter"]=14729,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18310,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6042,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=54579,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5513,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=54579,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=5322,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1472,
+ ["unit"]=0
+ }
+ },
+ [14729]={
+ ["next_chapter"]=14730,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18321,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6046,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=55125,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5568,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=55125,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=5322,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1472,
+ ["unit"]=0
+ }
+ },
+ [14730]={
+ ["next_chapter"]=14731,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=18331,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6049,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=55676,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5623,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=55676,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=5878,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1473,
+ ["unit"]=0
+ }
+ },
+ [14731]={
+ ["next_chapter"]=14732,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18342,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6053,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=56233,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5680,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=56233,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=5878,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1473,
+ ["unit"]=0
+ }
+ },
+ [14732]={
+ ["next_chapter"]=14733,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18352,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6056,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=56795,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5736,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=56795,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=5878,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1473,
+ ["unit"]=0
+ }
+ },
+ [14733]={
+ ["next_chapter"]=14734,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18363,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6060,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=57363,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5794,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=57363,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=5878,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1473,
+ ["unit"]=0
+ }
+ },
+ [14734]={
+ ["next_chapter"]=14735,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18373,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6063,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=57937,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5852,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=57937,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=5878,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1473,
+ ["unit"]=0
+ }
+ },
+ [14735]={
+ ["next_chapter"]=14736,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18384,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6067,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=58516,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5910,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=58516,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=5878,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1473,
+ ["unit"]=0
+ }
+ },
+ [14736]={
+ ["next_chapter"]=14737,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18394,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6070,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=59101,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5969,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=59101,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=5878,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1473,
+ ["unit"]=0
+ }
+ },
+ [14737]={
+ ["next_chapter"]=14738,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18405,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6074,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=59693,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6029,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=59693,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=5878,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1473,
+ ["unit"]=0
+ }
+ },
+ [14738]={
+ ["next_chapter"]=14739,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18415,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6077,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=60289,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6089,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=60289,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=5878,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1473,
+ ["unit"]=0
+ }
+ },
+ [14739]={
+ ["next_chapter"]=14740,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18426,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6081,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=60892,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6150,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=60892,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=5878,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1473,
+ ["unit"]=0
+ }
+ },
+ [14740]={
+ ["next_chapter"]=14741,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=18436,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6084,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=61501,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6212,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=61501,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=6493,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1474,
+ ["unit"]=0
+ }
+ },
+ [14741]={
+ ["next_chapter"]=14742,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18447,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6087,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=62116,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6274,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=62116,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=6493,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1474,
+ ["unit"]=0
+ }
+ },
+ [14742]={
+ ["next_chapter"]=14743,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18457,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6091,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=62737,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6336,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=62737,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=6493,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1474,
+ ["unit"]=0
+ }
+ },
+ [14743]={
+ ["next_chapter"]=14744,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18468,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6094,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=63365,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6400,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=63365,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=6493,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1474,
+ ["unit"]=0
+ }
+ },
+ [14744]={
+ ["next_chapter"]=14745,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18479,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6098,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=63998,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6464,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=63998,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=6493,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1474,
+ ["unit"]=0
+ }
+ },
+ [14745]={
+ ["next_chapter"]=14746,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18489,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6101,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=64638,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6528,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=64638,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=6493,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1474,
+ ["unit"]=0
+ }
+ },
+ [14746]={
+ ["next_chapter"]=14747,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18500,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6105,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=65285,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6594,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=65285,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=6493,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1474,
+ ["unit"]=0
+ }
+ },
+ [14747]={
+ ["next_chapter"]=14748,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18510,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6108,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=65938,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6660,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=65938,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=6493,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1474,
+ ["unit"]=0
+ }
+ },
+ [14748]={
+ ["next_chapter"]=14749,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18521,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6112,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=66597,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6726,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=66597,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=6493,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1474,
+ ["unit"]=0
+ }
+ },
+ [14749]={
+ ["next_chapter"]=14750,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18531,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6115,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=67263,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6794,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=67263,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=6493,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1474,
+ ["unit"]=0
+ }
+ },
+ [14750]={
+ ["next_chapter"]=14751,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=18542,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6119,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=67936,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6861,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=67936,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=7173,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1475,
+ ["unit"]=0
+ }
+ },
+ [14751]={
+ ["next_chapter"]=14752,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18553,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6122,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=68615,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6930,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=68615,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=7173,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1475,
+ ["unit"]=0
+ }
+ },
+ [14752]={
+ ["next_chapter"]=14753,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18563,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6126,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=69301,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6999,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=69301,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=7173,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1475,
+ ["unit"]=0
+ }
+ },
+ [14753]={
+ ["next_chapter"]=14754,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18574,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6129,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=69994,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7069,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=69994,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=7173,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1475,
+ ["unit"]=0
+ }
+ },
+ [14754]={
+ ["next_chapter"]=14755,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18584,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6133,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=70694,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7140,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=70694,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=7173,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1475,
+ ["unit"]=0
+ }
+ },
+ [14755]={
+ ["next_chapter"]=14756,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18595,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6136,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=71401,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7212,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=71401,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=7173,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1475,
+ ["unit"]=0
+ }
+ },
+ [14756]={
+ ["next_chapter"]=14757,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18606,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6140,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=72115,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7284,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=72115,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=7173,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1475,
+ ["unit"]=0
+ }
+ },
+ [14757]={
+ ["next_chapter"]=14758,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18616,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6143,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=72836,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7356,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=72836,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=7173,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1475,
+ ["unit"]=0
+ }
+ },
+ [14758]={
+ ["next_chapter"]=14759,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18627,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6147,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=73565,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7430,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=73565,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=7173,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1475,
+ ["unit"]=0
+ }
+ },
+ [14759]={
+ ["next_chapter"]=14760,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18637,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6150,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=74300,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7504,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=74300,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=7173,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1475,
+ ["unit"]=0
+ }
+ },
+ [14760]={
+ ["next_chapter"]=14761,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=18648,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6154,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=75043,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7579,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=75043,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=7923,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1476,
+ ["unit"]=0
+ }
+ },
+ [14761]={
+ ["next_chapter"]=14762,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18659,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6157,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=75794,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7655,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=75794,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=7923,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1476,
+ ["unit"]=0
+ }
+ },
+ [14762]={
+ ["next_chapter"]=14763,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18669,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6161,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=76552,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7732,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=76552,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=7923,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1476,
+ ["unit"]=0
+ }
+ },
+ [14763]={
+ ["next_chapter"]=14764,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18680,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6164,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=77317,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7809,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=77317,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=7923,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1476,
+ ["unit"]=0
+ }
+ },
+ [14764]={
+ ["next_chapter"]=14765,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18691,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6168,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=78090,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7887,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=78090,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=7923,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1476,
+ ["unit"]=0
+ }
+ },
+ [14765]={
+ ["next_chapter"]=14766,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18701,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6171,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=78871,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7966,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=78871,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=7923,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1476,
+ ["unit"]=0
+ }
+ },
+ [14766]={
+ ["next_chapter"]=14767,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18712,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6175,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=79660,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8046,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=79660,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=7923,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1476,
+ ["unit"]=0
+ }
+ },
+ [14767]={
+ ["next_chapter"]=14768,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18723,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6178,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=80456,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8126,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=80456,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=7923,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1476,
+ ["unit"]=0
+ }
+ },
+ [14768]={
+ ["next_chapter"]=14769,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18733,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6182,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=81261,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8207,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=81261,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=7923,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1476,
+ ["unit"]=0
+ }
+ },
+ [14769]={
+ ["next_chapter"]=14770,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18744,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6185,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=82074,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8289,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=82074,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=7923,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1476,
+ ["unit"]=0
+ }
+ },
+ [14770]={
+ ["next_chapter"]=14771,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=18754,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6189,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=82894,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8372,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=82894,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=8752,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1477,
+ ["unit"]=0
+ }
+ },
+ [14771]={
+ ["next_chapter"]=14772,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18765,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6193,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=83723,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8456,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=83723,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=8752,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1477,
+ ["unit"]=0
+ }
+ },
+ [14772]={
+ ["next_chapter"]=14773,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18776,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6196,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=84561,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8541,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=84561,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=8752,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1477,
+ ["unit"]=0
+ }
+ },
+ [14773]={
+ ["next_chapter"]=14774,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18787,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6200,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=85406,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8626,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=85406,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=8752,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1477,
+ ["unit"]=0
+ }
+ },
+ [14774]={
+ ["next_chapter"]=14775,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18797,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6203,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=86260,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8712,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=86260,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=8752,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1477,
+ ["unit"]=0
+ }
+ },
+ [14775]={
+ ["next_chapter"]=14776,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18808,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6207,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=87123,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8799,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=87123,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=8752,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1477,
+ ["unit"]=0
+ }
+ },
+ [14776]={
+ ["next_chapter"]=14777,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18819,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6210,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=87994,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8887,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=87994,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=8752,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1477,
+ ["unit"]=0
+ }
+ },
+ [14777]={
+ ["next_chapter"]=14778,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18829,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6214,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=88874,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8976,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=88874,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=8752,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1477,
+ ["unit"]=0
+ }
+ },
+ [14778]={
+ ["next_chapter"]=14779,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18840,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6217,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=89763,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9066,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=89763,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=8752,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1477,
+ ["unit"]=0
+ }
+ },
+ [14779]={
+ ["next_chapter"]=14780,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18851,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6221,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=90660,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9157,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=90660,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=8752,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1477,
+ ["unit"]=0
+ }
+ },
+ [14780]={
+ ["next_chapter"]=14781,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=18861,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6224,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=91567,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9248,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=91567,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=9668,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1478,
+ ["unit"]=0
+ }
+ },
+ [14781]={
+ ["next_chapter"]=14782,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18872,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6228,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=92483,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9341,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=92483,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=9668,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1478,
+ ["unit"]=0
+ }
+ },
+ [14782]={
+ ["next_chapter"]=14783,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18883,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6231,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=93407,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9434,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=93407,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=9668,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1478,
+ ["unit"]=0
+ }
+ },
+ [14783]={
+ ["next_chapter"]=14784,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18893,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6235,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=94342,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9528,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=94342,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=9668,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1478,
+ ["unit"]=0
+ }
+ },
+ [14784]={
+ ["next_chapter"]=14785,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18904,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6238,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=95285,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9624,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=95285,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=9668,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1478,
+ ["unit"]=0
+ }
+ },
+ [14785]={
+ ["next_chapter"]=14786,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18915,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6242,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=96238,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9720,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=96238,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=9668,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1478,
+ ["unit"]=0
+ }
+ },
+ [14786]={
+ ["next_chapter"]=14787,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18926,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6245,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=97200,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9817,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=97200,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=9668,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1478,
+ ["unit"]=0
+ }
+ },
+ [14787]={
+ ["next_chapter"]=14788,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18936,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6249,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=98172,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9915,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=98172,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=9668,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1478,
+ ["unit"]=0
+ }
+ },
+ [14788]={
+ ["next_chapter"]=14789,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18947,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6253,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=99154,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10015,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=99154,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=9668,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1478,
+ ["unit"]=0
+ }
+ },
+ [14789]={
+ ["next_chapter"]=14790,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18958,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6256,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=100145,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10115,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=100145,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=9668,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1478,
+ ["unit"]=0
+ }
+ },
+ [14790]={
+ ["next_chapter"]=14791,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=18969,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6260,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=101147,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10216,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=101147,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=10679,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1479,
+ ["unit"]=0
+ }
+ },
+ [14791]={
+ ["next_chapter"]=14792,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18979,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6263,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=102158,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10318,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=102158,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=10679,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1479,
+ ["unit"]=0
+ }
+ },
+ [14792]={
+ ["next_chapter"]=14793,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=18990,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6267,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=103180,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10421,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=103180,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=10679,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1479,
+ ["unit"]=0
+ }
+ },
+ [14793]={
+ ["next_chapter"]=14794,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19001,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6270,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=104212,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10525,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=104212,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=10679,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1479,
+ ["unit"]=0
+ }
+ },
+ [14794]={
+ ["next_chapter"]=14795,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19012,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6274,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=105254,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10631,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=105254,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=10679,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1479,
+ ["unit"]=0
+ }
+ },
+ [14795]={
+ ["next_chapter"]=14796,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19022,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6277,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=106306,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10737,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=106306,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=10679,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1479,
+ ["unit"]=0
+ }
+ },
+ [14796]={
+ ["next_chapter"]=14797,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19033,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6281,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=107369,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10844,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=107369,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=10679,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1479,
+ ["unit"]=0
+ }
+ },
+ [14797]={
+ ["next_chapter"]=14798,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19044,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6284,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=108443,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10953,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=108443,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=10679,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1479,
+ ["unit"]=0
+ }
+ },
+ [14798]={
+ ["next_chapter"]=14799,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19055,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6288,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=109528,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11062,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=109528,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=10679,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1479,
+ ["unit"]=0
+ }
+ },
+ [14799]={
+ ["next_chapter"]=14800,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19065,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6292,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=110623,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11173,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=110623,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=10679,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1479,
+ ["unit"]=0
+ }
+ },
+ [14800]={
+ ["next_chapter"]=14801,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=19076,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6295,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=111729,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11285,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=111729,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=11797,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1480,
+ ["unit"]=0
+ }
+ },
+ [14801]={
+ ["next_chapter"]=14802,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19087,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6299,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=112846,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11397,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=112846,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=11797,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1480,
+ ["unit"]=0
+ }
+ },
+ [14802]={
+ ["next_chapter"]=14803,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19098,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6302,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=113975,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11511,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=113975,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=11797,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1480,
+ ["unit"]=0
+ }
+ },
+ [14803]={
+ ["next_chapter"]=14804,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19109,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6306,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=115115,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11627,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=115115,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=11797,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1480,
+ ["unit"]=0
+ }
+ },
+ [14804]={
+ ["next_chapter"]=14805,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19119,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6309,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=116266,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11743,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=116266,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=11797,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1480,
+ ["unit"]=0
+ }
+ },
+ [14805]={
+ ["next_chapter"]=14806,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19130,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6313,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=117428,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11860,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=117428,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=11797,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1480,
+ ["unit"]=0
+ }
+ },
+ [14806]={
+ ["next_chapter"]=14807,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19141,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6317,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=118603,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11979,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=118603,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=11797,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1480,
+ ["unit"]=0
+ }
+ },
+ [14807]={
+ ["next_chapter"]=14808,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19152,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6320,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=119789,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12099,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=119789,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=11797,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1480,
+ ["unit"]=0
+ }
+ },
+ [14808]={
+ ["next_chapter"]=14809,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19163,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6324,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=120987,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12220,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=120987,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=11797,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1480,
+ ["unit"]=0
+ }
+ },
+ [14809]={
+ ["next_chapter"]=14810,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19173,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6327,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=122196,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12342,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=122196,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=11797,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1480,
+ ["unit"]=0
+ }
+ },
+ [14810]={
+ ["next_chapter"]=14811,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=19184,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6331,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=123418,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12465,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=123418,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=13031,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1481,
+ ["unit"]=0
+ }
+ },
+ [14811]={
+ ["next_chapter"]=14812,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19195,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6334,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=124653,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12590,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=124653,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=13031,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1481,
+ ["unit"]=0
+ }
+ },
+ [14812]={
+ ["next_chapter"]=14813,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19206,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6338,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=125899,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12716,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=125899,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=13031,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1481,
+ ["unit"]=0
+ }
+ },
+ [14813]={
+ ["next_chapter"]=14814,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19217,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6342,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=127158,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12843,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=127158,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=13031,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1481,
+ ["unit"]=0
+ }
+ },
+ [14814]={
+ ["next_chapter"]=14815,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19228,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6345,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=128430,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12971,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=128430,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=13031,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1481,
+ ["unit"]=0
+ }
+ },
+ [14815]={
+ ["next_chapter"]=14816,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19239,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6349,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=129714,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13101,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=129714,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=13031,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1481,
+ ["unit"]=0
+ }
+ },
+ [14816]={
+ ["next_chapter"]=14817,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19249,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6352,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=131011,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13232,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=131011,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=13031,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1481,
+ ["unit"]=0
+ }
+ },
+ [14817]={
+ ["next_chapter"]=14818,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19260,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6356,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=132321,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13364,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=132321,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=13031,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1481,
+ ["unit"]=0
+ }
+ },
+ [14818]={
+ ["next_chapter"]=14819,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19271,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6359,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=133645,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13498,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=133645,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=13031,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1481,
+ ["unit"]=0
+ }
+ },
+ [14819]={
+ ["next_chapter"]=14820,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19282,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6363,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=134981,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13633,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=134981,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=13031,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1481,
+ ["unit"]=0
+ }
+ },
+ [14820]={
+ ["next_chapter"]=14821,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=19293,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6367,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=136331,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13769,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=136331,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=14394,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1482,
+ ["unit"]=0
+ }
+ },
+ [14821]={
+ ["next_chapter"]=14822,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19304,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6370,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=137694,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13907,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=137694,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=14394,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1482,
+ ["unit"]=0
+ }
+ },
+ [14822]={
+ ["next_chapter"]=14823,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19315,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6374,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=139071,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14046,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=139071,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=14394,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1482,
+ ["unit"]=0
+ }
+ },
+ [14823]={
+ ["next_chapter"]=14824,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19325,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6377,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=140462,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14187,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=140462,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=14394,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1482,
+ ["unit"]=0
+ }
+ },
+ [14824]={
+ ["next_chapter"]=14825,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19336,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6381,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=141866,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14328,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=141866,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=14394,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1482,
+ ["unit"]=0
+ }
+ },
+ [14825]={
+ ["next_chapter"]=14826,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19347,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6385,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=143285,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14472,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=143285,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=14394,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1482,
+ ["unit"]=0
+ }
+ },
+ [14826]={
+ ["next_chapter"]=14827,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19358,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6388,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=144718,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14617,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=144718,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=14394,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1482,
+ ["unit"]=0
+ }
+ },
+ [14827]={
+ ["next_chapter"]=14828,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19369,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6392,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=146165,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14763,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=146165,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=14394,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1482,
+ ["unit"]=0
+ }
+ },
+ [14828]={
+ ["next_chapter"]=14829,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19380,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6395,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=147627,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14910,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=147627,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=14394,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1482,
+ ["unit"]=0
+ }
+ },
+ [14829]={
+ ["next_chapter"]=14830,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19391,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6399,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=149103,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15059,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=149103,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=14394,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1482,
+ ["unit"]=0
+ }
+ },
+ [14830]={
+ ["next_chapter"]=14831,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=19402,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6403,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=150594,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15210,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=150594,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=15900,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1483,
+ ["unit"]=0
+ }
+ },
+ [14831]={
+ ["next_chapter"]=14832,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19413,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6406,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=152100,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15362,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=152100,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=15900,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1483,
+ ["unit"]=0
+ }
+ },
+ [14832]={
+ ["next_chapter"]=14833,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19424,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6410,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=153621,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15516,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=153621,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=15900,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1483,
+ ["unit"]=0
+ }
+ },
+ [14833]={
+ ["next_chapter"]=14834,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19434,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6413,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=155157,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15671,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=155157,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=15900,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1483,
+ ["unit"]=0
+ }
+ },
+ [14834]={
+ ["next_chapter"]=14835,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19445,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6417,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=156709,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15828,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=156709,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=15900,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1483,
+ ["unit"]=0
+ }
+ },
+ [14835]={
+ ["next_chapter"]=14836,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19456,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6421,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=158276,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15986,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=158276,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=15900,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1483,
+ ["unit"]=0
+ }
+ },
+ [14836]={
+ ["next_chapter"]=14837,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19467,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6424,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=159859,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16146,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=159859,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=15900,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1483,
+ ["unit"]=0
+ }
+ },
+ [14837]={
+ ["next_chapter"]=14838,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19478,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6428,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=161457,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16307,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=161457,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=15900,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1483,
+ ["unit"]=0
+ }
+ },
+ [14838]={
+ ["next_chapter"]=14839,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19489,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6431,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=163072,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16470,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=163072,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=15900,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1483,
+ ["unit"]=0
+ }
+ },
+ [14839]={
+ ["next_chapter"]=14840,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19500,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6435,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=164702,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16635,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=164702,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=15900,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1483,
+ ["unit"]=0
+ }
+ },
+ [14840]={
+ ["next_chapter"]=14841,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=19511,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6439,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=166349,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16801,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=166349,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=17564,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1484,
+ ["unit"]=0
+ }
+ },
+ [14841]={
+ ["next_chapter"]=14842,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19522,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6442,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=168013,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16969,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=168013,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=17564,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1484,
+ ["unit"]=0
+ }
+ },
+ [14842]={
+ ["next_chapter"]=14843,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19533,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6446,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=169693,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17139,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=169693,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=17564,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1484,
+ ["unit"]=0
+ }
+ },
+ [14843]={
+ ["next_chapter"]=14844,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19544,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6449,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=171390,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17310,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=171390,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=17564,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1484,
+ ["unit"]=0
+ }
+ },
+ [14844]={
+ ["next_chapter"]=14845,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19555,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6453,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=173104,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17483,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=173104,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=17564,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1484,
+ ["unit"]=0
+ }
+ },
+ [14845]={
+ ["next_chapter"]=14846,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19566,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6457,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=174835,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17658,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=174835,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=17564,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1484,
+ ["unit"]=0
+ }
+ },
+ [14846]={
+ ["next_chapter"]=14847,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19577,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6460,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=176583,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17835,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=176583,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=17564,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1484,
+ ["unit"]=0
+ }
+ },
+ [14847]={
+ ["next_chapter"]=14848,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19588,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6464,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=178349,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18013,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=178349,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=17564,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1484,
+ ["unit"]=0
+ }
+ },
+ [14848]={
+ ["next_chapter"]=14849,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19599,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6468,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=180133,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18193,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=180133,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=17564,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1484,
+ ["unit"]=0
+ }
+ },
+ [14849]={
+ ["next_chapter"]=14850,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19610,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6471,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=181934,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18375,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=181934,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=17564,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1484,
+ ["unit"]=0
+ }
+ },
+ [14850]={
+ ["next_chapter"]=14851,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=19621,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6475,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=183753,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18559,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=183753,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=19401,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1485,
+ ["unit"]=0
+ }
+ },
+ [14851]={
+ ["next_chapter"]=14852,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19632,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6478,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=185591,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18745,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=185591,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=19401,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1485,
+ ["unit"]=0
+ }
+ },
+ [14852]={
+ ["next_chapter"]=14853,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19643,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6482,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=187447,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18932,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=187447,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=19401,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1485,
+ ["unit"]=0
+ }
+ },
+ [14853]={
+ ["next_chapter"]=14854,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19654,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6486,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=189321,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19121,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=189321,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=19401,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1485,
+ ["unit"]=0
+ }
+ },
+ [14854]={
+ ["next_chapter"]=14855,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19665,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6489,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=191214,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19313,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=191214,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=19401,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1485,
+ ["unit"]=0
+ }
+ },
+ [14855]={
+ ["next_chapter"]=14856,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19676,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6493,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=193127,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19506,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=193127,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=19401,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1485,
+ ["unit"]=0
+ }
+ },
+ [14856]={
+ ["next_chapter"]=14857,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19687,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6497,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=195058,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19701,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=195058,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=19401,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1485,
+ ["unit"]=0
+ }
+ },
+ [14857]={
+ ["next_chapter"]=14858,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19698,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6500,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=197008,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19898,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=197008,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=19401,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1485,
+ ["unit"]=0
+ }
+ },
+ [14858]={
+ ["next_chapter"]=14859,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19709,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6504,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=198978,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20097,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=198978,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=19401,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1485,
+ ["unit"]=0
+ }
+ },
+ [14859]={
+ ["next_chapter"]=14860,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19720,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6508,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=200968,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20298,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=200968,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=19401,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1485,
+ ["unit"]=0
+ }
+ },
+ [14860]={
+ ["next_chapter"]=14861,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=19731,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6511,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=202978,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20501,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=202978,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=21431,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1486,
+ ["unit"]=0
+ }
+ },
+ [14861]={
+ ["next_chapter"]=14862,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19742,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6515,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=205008,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20706,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=205008,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=21431,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1486,
+ ["unit"]=0
+ }
+ },
+ [14862]={
+ ["next_chapter"]=14863,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19753,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6518,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=207058,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20913,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=207058,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=21431,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1486,
+ ["unit"]=0
+ }
+ },
+ [14863]={
+ ["next_chapter"]=14864,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19764,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6522,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=209128,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21122,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=209128,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=21431,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1486,
+ ["unit"]=0
+ }
+ },
+ [14864]={
+ ["next_chapter"]=14865,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19775,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6526,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=211220,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21333,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=211220,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=21431,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1486,
+ ["unit"]=0
+ }
+ },
+ [14865]={
+ ["next_chapter"]=14866,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19786,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6529,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=213332,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21547,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=213332,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=21431,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1486,
+ ["unit"]=0
+ }
+ },
+ [14866]={
+ ["next_chapter"]=14867,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19797,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6533,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=215465,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21762,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=215465,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=21431,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1486,
+ ["unit"]=0
+ }
+ },
+ [14867]={
+ ["next_chapter"]=14868,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19808,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6537,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=217620,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21980,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=217620,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=21431,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1486,
+ ["unit"]=0
+ }
+ },
+ [14868]={
+ ["next_chapter"]=14869,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19819,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6540,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=219796,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22199,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=219796,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=21431,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1486,
+ ["unit"]=0
+ }
+ },
+ [14869]={
+ ["next_chapter"]=14870,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19830,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6544,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=221994,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22421,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=221994,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=21431,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1486,
+ ["unit"]=0
+ }
+ },
+ [14870]={
+ ["next_chapter"]=14871,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=19841,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6548,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=224214,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22646,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=224214,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=23673,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1487,
+ ["unit"]=0
+ }
+ },
+ [14871]={
+ ["next_chapter"]=14872,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19852,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6551,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=226456,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22872,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=226456,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=23673,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1487,
+ ["unit"]=0
+ }
+ },
+ [14872]={
+ ["next_chapter"]=14873,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19863,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6555,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=228721,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23101,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=228721,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=23673,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1487,
+ ["unit"]=0
+ }
+ },
+ [14873]={
+ ["next_chapter"]=14874,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19875,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6559,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=231008,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23332,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=231008,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=23673,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1487,
+ ["unit"]=0
+ }
+ },
+ [14874]={
+ ["next_chapter"]=14875,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19886,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6562,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=233318,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23565,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=233318,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=23673,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1487,
+ ["unit"]=0
+ }
+ },
+ [14875]={
+ ["next_chapter"]=14876,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19897,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6566,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=235651,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23801,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=235651,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=23673,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1487,
+ ["unit"]=0
+ }
+ },
+ [14876]={
+ ["next_chapter"]=14877,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19908,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6570,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=238008,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24039,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=238008,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=23673,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1487,
+ ["unit"]=0
+ }
+ },
+ [14877]={
+ ["next_chapter"]=14878,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19919,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6573,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=240388,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24279,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=240388,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=23673,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1487,
+ ["unit"]=0
+ }
+ },
+ [14878]={
+ ["next_chapter"]=14879,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19930,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6577,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=242792,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24522,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=242792,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=23673,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1487,
+ ["unit"]=0
+ }
+ },
+ [14879]={
+ ["next_chapter"]=14880,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19941,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6581,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=245219,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24767,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=245219,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=23673,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1487,
+ ["unit"]=0
+ }
+ },
+ [14880]={
+ ["next_chapter"]=14881,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=19952,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6584,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=247672,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25015,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=247672,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=26150,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1488,
+ ["unit"]=0
+ }
+ },
+ [14881]={
+ ["next_chapter"]=14882,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19963,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6588,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=250148,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25265,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=250148,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=26150,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1488,
+ ["unit"]=0
+ }
+ },
+ [14882]={
+ ["next_chapter"]=14883,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19975,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6592,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=252650,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25518,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=252650,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=26150,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1488,
+ ["unit"]=0
+ }
+ },
+ [14883]={
+ ["next_chapter"]=14884,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19986,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6595,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=255176,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25773,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=255176,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=26150,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1488,
+ ["unit"]=0
+ }
+ },
+ [14884]={
+ ["next_chapter"]=14885,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=19997,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6599,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=257728,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26031,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=257728,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=26150,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1488,
+ ["unit"]=0
+ }
+ },
+ [14885]={
+ ["next_chapter"]=14886,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20008,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6603,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=260305,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26291,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=260305,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=26150,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1488,
+ ["unit"]=0
+ }
+ },
+ [14886]={
+ ["next_chapter"]=14887,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20019,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6606,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=262908,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26554,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=262908,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=26150,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1488,
+ ["unit"]=0
+ }
+ },
+ [14887]={
+ ["next_chapter"]=14888,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20030,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6610,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=265538,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26819,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=265538,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=26150,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1488,
+ ["unit"]=0
+ }
+ },
+ [14888]={
+ ["next_chapter"]=14889,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20041,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6614,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=268193,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27087,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=268193,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=26150,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1488,
+ ["unit"]=0
+ }
+ },
+ [14889]={
+ ["next_chapter"]=14890,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20052,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6617,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=270875,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27358,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=270875,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=26150,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1488,
+ ["unit"]=0
+ }
+ },
+ [14890]={
+ ["next_chapter"]=14891,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=20064,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6621,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=273584,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27632,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=273584,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=28886,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1489,
+ ["unit"]=0
+ }
+ },
+ [14891]={
+ ["next_chapter"]=14892,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20075,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6625,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=276319,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27908,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=276319,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=28886,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1489,
+ ["unit"]=0
+ }
+ },
+ [14892]={
+ ["next_chapter"]=14893,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20086,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6628,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=279083,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28187,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=279083,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=28886,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1489,
+ ["unit"]=0
+ }
+ },
+ [14893]={
+ ["next_chapter"]=14894,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20097,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6632,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=281873,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28469,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=281873,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=28886,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1489,
+ ["unit"]=0
+ }
+ },
+ [14894]={
+ ["next_chapter"]=14895,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20108,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6636,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=284692,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28754,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=284692,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=28886,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1489,
+ ["unit"]=0
+ }
+ },
+ [14895]={
+ ["next_chapter"]=14896,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20119,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6639,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=287539,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29041,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=287539,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=28886,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1489,
+ ["unit"]=0
+ }
+ },
+ [14896]={
+ ["next_chapter"]=14897,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20131,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6643,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=290414,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29332,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=290414,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=28886,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1489,
+ ["unit"]=0
+ }
+ },
+ [14897]={
+ ["next_chapter"]=14898,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20142,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6647,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=293319,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29625,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=293319,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=28886,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1489,
+ ["unit"]=0
+ }
+ },
+ [14898]={
+ ["next_chapter"]=14899,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20153,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6650,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=296252,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29921,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=296252,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=28886,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1489,
+ ["unit"]=0
+ }
+ },
+ [14899]={
+ ["next_chapter"]=14900,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20164,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6654,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=299214,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30221,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=299214,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=28886,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1489,
+ ["unit"]=0
+ }
+ },
+ [14900]={
+ ["next_chapter"]=14901,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=20175,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6658,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=302206,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30523,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=302206,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=31908,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1490,
+ ["unit"]=0
+ }
+ },
+ [14901]={
+ ["next_chapter"]=14902,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20187,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6662,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=305229,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30828,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=305229,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=31908,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1490,
+ ["unit"]=0
+ }
+ },
+ [14902]={
+ ["next_chapter"]=14903,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20198,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6665,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=308281,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31136,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=308281,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=31908,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1490,
+ ["unit"]=0
+ }
+ },
+ [14903]={
+ ["next_chapter"]=14904,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20209,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6669,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=311364,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31448,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=311364,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=31908,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1490,
+ ["unit"]=0
+ }
+ },
+ [14904]={
+ ["next_chapter"]=14905,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20220,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6673,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=314477,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31762,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=314477,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=31908,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1490,
+ ["unit"]=0
+ }
+ },
+ [14905]={
+ ["next_chapter"]=14906,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20231,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6676,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=317622,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32080,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=317622,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=31908,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1490,
+ ["unit"]=0
+ }
+ },
+ [14906]={
+ ["next_chapter"]=14907,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20243,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6680,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=320798,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32401,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=320798,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=31908,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1490,
+ ["unit"]=0
+ }
+ },
+ [14907]={
+ ["next_chapter"]=14908,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20254,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6684,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=324006,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32725,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=324006,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=31908,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1490,
+ ["unit"]=0
+ }
+ },
+ [14908]={
+ ["next_chapter"]=14909,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20265,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6687,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=327246,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33052,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=327246,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=31908,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1490,
+ ["unit"]=0
+ }
+ },
+ [14909]={
+ ["next_chapter"]=14910,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20276,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6691,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=330519,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33382,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=330519,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=31908,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1490,
+ ["unit"]=0
+ }
+ },
+ [14910]={
+ ["next_chapter"]=14911,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=20288,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6695,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=333824,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33716,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=333824,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=35246,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1491,
+ ["unit"]=0
+ }
+ },
+ [14911]={
+ ["next_chapter"]=14912,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20299,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6699,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=337162,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34053,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=337162,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=35246,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1491,
+ ["unit"]=0
+ }
+ },
+ [14912]={
+ ["next_chapter"]=14913,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20310,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6702,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=340534,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34394,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=340534,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=35246,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1491,
+ ["unit"]=0
+ }
+ },
+ [14913]={
+ ["next_chapter"]=14914,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20321,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6706,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=343939,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34738,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=343939,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=35246,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1491,
+ ["unit"]=0
+ }
+ },
+ [14914]={
+ ["next_chapter"]=14915,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20333,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6710,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=347379,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35085,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=347379,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=35246,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1491,
+ ["unit"]=0
+ }
+ },
+ [14915]={
+ ["next_chapter"]=14916,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20344,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6713,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=350852,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35436,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=350852,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=35246,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1491,
+ ["unit"]=0
+ }
+ },
+ [14916]={
+ ["next_chapter"]=14917,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20355,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6717,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=354361,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35790,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=354361,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=35246,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1491,
+ ["unit"]=0
+ }
+ },
+ [14917]={
+ ["next_chapter"]=14918,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20366,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6721,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=357904,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36148,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=357904,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=35246,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1491,
+ ["unit"]=0
+ }
+ },
+ [14918]={
+ ["next_chapter"]=14919,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20378,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6725,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=361483,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36510,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=361483,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=35246,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1491,
+ ["unit"]=0
+ }
+ },
+ [14919]={
+ ["next_chapter"]=14920,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20389,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6728,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=365098,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36875,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=365098,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=35246,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1491,
+ ["unit"]=0
+ }
+ },
+ [14920]={
+ ["next_chapter"]=14921,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=20400,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6732,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=368749,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37244,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=368749,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=38933,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1492,
+ ["unit"]=0
+ }
+ },
+ [14921]={
+ ["next_chapter"]=14922,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20411,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6736,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=372437,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37616,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=372437,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=38933,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1492,
+ ["unit"]=0
+ }
+ },
+ [14922]={
+ ["next_chapter"]=14923,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20423,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6740,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=376161,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37992,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=376161,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=38933,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1492,
+ ["unit"]=0
+ }
+ },
+ [14923]={
+ ["next_chapter"]=14924,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20434,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6743,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=379923,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=38372,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=379923,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=38933,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1492,
+ ["unit"]=0
+ }
+ },
+ [14924]={
+ ["next_chapter"]=14925,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20445,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6747,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=383722,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=38756,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=383722,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=38933,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1492,
+ ["unit"]=0
+ }
+ },
+ [14925]={
+ ["next_chapter"]=14926,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20457,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6751,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=387559,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39143,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=387559,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=38933,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1492,
+ ["unit"]=0
+ }
+ },
+ [14926]={
+ ["next_chapter"]=14927,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20468,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6754,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=391435,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39535,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=391435,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=38933,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1492,
+ ["unit"]=0
+ }
+ },
+ [14927]={
+ ["next_chapter"]=14928,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20479,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6758,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=395349,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39930,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=395349,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=38933,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1492,
+ ["unit"]=0
+ }
+ },
+ [14928]={
+ ["next_chapter"]=14929,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20491,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6762,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=399303,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=40330,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=399303,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=38933,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1492,
+ ["unit"]=0
+ }
+ },
+ [14929]={
+ ["next_chapter"]=14930,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20502,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6766,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=403296,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=40733,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=403296,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=38933,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1492,
+ ["unit"]=0
+ }
+ },
+ [14930]={
+ ["next_chapter"]=14931,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=20513,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6769,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=407329,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41140,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=407329,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=43007,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1493,
+ ["unit"]=0
+ }
+ },
+ [14931]={
+ ["next_chapter"]=14932,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20525,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6773,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=411402,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41552,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=411402,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=43007,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1493,
+ ["unit"]=0
+ }
+ },
+ [14932]={
+ ["next_chapter"]=14933,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20536,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6777,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=415516,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41967,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=415516,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=43007,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1493,
+ ["unit"]=0
+ }
+ },
+ [14933]={
+ ["next_chapter"]=14934,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20547,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6781,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=419671,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=42387,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=419671,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=43007,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1493,
+ ["unit"]=0
+ }
+ },
+ [14934]={
+ ["next_chapter"]=14935,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20559,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6784,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=423868,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=42811,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=423868,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=43007,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1493,
+ ["unit"]=0
+ }
+ },
+ [14935]={
+ ["next_chapter"]=14936,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20570,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6788,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=428107,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=43239,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=428107,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=43007,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1493,
+ ["unit"]=0
+ }
+ },
+ [14936]={
+ ["next_chapter"]=14937,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20581,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6792,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=432388,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=43671,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=432388,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=43007,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1493,
+ ["unit"]=0
+ }
+ },
+ [14937]={
+ ["next_chapter"]=14938,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20593,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6796,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=436711,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=44108,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=436711,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=43007,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1493,
+ ["unit"]=0
+ }
+ },
+ [14938]={
+ ["next_chapter"]=14939,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20604,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6799,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=441079,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=44549,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=441079,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=43007,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1493,
+ ["unit"]=0
+ }
+ },
+ [14939]={
+ ["next_chapter"]=14940,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20615,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6803,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=445489,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=44994,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=445489,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=43007,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1493,
+ ["unit"]=0
+ }
+ },
+ [14940]={
+ ["next_chapter"]=14941,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=20627,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6807,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=449944,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=45444,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=449944,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=47506,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1494,
+ ["unit"]=0
+ }
+ },
+ [14941]={
+ ["next_chapter"]=14942,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20638,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6811,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=454444,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=45899,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=454444,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=47506,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1494,
+ ["unit"]=0
+ }
+ },
+ [14942]={
+ ["next_chapter"]=14943,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20649,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6814,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=458988,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=46358,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=458988,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=47506,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1494,
+ ["unit"]=0
+ }
+ },
+ [14943]={
+ ["next_chapter"]=14944,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20661,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6818,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=463578,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=46821,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=463578,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=47506,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1494,
+ ["unit"]=0
+ }
+ },
+ [14944]={
+ ["next_chapter"]=14945,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20672,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6822,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=468214,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=47290,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=468214,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=47506,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1494,
+ ["unit"]=0
+ }
+ },
+ [14945]={
+ ["next_chapter"]=14946,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20683,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6826,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=472896,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=47762,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=472896,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=47506,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1494,
+ ["unit"]=0
+ }
+ },
+ [14946]={
+ ["next_chapter"]=14947,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20695,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6829,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=477625,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=48240,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=477625,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=47506,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1494,
+ ["unit"]=0
+ }
+ },
+ [14947]={
+ ["next_chapter"]=14948,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20706,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6833,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=482401,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=48723,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=482401,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=47506,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1494,
+ ["unit"]=0
+ }
+ },
+ [14948]={
+ ["next_chapter"]=14949,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20718,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6837,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=487225,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=49210,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=487225,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=47506,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1494,
+ ["unit"]=0
+ }
+ },
+ [14949]={
+ ["next_chapter"]=14950,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20729,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6841,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=492097,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=49702,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=492097,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=47506,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1494,
+ ["unit"]=0
+ }
+ },
+ [14950]={
+ ["next_chapter"]=14951,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=20740,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6844,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=497018,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=50199,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=497018,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=52476,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1495,
+ ["unit"]=0
+ }
+ },
+ [14951]={
+ ["next_chapter"]=14952,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20752,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6848,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=501989,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=50701,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=501989,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=52476,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1495,
+ ["unit"]=0
+ }
+ },
+ [14952]={
+ ["next_chapter"]=14953,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20763,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6852,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=507008,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=51208,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=507008,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=52476,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1495,
+ ["unit"]=0
+ }
+ },
+ [14953]={
+ ["next_chapter"]=14954,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20775,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6856,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=512079,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=51720,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=512079,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=52476,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1495,
+ ["unit"]=0
+ }
+ },
+ [14954]={
+ ["next_chapter"]=14955,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20786,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6859,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=517199,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=52237,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=517199,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=52476,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1495,
+ ["unit"]=0
+ }
+ },
+ [14955]={
+ ["next_chapter"]=14956,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20798,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6863,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=522371,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=52760,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=522371,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=52476,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1495,
+ ["unit"]=0
+ }
+ },
+ [14956]={
+ ["next_chapter"]=14957,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20809,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6867,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=527595,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=53287,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=527595,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=52476,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1495,
+ ["unit"]=0
+ }
+ },
+ [14957]={
+ ["next_chapter"]=14958,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20820,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6871,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=532871,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=53820,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=532871,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=52476,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1495,
+ ["unit"]=0
+ }
+ },
+ [14958]={
+ ["next_chapter"]=14959,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20832,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6875,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=538200,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=54358,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=538200,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=52476,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1495,
+ ["unit"]=0
+ }
+ },
+ [14959]={
+ ["next_chapter"]=14960,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20843,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6878,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=543582,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=54902,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=543582,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=52476,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1495,
+ ["unit"]=0
+ }
+ },
+ [14960]={
+ ["next_chapter"]=14961,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=20855,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6882,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=549017,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=55451,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=549017,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=57966,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1496,
+ ["unit"]=0
+ }
+ },
+ [14961]={
+ ["next_chapter"]=14962,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20866,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6886,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=554508,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=56005,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=554508,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=57966,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1496,
+ ["unit"]=0
+ }
+ },
+ [14962]={
+ ["next_chapter"]=14963,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20878,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6890,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=560053,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=56565,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=560053,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=57966,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1496,
+ ["unit"]=0
+ }
+ },
+ [14963]={
+ ["next_chapter"]=14964,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20889,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6893,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=565653,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=57131,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=565653,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=57966,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1496,
+ ["unit"]=0
+ }
+ },
+ [14964]={
+ ["next_chapter"]=14965,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20901,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6897,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=571310,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=57702,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=571310,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=57966,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1496,
+ ["unit"]=0
+ }
+ },
+ [14965]={
+ ["next_chapter"]=14966,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20912,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6901,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=577023,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=58279,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=577023,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=57966,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1496,
+ ["unit"]=0
+ }
+ },
+ [14966]={
+ ["next_chapter"]=14967,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20923,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6905,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=582793,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=58862,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=582793,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=57966,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1496,
+ ["unit"]=0
+ }
+ },
+ [14967]={
+ ["next_chapter"]=14968,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20935,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6909,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=588621,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=59451,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=588621,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=57966,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1496,
+ ["unit"]=0
+ }
+ },
+ [14968]={
+ ["next_chapter"]=14969,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20946,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6912,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=594507,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=60045,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=594507,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=57966,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1496,
+ ["unit"]=0
+ }
+ },
+ [14969]={
+ ["next_chapter"]=14970,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20958,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6916,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=600452,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=60646,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=600452,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=57966,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1496,
+ ["unit"]=0
+ }
+ },
+ [14970]={
+ ["next_chapter"]=14971,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=20969,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6920,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=606457,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=61252,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=606457,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=64031,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1497,
+ ["unit"]=0
+ }
+ },
+ [14971]={
+ ["next_chapter"]=14972,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20981,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6924,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=612521,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=61865,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=612521,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=64031,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1497,
+ ["unit"]=0
+ }
+ },
+ [14972]={
+ ["next_chapter"]=14973,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=20992,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6927,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=618647,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=62483,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=618647,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=64031,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1497,
+ ["unit"]=0
+ }
+ },
+ [14973]={
+ ["next_chapter"]=14974,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21004,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6931,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=624833,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=63108,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=624833,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=64031,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1497,
+ ["unit"]=0
+ }
+ },
+ [14974]={
+ ["next_chapter"]=14975,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21015,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6935,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=631081,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=63739,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=631081,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=64031,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1497,
+ ["unit"]=0
+ }
+ },
+ [14975]={
+ ["next_chapter"]=14976,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21027,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6939,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=637392,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=64377,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=637392,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=64031,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1497,
+ ["unit"]=0
+ }
+ },
+ [14976]={
+ ["next_chapter"]=14977,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21038,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6943,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=643766,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=65020,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=643766,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=64031,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1497,
+ ["unit"]=0
+ }
+ },
+ [14977]={
+ ["next_chapter"]=14978,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21050,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6946,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=650204,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=65671,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=650204,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=64031,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1497,
+ ["unit"]=0
+ }
+ },
+ [14978]={
+ ["next_chapter"]=14979,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21061,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6950,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=656706,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=66327,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=656706,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=64031,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1497,
+ ["unit"]=0
+ }
+ },
+ [14979]={
+ ["next_chapter"]=14980,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21073,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6954,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=663273,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=66991,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=663273,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=64031,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1497,
+ ["unit"]=0
+ }
+ },
+ [14980]={
+ ["next_chapter"]=14981,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=21085,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6958,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=669906,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=67660,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=669906,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=70730,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1498,
+ ["unit"]=0
+ }
+ },
+ [14981]={
+ ["next_chapter"]=14982,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21096,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6962,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=676605,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=68337,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=676605,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=70730,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1498,
+ ["unit"]=0
+ }
+ },
+ [14982]={
+ ["next_chapter"]=14983,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21108,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6966,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=683371,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=69020,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=683371,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=70730,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1498,
+ ["unit"]=0
+ }
+ },
+ [14983]={
+ ["next_chapter"]=14984,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21119,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6969,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=690204,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=69711,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=690204,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=70730,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1498,
+ ["unit"]=0
+ }
+ },
+ [14984]={
+ ["next_chapter"]=14985,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21131,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6973,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=697107,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=70408,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=697107,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=70730,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1498,
+ ["unit"]=0
+ }
+ },
+ [14985]={
+ ["next_chapter"]=14986,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21142,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6977,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=704078,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=71112,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=704078,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=70730,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1498,
+ ["unit"]=0
+ }
+ },
+ [14986]={
+ ["next_chapter"]=14987,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21154,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6981,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=711118,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=71823,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=711118,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=70730,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1498,
+ ["unit"]=0
+ }
+ },
+ [14987]={
+ ["next_chapter"]=14988,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21165,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6985,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=718230,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=72541,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=718230,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=70730,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1498,
+ ["unit"]=0
+ }
+ },
+ [14988]={
+ ["next_chapter"]=14989,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21177,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6988,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=725412,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=73267,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=725412,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=70730,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1498,
+ ["unit"]=0
+ }
+ },
+ [14989]={
+ ["next_chapter"]=14990,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21188,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6992,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=732666,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=73999,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=732666,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=70730,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1498,
+ ["unit"]=0
+ }
+ },
+ [14990]={
+ ["next_chapter"]=14991,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=21200,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=6996,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=739993,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=74739,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=739993,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=78130,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1499,
+ ["unit"]=0
+ }
+ },
+ [14991]={
+ ["next_chapter"]=14992,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21212,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7000,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=747393,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=75487,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=747393,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=78130,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1499,
+ ["unit"]=0
+ }
+ },
+ [14992]={
+ ["next_chapter"]=14993,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21223,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7004,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=754866,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=76242,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=754866,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=78130,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1499,
+ ["unit"]=0
+ }
+ },
+ [14993]={
+ ["next_chapter"]=14994,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21235,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7007,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=762415,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=77004,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=762415,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=78130,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1499,
+ ["unit"]=0
+ }
+ },
+ [14994]={
+ ["next_chapter"]=14995,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21246,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7011,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=770039,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=77774,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=770039,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=78130,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1499,
+ ["unit"]=0
+ }
+ },
+ [14995]={
+ ["next_chapter"]=14996,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21258,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7015,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=777740,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=78552,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=777740,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=78130,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1499,
+ ["unit"]=0
+ }
+ },
+ [14996]={
+ ["next_chapter"]=14997,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21270,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7019,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=785517,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=79337,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=785517,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=78130,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1499,
+ ["unit"]=0
+ }
+ },
+ [14997]={
+ ["next_chapter"]=14998,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21281,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7023,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=793372,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=80131,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=793372,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=78130,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1499,
+ ["unit"]=0
+ }
+ },
+ [14998]={
+ ["next_chapter"]=14999,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21293,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7027,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=801306,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=80932,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=801306,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=78130,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1499,
+ ["unit"]=0
+ }
+ },
+ [14999]={
+ ["next_chapter"]=15000,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21304,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7030,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=809319,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=81741,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=809319,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=78130,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1499,
+ ["unit"]=0
+ }
+ },
+ [15000]={
+ ["next_chapter"]=15001,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=21316,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7034,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=817412,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=82559,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=817412,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=86304,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1500,
+ ["unit"]=0
+ }
+ }
+}
+local config = {
+data=chapter3,count=5000
+}
+return config
\ No newline at end of file
diff --git a/lua/app/config/chapter3.lua.meta b/lua/app/config/chapter3.lua.meta
new file mode 100644
index 00000000..9459b672
--- /dev/null
+++ b/lua/app/config/chapter3.lua.meta
@@ -0,0 +1,10 @@
+fileFormatVersion: 2
+guid: b630fe9f9b843654eac57c109a114693
+ScriptedImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 2
+ userData:
+ assetBundleName:
+ assetBundleVariant:
+ script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
diff --git a/lua/app/config/chapter4.lua b/lua/app/config/chapter4.lua
new file mode 100644
index 00000000..a5b8cf01
--- /dev/null
+++ b/lua/app/config/chapter4.lua
@@ -0,0 +1,175506 @@
+local chapter4 = {
+ [15001]={
+ ["next_chapter"]=15002,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21328,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7038,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=825586,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=83384,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=825586,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=86304,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1500,
+ ["unit"]=0
+ }
+ },
+ [15002]={
+ ["next_chapter"]=15003,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21339,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7042,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=833842,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=84218,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=833842,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=86304,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1500,
+ ["unit"]=0
+ }
+ },
+ [15003]={
+ ["next_chapter"]=15004,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21351,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7046,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=842181,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=85060,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=842181,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=86304,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1500,
+ ["unit"]=0
+ }
+ },
+ [15004]={
+ ["next_chapter"]=15005,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21362,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7050,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=850602,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=85911,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=850602,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=86304,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1500,
+ ["unit"]=0
+ }
+ },
+ [15005]={
+ ["next_chapter"]=15006,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21374,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7053,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=859108,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=86770,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=859108,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=86304,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1500,
+ ["unit"]=0
+ }
+ },
+ [15006]={
+ ["next_chapter"]=15007,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21386,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7057,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=867700,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=87638,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=867700,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=86304,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1500,
+ ["unit"]=0
+ }
+ },
+ [15007]={
+ ["next_chapter"]=15008,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21397,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7061,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=876377,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=88514,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=876377,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=86304,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1500,
+ ["unit"]=0
+ }
+ },
+ [15008]={
+ ["next_chapter"]=15009,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21409,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7065,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=885140,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=89399,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=885140,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=86304,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1500,
+ ["unit"]=0
+ }
+ },
+ [15009]={
+ ["next_chapter"]=15010,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21421,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7069,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=893992,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=90293,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=893992,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=86304,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1500,
+ ["unit"]=0
+ }
+ },
+ [15010]={
+ ["next_chapter"]=15011,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=21432,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7073,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=902932,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=91196,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=902932,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=95333,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1501,
+ ["unit"]=0
+ }
+ },
+ [15011]={
+ ["next_chapter"]=15012,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21444,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7077,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=911961,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=92108,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=911961,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=95333,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1501,
+ ["unit"]=0
+ }
+ },
+ [15012]={
+ ["next_chapter"]=15013,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21456,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7080,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=921081,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=93029,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=921081,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=95333,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1501,
+ ["unit"]=0
+ }
+ },
+ [15013]={
+ ["next_chapter"]=15014,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21467,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7084,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=930291,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=93959,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=930291,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=95333,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1501,
+ ["unit"]=0
+ }
+ },
+ [15014]={
+ ["next_chapter"]=15015,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21479,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7088,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=939594,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=94899,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=939594,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=95333,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1501,
+ ["unit"]=0
+ }
+ },
+ [15015]={
+ ["next_chapter"]=15016,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21491,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7092,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=948990,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=95848,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=948990,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=95333,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1501,
+ ["unit"]=0
+ }
+ },
+ [15016]={
+ ["next_chapter"]=15017,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21502,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7096,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=958480,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=96806,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=958480,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=95333,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1501,
+ ["unit"]=0
+ }
+ },
+ [15017]={
+ ["next_chapter"]=15018,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21514,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7100,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=968065,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=97775,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=968065,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=95333,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1501,
+ ["unit"]=0
+ }
+ },
+ [15018]={
+ ["next_chapter"]=15019,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21526,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7104,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=977746,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=98752,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=977746,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=95333,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1501,
+ ["unit"]=0
+ }
+ },
+ [15019]={
+ ["next_chapter"]=15020,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21537,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7107,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=987523,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=99740,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=987523,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=95333,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1501,
+ ["unit"]=0
+ }
+ },
+ [15020]={
+ ["next_chapter"]=15021,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=21549,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7111,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=997398,
+ ["unit"]=20
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=100737,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=997398,
+ ["unit"]=20
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=105307,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1502,
+ ["unit"]=0
+ }
+ },
+ [15021]={
+ ["next_chapter"]=15022,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21561,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7115,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1007,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=101745,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1007,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=105307,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1502,
+ ["unit"]=0
+ }
+ },
+ [15022]={
+ ["next_chapter"]=15023,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21573,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7119,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1017,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=102762,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1017,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=105307,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1502,
+ ["unit"]=0
+ }
+ },
+ [15023]={
+ ["next_chapter"]=15024,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21584,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7123,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1028,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=103790,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1028,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=105307,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1502,
+ ["unit"]=0
+ }
+ },
+ [15024]={
+ ["next_chapter"]=15025,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21596,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7127,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1038,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=104828,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1038,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=105307,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1502,
+ ["unit"]=0
+ }
+ },
+ [15025]={
+ ["next_chapter"]=15026,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21608,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7131,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1048,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=105876,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1048,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=105307,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1502,
+ ["unit"]=0
+ }
+ },
+ [15026]={
+ ["next_chapter"]=15027,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21619,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7134,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1059,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=106935,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1059,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=105307,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1502,
+ ["unit"]=0
+ }
+ },
+ [15027]={
+ ["next_chapter"]=15028,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21631,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7138,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1069,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=108004,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1069,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=105307,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1502,
+ ["unit"]=0
+ }
+ },
+ [15028]={
+ ["next_chapter"]=15029,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21643,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7142,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1080,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=109084,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1080,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=105307,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1502,
+ ["unit"]=0
+ }
+ },
+ [15029]={
+ ["next_chapter"]=15030,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21655,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7146,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1091,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=110175,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1091,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=105307,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1502,
+ ["unit"]=0
+ }
+ },
+ [15030]={
+ ["next_chapter"]=15031,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=21666,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7150,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1102,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=111277,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1102,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=116325,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1503,
+ ["unit"]=0
+ }
+ },
+ [15031]={
+ ["next_chapter"]=15032,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21678,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7154,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1113,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=112389,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1113,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=116325,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1503,
+ ["unit"]=0
+ }
+ },
+ [15032]={
+ ["next_chapter"]=15033,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21690,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7158,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1124,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=113513,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1124,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=116325,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1503,
+ ["unit"]=0
+ }
+ },
+ [15033]={
+ ["next_chapter"]=15034,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21702,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7162,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1135,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=114648,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1135,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=116325,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1503,
+ ["unit"]=0
+ }
+ },
+ [15034]={
+ ["next_chapter"]=15035,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21713,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7165,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1146,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=115795,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1146,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=116325,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1503,
+ ["unit"]=0
+ }
+ },
+ [15035]={
+ ["next_chapter"]=15036,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21725,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7169,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1158,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=116953,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1158,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=116325,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1503,
+ ["unit"]=0
+ }
+ },
+ [15036]={
+ ["next_chapter"]=15037,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21737,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7173,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1170,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=118122,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1170,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=116325,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1503,
+ ["unit"]=0
+ }
+ },
+ [15037]={
+ ["next_chapter"]=15038,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21749,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7177,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1181,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=119304,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1181,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=116325,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1503,
+ ["unit"]=0
+ }
+ },
+ [15038]={
+ ["next_chapter"]=15039,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21760,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7181,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1193,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=120497,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1193,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=116325,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1503,
+ ["unit"]=0
+ }
+ },
+ [15039]={
+ ["next_chapter"]=15040,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21772,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7185,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1205,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=121702,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1205,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=116325,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1503,
+ ["unit"]=0
+ }
+ },
+ [15040]={
+ ["next_chapter"]=15041,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=21784,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7189,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1217,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=122919,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1217,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=128495,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1504,
+ ["unit"]=0
+ }
+ },
+ [15041]={
+ ["next_chapter"]=15042,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21796,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7193,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1229,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=124148,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1229,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=128495,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1504,
+ ["unit"]=0
+ }
+ },
+ [15042]={
+ ["next_chapter"]=15043,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21808,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7197,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1241,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=125389,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1241,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=128495,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1504,
+ ["unit"]=0
+ }
+ },
+ [15043]={
+ ["next_chapter"]=15044,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21819,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7200,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1254,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=126643,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1254,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=128495,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1504,
+ ["unit"]=0
+ }
+ },
+ [15044]={
+ ["next_chapter"]=15045,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21831,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7204,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1266,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=127910,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1266,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=128495,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1504,
+ ["unit"]=0
+ }
+ },
+ [15045]={
+ ["next_chapter"]=15046,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21843,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7208,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1279,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=129189,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1279,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=128495,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1504,
+ ["unit"]=0
+ }
+ },
+ [15046]={
+ ["next_chapter"]=15047,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21855,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7212,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1292,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=130481,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1292,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=128495,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1504,
+ ["unit"]=0
+ }
+ },
+ [15047]={
+ ["next_chapter"]=15048,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21867,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7216,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1305,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=131785,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1305,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=128495,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1504,
+ ["unit"]=0
+ }
+ },
+ [15048]={
+ ["next_chapter"]=15049,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21878,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7220,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1318,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=133103,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1318,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=128495,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1504,
+ ["unit"]=0
+ }
+ },
+ [15049]={
+ ["next_chapter"]=15050,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21890,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7224,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1331,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=134434,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1331,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=128495,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1504,
+ ["unit"]=0
+ }
+ },
+ [15050]={
+ ["next_chapter"]=15051,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=21902,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7228,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1344,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=135779,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1344,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=141938,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1505,
+ ["unit"]=0
+ }
+ },
+ [15051]={
+ ["next_chapter"]=15052,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21914,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7232,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1358,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=137136,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1358,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=141938,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1505,
+ ["unit"]=0
+ }
+ },
+ [15052]={
+ ["next_chapter"]=15053,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21926,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7236,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1371,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=138508,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1371,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=141938,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1505,
+ ["unit"]=0
+ }
+ },
+ [15053]={
+ ["next_chapter"]=15054,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21938,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7239,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1385,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=139893,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1385,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=141938,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1505,
+ ["unit"]=0
+ }
+ },
+ [15054]={
+ ["next_chapter"]=15055,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21949,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7243,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1399,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=141292,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1399,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=141938,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1505,
+ ["unit"]=0
+ }
+ },
+ [15055]={
+ ["next_chapter"]=15056,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21961,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7247,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1413,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=142705,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1413,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=141938,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1505,
+ ["unit"]=0
+ }
+ },
+ [15056]={
+ ["next_chapter"]=15057,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21973,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7251,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1427,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=144132,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1427,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=141938,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1505,
+ ["unit"]=0
+ }
+ },
+ [15057]={
+ ["next_chapter"]=15058,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21985,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7255,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1441,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=145573,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1441,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=141938,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1505,
+ ["unit"]=0
+ }
+ },
+ [15058]={
+ ["next_chapter"]=15059,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=21997,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7259,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1456,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=147029,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1456,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=141938,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1505,
+ ["unit"]=0
+ }
+ },
+ [15059]={
+ ["next_chapter"]=15060,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22009,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7263,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1470,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=148499,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1470,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=141938,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1505,
+ ["unit"]=0
+ }
+ },
+ [15060]={
+ ["next_chapter"]=15061,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=22021,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7267,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1485,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=149984,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1485,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=156788,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1506,
+ ["unit"]=0
+ }
+ },
+ [15061]={
+ ["next_chapter"]=15062,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22032,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7271,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1500,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=151484,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1500,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=156788,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1506,
+ ["unit"]=0
+ }
+ },
+ [15062]={
+ ["next_chapter"]=15063,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22044,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7275,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1515,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=152999,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1515,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=156788,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1506,
+ ["unit"]=0
+ }
+ },
+ [15063]={
+ ["next_chapter"]=15064,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22056,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7279,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1530,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=154529,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1530,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=156788,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1506,
+ ["unit"]=0
+ }
+ },
+ [15064]={
+ ["next_chapter"]=15065,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22068,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7282,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1545,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=156074,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1545,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=156788,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1506,
+ ["unit"]=0
+ }
+ },
+ [15065]={
+ ["next_chapter"]=15066,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22080,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7286,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1561,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=157635,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1561,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=156788,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1506,
+ ["unit"]=0
+ }
+ },
+ [15066]={
+ ["next_chapter"]=15067,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22092,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7290,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1576,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=159211,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1576,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=156788,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1506,
+ ["unit"]=0
+ }
+ },
+ [15067]={
+ ["next_chapter"]=15068,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22104,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7294,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1592,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=160803,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1592,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=156788,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1506,
+ ["unit"]=0
+ }
+ },
+ [15068]={
+ ["next_chapter"]=15069,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22116,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7298,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1608,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=162411,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1608,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=156788,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1506,
+ ["unit"]=0
+ }
+ },
+ [15069]={
+ ["next_chapter"]=15070,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22128,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7302,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1624,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=164035,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1624,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=156788,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1506,
+ ["unit"]=0
+ }
+ },
+ [15070]={
+ ["next_chapter"]=15071,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=22140,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7306,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1640,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=165676,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1640,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=173192,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1507,
+ ["unit"]=0
+ }
+ },
+ [15071]={
+ ["next_chapter"]=15072,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22151,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7310,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1657,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=167332,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1657,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=173192,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1507,
+ ["unit"]=0
+ }
+ },
+ [15072]={
+ ["next_chapter"]=15073,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22163,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7314,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1673,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=169006,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1673,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=173192,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1507,
+ ["unit"]=0
+ }
+ },
+ [15073]={
+ ["next_chapter"]=15074,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22175,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7318,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1690,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=170696,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1690,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=173192,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1507,
+ ["unit"]=0
+ }
+ },
+ [15074]={
+ ["next_chapter"]=15075,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22187,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7322,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1707,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=172403,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1707,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=173192,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1507,
+ ["unit"]=0
+ }
+ },
+ [15075]={
+ ["next_chapter"]=15076,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22199,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7326,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1724,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=174127,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1724,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=173192,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1507,
+ ["unit"]=0
+ }
+ },
+ [15076]={
+ ["next_chapter"]=15077,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22211,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7330,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1741,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=175868,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1741,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=173192,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1507,
+ ["unit"]=0
+ }
+ },
+ [15077]={
+ ["next_chapter"]=15078,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22223,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7334,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1759,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=177627,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1759,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=173192,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1507,
+ ["unit"]=0
+ }
+ },
+ [15078]={
+ ["next_chapter"]=15079,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22235,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7338,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1776,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=179403,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1776,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=173192,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1507,
+ ["unit"]=0
+ }
+ },
+ [15079]={
+ ["next_chapter"]=15080,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22247,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7341,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1794,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=181197,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1794,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=173192,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1507,
+ ["unit"]=0
+ }
+ },
+ [15080]={
+ ["next_chapter"]=15081,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=22259,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7345,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1812,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=183009,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1812,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=191312,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1508,
+ ["unit"]=0
+ }
+ },
+ [15081]={
+ ["next_chapter"]=15082,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22271,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7349,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1830,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=184839,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1830,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=191312,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1508,
+ ["unit"]=0
+ }
+ },
+ [15082]={
+ ["next_chapter"]=15083,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22283,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7353,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1848,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=186687,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1848,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=191312,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1508,
+ ["unit"]=0
+ }
+ },
+ [15083]={
+ ["next_chapter"]=15084,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22295,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7357,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1867,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=188554,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1867,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=191312,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1508,
+ ["unit"]=0
+ }
+ },
+ [15084]={
+ ["next_chapter"]=15085,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22307,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7361,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1886,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=190440,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1886,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=191312,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1508,
+ ["unit"]=0
+ }
+ },
+ [15085]={
+ ["next_chapter"]=15086,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22319,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7365,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1904,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=192344,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1904,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=191312,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1508,
+ ["unit"]=0
+ }
+ },
+ [15086]={
+ ["next_chapter"]=15087,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22331,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7369,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1923,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=194268,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1923,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=191312,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1508,
+ ["unit"]=0
+ }
+ },
+ [15087]={
+ ["next_chapter"]=15088,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22343,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7373,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1943,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=196210,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1943,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=191312,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1508,
+ ["unit"]=0
+ }
+ },
+ [15088]={
+ ["next_chapter"]=15089,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22355,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7377,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1962,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=198173,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1962,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=191312,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1508,
+ ["unit"]=0
+ }
+ },
+ [15089]={
+ ["next_chapter"]=15090,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22367,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7381,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=1982,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=200154,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=1982,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=191312,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1508,
+ ["unit"]=0
+ }
+ },
+ [15090]={
+ ["next_chapter"]=15091,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=22379,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7385,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2002,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=202156,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=2002,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=211327,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1509,
+ ["unit"]=0
+ }
+ },
+ [15091]={
+ ["next_chapter"]=15092,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22391,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7389,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2022,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=204177,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=2022,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=211327,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1509,
+ ["unit"]=0
+ }
+ },
+ [15092]={
+ ["next_chapter"]=15093,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22403,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7393,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2042,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=206219,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=2042,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=211327,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1509,
+ ["unit"]=0
+ }
+ },
+ [15093]={
+ ["next_chapter"]=15094,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22415,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7397,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2062,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=208281,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=2062,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=211327,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1509,
+ ["unit"]=0
+ }
+ },
+ [15094]={
+ ["next_chapter"]=15095,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22427,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7401,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2083,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=210364,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=2083,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=211327,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1509,
+ ["unit"]=0
+ }
+ },
+ [15095]={
+ ["next_chapter"]=15096,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22439,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7405,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2104,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=212468,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=2104,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=211327,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1509,
+ ["unit"]=0
+ }
+ },
+ [15096]={
+ ["next_chapter"]=15097,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22451,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7409,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2125,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=214592,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=2125,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=211327,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1509,
+ ["unit"]=0
+ }
+ },
+ [15097]={
+ ["next_chapter"]=15098,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22463,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7413,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2146,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=216738,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=2146,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=211327,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1509,
+ ["unit"]=0
+ }
+ },
+ [15098]={
+ ["next_chapter"]=15099,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22475,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7417,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2167,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=218906,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=2167,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=211327,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1509,
+ ["unit"]=0
+ }
+ },
+ [15099]={
+ ["next_chapter"]=15100,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22487,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7421,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2189,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=221095,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=2189,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=211327,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1509,
+ ["unit"]=0
+ }
+ },
+ [15100]={
+ ["next_chapter"]=15101,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=22499,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7425,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2211,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=223306,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=2211,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=62,
+ ["grasp_gold_reward"]={
+ ["value"]=233436,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1510,
+ ["unit"]=0
+ }
+ },
+ [15101]={
+ ["next_chapter"]=15102,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22511,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7429,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2233,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=225539,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=2233,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=233436,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1510,
+ ["unit"]=0
+ }
+ },
+ [15102]={
+ ["next_chapter"]=15103,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22523,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7433,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2255,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=227794,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=2255,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=233436,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1510,
+ ["unit"]=0
+ }
+ },
+ [15103]={
+ ["next_chapter"]=15104,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22535,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7437,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2278,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=230072,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=2278,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=233436,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1510,
+ ["unit"]=0
+ }
+ },
+ [15104]={
+ ["next_chapter"]=15105,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22547,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7441,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2301,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=232373,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=2301,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=233436,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1510,
+ ["unit"]=0
+ }
+ },
+ [15105]={
+ ["next_chapter"]=15106,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22559,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7445,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2324,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=234697,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=2324,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=233436,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1510,
+ ["unit"]=0
+ }
+ },
+ [15106]={
+ ["next_chapter"]=15107,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22571,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7448,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2347,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=237044,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=2347,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=233436,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1510,
+ ["unit"]=0
+ }
+ },
+ [15107]={
+ ["next_chapter"]=15108,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22583,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7452,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2370,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=239414,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=2370,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=233436,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1510,
+ ["unit"]=0
+ }
+ },
+ [15108]={
+ ["next_chapter"]=15109,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22595,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7456,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2394,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=241808,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=2394,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=233436,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1510,
+ ["unit"]=0
+ }
+ },
+ [15109]={
+ ["next_chapter"]=15110,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22607,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7460,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2418,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=244226,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=2418,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=233436,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1510,
+ ["unit"]=0
+ }
+ },
+ [15110]={
+ ["next_chapter"]=15111,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=22619,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7464,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2442,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=246668,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=2442,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=257859,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1511,
+ ["unit"]=0
+ }
+ },
+ [15111]={
+ ["next_chapter"]=15112,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22632,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7468,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2467,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=249135,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=2467,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=257859,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1511,
+ ["unit"]=0
+ }
+ },
+ [15112]={
+ ["next_chapter"]=15113,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22644,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7472,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2491,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=251626,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=2491,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=257859,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1511,
+ ["unit"]=0
+ }
+ },
+ [15113]={
+ ["next_chapter"]=15114,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22656,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7476,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2516,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=254143,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=2516,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=257859,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1511,
+ ["unit"]=0
+ }
+ },
+ [15114]={
+ ["next_chapter"]=15115,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22668,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7480,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2541,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=256684,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=2541,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=257859,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1511,
+ ["unit"]=0
+ }
+ },
+ [15115]={
+ ["next_chapter"]=15116,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22680,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7484,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2567,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=259251,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=2567,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=257859,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1511,
+ ["unit"]=0
+ }
+ },
+ [15116]={
+ ["next_chapter"]=15117,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22692,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7488,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2593,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=261844,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=2593,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=257859,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1511,
+ ["unit"]=0
+ }
+ },
+ [15117]={
+ ["next_chapter"]=15118,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22704,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7492,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2618,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=264462,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=2618,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=257859,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1511,
+ ["unit"]=0
+ }
+ },
+ [15118]={
+ ["next_chapter"]=15119,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22716,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7496,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2645,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=267107,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=2645,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=257859,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1511,
+ ["unit"]=0
+ }
+ },
+ [15119]={
+ ["next_chapter"]=15120,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22728,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7500,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2671,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=269778,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=2671,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=257859,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1511,
+ ["unit"]=0
+ }
+ },
+ [15120]={
+ ["next_chapter"]=15121,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=22741,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7504,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2698,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=272475,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=2698,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=284837,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1512,
+ ["unit"]=0
+ }
+ },
+ [15121]={
+ ["next_chapter"]=15122,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22753,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7508,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2725,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=275200,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=2725,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=284837,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1512,
+ ["unit"]=0
+ }
+ },
+ [15122]={
+ ["next_chapter"]=15123,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22765,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7512,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2752,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=277952,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=2752,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=284837,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1512,
+ ["unit"]=0
+ }
+ },
+ [15123]={
+ ["next_chapter"]=15124,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22777,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7516,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2780,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=280732,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=2780,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=284837,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1512,
+ ["unit"]=0
+ }
+ },
+ [15124]={
+ ["next_chapter"]=15125,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22789,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7520,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2807,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=283539,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=2807,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=284837,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1512,
+ ["unit"]=0
+ }
+ },
+ [15125]={
+ ["next_chapter"]=15126,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22801,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7524,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2835,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=286374,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=2835,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=284837,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1512,
+ ["unit"]=0
+ }
+ },
+ [15126]={
+ ["next_chapter"]=15127,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22813,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7528,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2864,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=289238,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=2864,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=284837,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1512,
+ ["unit"]=0
+ }
+ },
+ [15127]={
+ ["next_chapter"]=15128,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22826,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7532,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2892,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=292131,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=2892,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=284837,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1512,
+ ["unit"]=0
+ }
+ },
+ [15128]={
+ ["next_chapter"]=15129,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22838,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7536,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2921,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=295052,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=2921,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=284837,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1512,
+ ["unit"]=0
+ }
+ },
+ [15129]={
+ ["next_chapter"]=15130,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22850,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7540,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2951,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=298002,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=2951,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=284837,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1512,
+ ["unit"]=0
+ }
+ },
+ [15130]={
+ ["next_chapter"]=15131,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=22862,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7544,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=2980,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=300982,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=2980,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=314637,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1513,
+ ["unit"]=0
+ }
+ },
+ [15131]={
+ ["next_chapter"]=15132,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22874,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7548,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3010,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=303992,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=3010,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=314637,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1513,
+ ["unit"]=0
+ }
+ },
+ [15132]={
+ ["next_chapter"]=15133,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22886,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7553,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3040,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=307032,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=3040,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=314637,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1513,
+ ["unit"]=0
+ }
+ },
+ [15133]={
+ ["next_chapter"]=15134,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22899,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7557,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3070,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=310102,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=3070,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=314637,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1513,
+ ["unit"]=0
+ }
+ },
+ [15134]={
+ ["next_chapter"]=15135,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22911,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7561,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3101,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=313203,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=3101,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=314637,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1513,
+ ["unit"]=0
+ }
+ },
+ [15135]={
+ ["next_chapter"]=15136,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22923,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7565,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3132,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=316336,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=3132,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=314637,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1513,
+ ["unit"]=0
+ }
+ },
+ [15136]={
+ ["next_chapter"]=15137,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22935,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7569,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3163,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=319499,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=3163,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=314637,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1513,
+ ["unit"]=0
+ }
+ },
+ [15137]={
+ ["next_chapter"]=15138,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22947,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7573,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3195,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=322694,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=3195,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=314637,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1513,
+ ["unit"]=0
+ }
+ },
+ [15138]={
+ ["next_chapter"]=15139,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22960,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7577,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3227,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=325921,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=3227,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=314637,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1513,
+ ["unit"]=0
+ }
+ },
+ [15139]={
+ ["next_chapter"]=15140,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22972,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7581,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3259,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=329180,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=3259,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=314637,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1513,
+ ["unit"]=0
+ }
+ },
+ [15140]={
+ ["next_chapter"]=15141,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=22984,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7585,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3292,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=332472,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=3292,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=347555,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1514,
+ ["unit"]=0
+ }
+ },
+ [15141]={
+ ["next_chapter"]=15142,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=22996,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7589,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3325,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=335797,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=3325,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=347555,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1514,
+ ["unit"]=0
+ }
+ },
+ [15142]={
+ ["next_chapter"]=15143,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23008,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7593,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3358,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=339154,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=3358,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=347555,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1514,
+ ["unit"]=0
+ }
+ },
+ [15143]={
+ ["next_chapter"]=15144,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23021,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7597,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3392,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=342546,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=3392,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=347555,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1514,
+ ["unit"]=0
+ }
+ },
+ [15144]={
+ ["next_chapter"]=15145,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23033,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7601,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3425,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=345971,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=3425,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=347555,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1514,
+ ["unit"]=0
+ }
+ },
+ [15145]={
+ ["next_chapter"]=15146,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23045,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7605,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3460,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=349431,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=3460,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=347555,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1514,
+ ["unit"]=0
+ }
+ },
+ [15146]={
+ ["next_chapter"]=15147,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23057,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7609,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3494,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=352926,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=3494,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=347555,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1514,
+ ["unit"]=0
+ }
+ },
+ [15147]={
+ ["next_chapter"]=15148,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23070,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7613,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3529,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=356455,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=3529,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=347555,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1514,
+ ["unit"]=0
+ }
+ },
+ [15148]={
+ ["next_chapter"]=15149,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23082,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7617,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3565,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=360019,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=3565,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=347555,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1514,
+ ["unit"]=0
+ }
+ },
+ [15149]={
+ ["next_chapter"]=15150,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23094,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7621,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3600,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=363620,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=3600,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=347555,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1514,
+ ["unit"]=0
+ }
+ },
+ [15150]={
+ ["next_chapter"]=15151,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=23106,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7625,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3636,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=367256,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=3636,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=383917,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1515,
+ ["unit"]=0
+ }
+ },
+ [15151]={
+ ["next_chapter"]=15152,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23119,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7629,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3673,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=370928,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=3673,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=383917,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1515,
+ ["unit"]=0
+ }
+ },
+ [15152]={
+ ["next_chapter"]=15153,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23131,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7633,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3709,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=374638,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=3709,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=383917,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1515,
+ ["unit"]=0
+ }
+ },
+ [15153]={
+ ["next_chapter"]=15154,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23143,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7637,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3746,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=378384,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=3746,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=383917,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1515,
+ ["unit"]=0
+ }
+ },
+ [15154]={
+ ["next_chapter"]=15155,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23155,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7641,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3784,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=382168,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=3784,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=383917,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1515,
+ ["unit"]=0
+ }
+ },
+ [15155]={
+ ["next_chapter"]=15156,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23168,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7645,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3822,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=385989,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=3822,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=383917,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1515,
+ ["unit"]=0
+ }
+ },
+ [15156]={
+ ["next_chapter"]=15157,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23180,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7649,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3860,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=389849,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=3860,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=383917,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1515,
+ ["unit"]=0
+ }
+ },
+ [15157]={
+ ["next_chapter"]=15158,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23192,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7653,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3898,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=393748,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=3898,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=383917,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1515,
+ ["unit"]=0
+ }
+ },
+ [15158]={
+ ["next_chapter"]=15159,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23205,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7658,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3937,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=397685,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=3937,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=383917,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1515,
+ ["unit"]=0
+ }
+ },
+ [15159]={
+ ["next_chapter"]=15160,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23217,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7662,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=3977,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=401662,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=3977,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=383917,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1515,
+ ["unit"]=0
+ }
+ },
+ [15160]={
+ ["next_chapter"]=15161,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=23229,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7666,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4017,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=405679,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=4017,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=424083,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1516,
+ ["unit"]=0
+ }
+ },
+ [15161]={
+ ["next_chapter"]=15162,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23241,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7670,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4057,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=409736,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=4057,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=424083,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1516,
+ ["unit"]=0
+ }
+ },
+ [15162]={
+ ["next_chapter"]=15163,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23254,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7674,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4097,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=413833,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=4097,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=424083,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1516,
+ ["unit"]=0
+ }
+ },
+ [15163]={
+ ["next_chapter"]=15164,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23266,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7678,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4138,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=417971,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=4138,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=424083,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1516,
+ ["unit"]=0
+ }
+ },
+ [15164]={
+ ["next_chapter"]=15165,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23278,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7682,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4180,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=422151,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=4180,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=424083,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1516,
+ ["unit"]=0
+ }
+ },
+ [15165]={
+ ["next_chapter"]=15166,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23291,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7686,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4222,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=426372,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=4222,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=424083,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1516,
+ ["unit"]=0
+ }
+ },
+ [15166]={
+ ["next_chapter"]=15167,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23303,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7690,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4264,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=430636,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=4264,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=424083,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1516,
+ ["unit"]=0
+ }
+ },
+ [15167]={
+ ["next_chapter"]=15168,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23315,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7694,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4306,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=434943,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=4306,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=424083,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1516,
+ ["unit"]=0
+ }
+ },
+ [15168]={
+ ["next_chapter"]=15169,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23328,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7698,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4349,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=439292,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=4349,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=424083,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1516,
+ ["unit"]=0
+ }
+ },
+ [15169]={
+ ["next_chapter"]=15170,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23340,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7702,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4393,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=443685,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=4393,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=424083,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1516,
+ ["unit"]=0
+ }
+ },
+ [15170]={
+ ["next_chapter"]=15171,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=23352,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7706,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4437,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=448122,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=4437,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=468452,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1517,
+ ["unit"]=0
+ }
+ },
+ [15171]={
+ ["next_chapter"]=15172,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23365,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7710,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4481,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=452603,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=4481,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=468452,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1517,
+ ["unit"]=0
+ }
+ },
+ [15172]={
+ ["next_chapter"]=15173,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23377,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7714,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4526,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=457129,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=4526,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=468452,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1517,
+ ["unit"]=0
+ }
+ },
+ [15173]={
+ ["next_chapter"]=15174,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23389,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7719,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4571,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=461700,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=4571,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=468452,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1517,
+ ["unit"]=0
+ }
+ },
+ [15174]={
+ ["next_chapter"]=15175,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23402,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7723,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4617,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=466317,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=4617,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=468452,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1517,
+ ["unit"]=0
+ }
+ },
+ [15175]={
+ ["next_chapter"]=15176,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23414,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7727,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4663,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=470980,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=4663,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=468452,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1517,
+ ["unit"]=0
+ }
+ },
+ [15176]={
+ ["next_chapter"]=15177,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23427,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7731,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4710,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=475690,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=4710,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=468452,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1517,
+ ["unit"]=0
+ }
+ },
+ [15177]={
+ ["next_chapter"]=15178,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23439,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7735,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4757,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=480447,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=4757,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=468452,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1517,
+ ["unit"]=0
+ }
+ },
+ [15178]={
+ ["next_chapter"]=15179,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23451,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7739,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4804,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=485252,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=4804,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=468452,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1517,
+ ["unit"]=0
+ }
+ },
+ [15179]={
+ ["next_chapter"]=15180,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23464,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7743,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4853,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=490104,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=4853,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=468452,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1517,
+ ["unit"]=0
+ }
+ },
+ [15180]={
+ ["next_chapter"]=15181,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=203,
+ ["atk_coefficient"]={
+ ["value"]=23476,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7747,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4901,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=495005,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=4901,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=517462,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1518,
+ ["unit"]=0
+ }
+ },
+ [15181]={
+ ["next_chapter"]=15182,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23488,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7751,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=4950,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=499955,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=4950,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=517462,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1518,
+ ["unit"]=0
+ }
+ },
+ [15182]={
+ ["next_chapter"]=15183,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23501,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7755,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5000,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=504955,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=5000,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=517462,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1518,
+ ["unit"]=0
+ }
+ },
+ [15183]={
+ ["next_chapter"]=15184,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23513,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7759,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5050,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=510004,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=5050,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=517462,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1518,
+ ["unit"]=0
+ }
+ },
+ [15184]={
+ ["next_chapter"]=15185,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23526,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7763,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5100,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=515104,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=5100,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=517462,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1518,
+ ["unit"]=0
+ }
+ },
+ [15185]={
+ ["next_chapter"]=15186,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23538,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7768,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5151,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=520255,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=5151,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=517462,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1518,
+ ["unit"]=0
+ }
+ },
+ [15186]={
+ ["next_chapter"]=15187,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23550,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7772,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5203,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=525458,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=5203,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=517462,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1518,
+ ["unit"]=0
+ }
+ },
+ [15187]={
+ ["next_chapter"]=15188,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23563,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7776,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5255,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=530713,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=5255,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=517462,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1518,
+ ["unit"]=0
+ }
+ },
+ [15188]={
+ ["next_chapter"]=15189,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23575,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7780,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5307,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=536020,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=5307,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=517462,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1518,
+ ["unit"]=0
+ }
+ },
+ [15189]={
+ ["next_chapter"]=15190,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23588,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7784,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5360,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=541380,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=5360,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=517462,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1518,
+ ["unit"]=0
+ }
+ },
+ [15190]={
+ ["next_chapter"]=15191,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=23600,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7788,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5414,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=546794,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=5414,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=571600,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1519,
+ ["unit"]=0
+ }
+ },
+ [15191]={
+ ["next_chapter"]=15192,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23613,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7792,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5468,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=552262,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=5468,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=571600,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1519,
+ ["unit"]=0
+ }
+ },
+ [15192]={
+ ["next_chapter"]=15193,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23625,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7796,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5523,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=557784,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=5523,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=571600,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1519,
+ ["unit"]=0
+ }
+ },
+ [15193]={
+ ["next_chapter"]=15194,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23637,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7800,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5578,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=563362,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=5578,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=571600,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1519,
+ ["unit"]=0
+ }
+ },
+ [15194]={
+ ["next_chapter"]=15195,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23650,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7804,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5634,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=568996,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=5634,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=571600,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1519,
+ ["unit"]=0
+ }
+ },
+ [15195]={
+ ["next_chapter"]=15196,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23662,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7809,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5690,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=574686,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=5690,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=571600,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1519,
+ ["unit"]=0
+ }
+ },
+ [15196]={
+ ["next_chapter"]=15197,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23675,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7813,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5747,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=580433,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=5747,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=571600,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1519,
+ ["unit"]=0
+ }
+ },
+ [15197]={
+ ["next_chapter"]=15198,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23687,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7817,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5804,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=586237,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=5804,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=571600,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1519,
+ ["unit"]=0
+ }
+ },
+ [15198]={
+ ["next_chapter"]=15199,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23700,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7821,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5862,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=592099,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=5862,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=571600,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1519,
+ ["unit"]=0
+ }
+ },
+ [15199]={
+ ["next_chapter"]=15200,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23712,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7825,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5921,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=598020,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=5921,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=571600,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1519,
+ ["unit"]=0
+ }
+ },
+ [15200]={
+ ["next_chapter"]=15201,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=23725,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7829,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=5980,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=604000,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=5980,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=631402,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1520,
+ ["unit"]=0
+ }
+ },
+ [15201]={
+ ["next_chapter"]=15202,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23737,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7833,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6040,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=610040,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=6040,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=631402,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1520,
+ ["unit"]=0
+ }
+ },
+ [15202]={
+ ["next_chapter"]=15203,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23750,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7837,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6100,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=616141,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=6100,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=631402,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1520,
+ ["unit"]=0
+ }
+ },
+ [15203]={
+ ["next_chapter"]=15204,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23762,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7842,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6161,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=622302,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=6161,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=631402,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1520,
+ ["unit"]=0
+ }
+ },
+ [15204]={
+ ["next_chapter"]=15205,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23775,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7846,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6223,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=628525,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=6223,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=631402,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1520,
+ ["unit"]=0
+ }
+ },
+ [15205]={
+ ["next_chapter"]=15206,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23787,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7850,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6285,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=634811,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=6285,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=631402,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1520,
+ ["unit"]=0
+ }
+ },
+ [15206]={
+ ["next_chapter"]=15207,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23800,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7854,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6348,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=641159,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=6348,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=631402,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1520,
+ ["unit"]=0
+ }
+ },
+ [15207]={
+ ["next_chapter"]=15208,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23812,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7858,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6412,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=647570,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=6412,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=631402,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1520,
+ ["unit"]=0
+ }
+ },
+ [15208]={
+ ["next_chapter"]=15209,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23825,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7862,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6476,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=654046,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=6476,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=631402,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1520,
+ ["unit"]=0
+ }
+ },
+ [15209]={
+ ["next_chapter"]=15210,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23837,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7866,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6540,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=660586,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=6540,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=631402,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1520,
+ ["unit"]=0
+ }
+ },
+ [15210]={
+ ["next_chapter"]=15211,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=23850,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7870,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6606,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=667192,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=6606,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=697461,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1521,
+ ["unit"]=0
+ }
+ },
+ [15211]={
+ ["next_chapter"]=15212,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23862,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7875,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6672,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=673864,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=6672,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=697461,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1521,
+ ["unit"]=0
+ }
+ },
+ [15212]={
+ ["next_chapter"]=15213,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23875,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7879,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6739,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=680603,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=6739,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=697461,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1521,
+ ["unit"]=0
+ }
+ },
+ [15213]={
+ ["next_chapter"]=15214,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23887,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7883,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6806,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=687409,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=6806,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=697461,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1521,
+ ["unit"]=0
+ }
+ },
+ [15214]={
+ ["next_chapter"]=15215,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23900,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7887,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6874,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=694283,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=6874,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=697461,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1521,
+ ["unit"]=0
+ }
+ },
+ [15215]={
+ ["next_chapter"]=15216,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23912,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7891,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=6943,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=701226,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=6943,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=697461,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1521,
+ ["unit"]=0
+ }
+ },
+ [15216]={
+ ["next_chapter"]=15217,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23925,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7895,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7012,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=708238,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=7012,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=697461,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1521,
+ ["unit"]=0
+ }
+ },
+ [15217]={
+ ["next_chapter"]=15218,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23937,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7899,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7082,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=715320,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=7082,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=697461,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1521,
+ ["unit"]=0
+ }
+ },
+ [15218]={
+ ["next_chapter"]=15219,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23950,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7903,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7153,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=722474,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=7153,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=697461,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1521,
+ ["unit"]=0
+ }
+ },
+ [15219]={
+ ["next_chapter"]=15220,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23963,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7908,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7225,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=729698,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=7225,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=697461,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1521,
+ ["unit"]=0
+ }
+ },
+ [15220]={
+ ["next_chapter"]=15221,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=23975,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7912,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7297,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=736995,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=7297,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=770431,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1522,
+ ["unit"]=0
+ }
+ },
+ [15221]={
+ ["next_chapter"]=15222,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=23988,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7916,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7370,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=744365,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=7370,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=770431,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1522,
+ ["unit"]=0
+ }
+ },
+ [15222]={
+ ["next_chapter"]=15223,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24000,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7920,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7444,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=751809,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=7444,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=770431,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1522,
+ ["unit"]=0
+ }
+ },
+ [15223]={
+ ["next_chapter"]=15224,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24013,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7924,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7518,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=759327,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=7518,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=770431,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1522,
+ ["unit"]=0
+ }
+ },
+ [15224]={
+ ["next_chapter"]=15225,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24025,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7928,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7593,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=766920,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=7593,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=770431,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1522,
+ ["unit"]=0
+ }
+ },
+ [15225]={
+ ["next_chapter"]=15226,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24038,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7933,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7669,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=774589,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=7669,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=770431,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1522,
+ ["unit"]=0
+ }
+ },
+ [15226]={
+ ["next_chapter"]=15227,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24051,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7937,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7746,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=782335,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=7746,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=770431,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1522,
+ ["unit"]=0
+ }
+ },
+ [15227]={
+ ["next_chapter"]=15228,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24063,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7941,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7823,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=790159,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=7823,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=770431,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1522,
+ ["unit"]=0
+ }
+ },
+ [15228]={
+ ["next_chapter"]=15229,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24076,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7945,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7902,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=798060,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=7902,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=770431,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1522,
+ ["unit"]=0
+ }
+ },
+ [15229]={
+ ["next_chapter"]=15230,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24088,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7949,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=7981,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=806041,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=7981,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=770431,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1522,
+ ["unit"]=0
+ }
+ },
+ [15230]={
+ ["next_chapter"]=15231,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=24101,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7953,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8060,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=814101,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=8060,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=851035,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1523,
+ ["unit"]=0
+ }
+ },
+ [15231]={
+ ["next_chapter"]=15232,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24114,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7957,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8141,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=822242,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=8141,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=851035,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1523,
+ ["unit"]=0
+ }
+ },
+ [15232]={
+ ["next_chapter"]=15233,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24126,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7962,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8222,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=830465,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=8222,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=851035,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1523,
+ ["unit"]=0
+ }
+ },
+ [15233]={
+ ["next_chapter"]=15234,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24139,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7966,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8305,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=838769,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=8305,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=851035,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1523,
+ ["unit"]=0
+ }
+ },
+ [15234]={
+ ["next_chapter"]=15235,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24151,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7970,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8388,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=847157,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=8388,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=851035,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1523,
+ ["unit"]=0
+ }
+ },
+ [15235]={
+ ["next_chapter"]=15236,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24164,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7974,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8472,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=855629,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=8472,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=851035,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1523,
+ ["unit"]=0
+ }
+ },
+ [15236]={
+ ["next_chapter"]=15237,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24177,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7978,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8556,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=864185,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=8556,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=851035,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1523,
+ ["unit"]=0
+ }
+ },
+ [15237]={
+ ["next_chapter"]=15238,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24189,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7982,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8642,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=872827,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=8642,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=851035,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1523,
+ ["unit"]=0
+ }
+ },
+ [15238]={
+ ["next_chapter"]=15239,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24202,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7987,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8728,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=881555,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=8728,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=851035,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1523,
+ ["unit"]=0
+ }
+ },
+ [15239]={
+ ["next_chapter"]=15240,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24215,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7991,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8816,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=890371,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=8816,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=851035,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1523,
+ ["unit"]=0
+ }
+ },
+ [15240]={
+ ["next_chapter"]=15241,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=24227,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7995,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8904,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=899274,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=8904,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=940072,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1524,
+ ["unit"]=0
+ }
+ },
+ [15241]={
+ ["next_chapter"]=15242,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24240,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=7999,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=8993,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=908267,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=8993,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=940072,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1524,
+ ["unit"]=0
+ }
+ },
+ [15242]={
+ ["next_chapter"]=15243,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24253,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8003,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=9083,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=917350,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=9083,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=940072,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1524,
+ ["unit"]=0
+ }
+ },
+ [15243]={
+ ["next_chapter"]=15244,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24265,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8008,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=9173,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=926523,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=9173,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=940072,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1524,
+ ["unit"]=0
+ }
+ },
+ [15244]={
+ ["next_chapter"]=15245,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24278,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8012,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=9265,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=935788,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=9265,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=940072,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1524,
+ ["unit"]=0
+ }
+ },
+ [15245]={
+ ["next_chapter"]=15246,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24291,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8016,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=9358,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=945146,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=9358,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=940072,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1524,
+ ["unit"]=0
+ }
+ },
+ [15246]={
+ ["next_chapter"]=15247,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24303,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8020,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=9451,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=954598,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=9451,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=940072,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1524,
+ ["unit"]=0
+ }
+ },
+ [15247]={
+ ["next_chapter"]=15248,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24316,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8024,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=9546,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=964144,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=9546,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=940072,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1524,
+ ["unit"]=0
+ }
+ },
+ [15248]={
+ ["next_chapter"]=15249,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24329,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8028,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=9641,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=973785,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=9641,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=940072,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1524,
+ ["unit"]=0
+ }
+ },
+ [15249]={
+ ["next_chapter"]=15250,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24341,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8033,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=9738,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=983523,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=9738,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=940072,
+ ["unit"]=21
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1524,
+ ["unit"]=0
+ }
+ },
+ [15250]={
+ ["next_chapter"]=15251,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=24354,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8037,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=9835,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=993358,
+ ["unit"]=21
+ },
+ ["idle_gold"]={
+ ["value"]=9835,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1038,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1525,
+ ["unit"]=0
+ }
+ },
+ [15251]={
+ ["next_chapter"]=15252,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24367,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8041,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=9934,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1003,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=9934,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1038,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1525,
+ ["unit"]=0
+ }
+ },
+ [15252]={
+ ["next_chapter"]=15253,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24379,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8045,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=10033,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1013,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=10033,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1038,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1525,
+ ["unit"]=0
+ }
+ },
+ [15253]={
+ ["next_chapter"]=15254,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24392,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8049,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=10133,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1023,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=10133,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1038,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1525,
+ ["unit"]=0
+ }
+ },
+ [15254]={
+ ["next_chapter"]=15255,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24405,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8054,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=10235,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1034,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=10235,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1038,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1525,
+ ["unit"]=0
+ }
+ },
+ [15255]={
+ ["next_chapter"]=15256,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24418,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8058,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=10337,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1044,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=10337,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1038,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1525,
+ ["unit"]=0
+ }
+ },
+ [15256]={
+ ["next_chapter"]=15257,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24430,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8062,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=10440,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1054,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=10440,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1038,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1525,
+ ["unit"]=0
+ }
+ },
+ [15257]={
+ ["next_chapter"]=15258,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24443,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8066,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=10545,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1065,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=10545,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1038,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1525,
+ ["unit"]=0
+ }
+ },
+ [15258]={
+ ["next_chapter"]=15259,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24456,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8070,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=10650,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1076,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=10650,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1038,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1525,
+ ["unit"]=0
+ }
+ },
+ [15259]={
+ ["next_chapter"]=15260,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24468,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8075,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=10757,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1086,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=10757,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1038,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1525,
+ ["unit"]=0
+ }
+ },
+ [15260]={
+ ["next_chapter"]=15261,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=24481,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8079,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=10864,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1097,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=10864,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1147,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1526,
+ ["unit"]=0
+ }
+ },
+ [15261]={
+ ["next_chapter"]=15262,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24494,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8083,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=10973,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1108,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=10973,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1147,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1526,
+ ["unit"]=0
+ }
+ },
+ [15262]={
+ ["next_chapter"]=15263,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24507,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8087,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=11083,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1119,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=11083,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1147,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1526,
+ ["unit"]=0
+ }
+ },
+ [15263]={
+ ["next_chapter"]=15264,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24519,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8091,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=11193,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1131,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=11193,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1147,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1526,
+ ["unit"]=0
+ }
+ },
+ [15264]={
+ ["next_chapter"]=15265,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24532,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8096,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=11305,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1142,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=11305,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1147,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1526,
+ ["unit"]=0
+ }
+ },
+ [15265]={
+ ["next_chapter"]=15266,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24545,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8100,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=11418,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1153,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=11418,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1147,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1526,
+ ["unit"]=0
+ }
+ },
+ [15266]={
+ ["next_chapter"]=15267,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24558,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8104,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=11533,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1165,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=11533,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1147,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1526,
+ ["unit"]=0
+ }
+ },
+ [15267]={
+ ["next_chapter"]=15268,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24570,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8108,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=11648,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1176,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=11648,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1147,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1526,
+ ["unit"]=0
+ }
+ },
+ [15268]={
+ ["next_chapter"]=15269,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24583,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8112,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=11764,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1188,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=11764,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1147,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1526,
+ ["unit"]=0
+ }
+ },
+ [15269]={
+ ["next_chapter"]=15270,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24596,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8117,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=11882,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1200,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=11882,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1147,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1526,
+ ["unit"]=0
+ }
+ },
+ [15270]={
+ ["next_chapter"]=15271,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=24609,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8121,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=12001,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1212,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=12001,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1267,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1527,
+ ["unit"]=0
+ }
+ },
+ [15271]={
+ ["next_chapter"]=15272,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24622,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8125,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=12121,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1224,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=12121,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1267,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1527,
+ ["unit"]=0
+ }
+ },
+ [15272]={
+ ["next_chapter"]=15273,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24634,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8129,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=12242,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1236,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=12242,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1267,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1527,
+ ["unit"]=0
+ }
+ },
+ [15273]={
+ ["next_chapter"]=15274,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24647,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8134,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=12364,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1249,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=12364,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1267,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1527,
+ ["unit"]=0
+ }
+ },
+ [15274]={
+ ["next_chapter"]=15275,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24660,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8138,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=12488,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1261,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=12488,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1267,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1527,
+ ["unit"]=0
+ }
+ },
+ [15275]={
+ ["next_chapter"]=15276,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24673,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8142,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=12613,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1274,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=12613,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1267,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1527,
+ ["unit"]=0
+ }
+ },
+ [15276]={
+ ["next_chapter"]=15277,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24686,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8146,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=12739,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1287,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=12739,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1267,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1527,
+ ["unit"]=0
+ }
+ },
+ [15277]={
+ ["next_chapter"]=15278,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24698,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8150,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=12867,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1300,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=12867,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1267,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1527,
+ ["unit"]=0
+ }
+ },
+ [15278]={
+ ["next_chapter"]=15279,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24711,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8155,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=12995,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1313,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=12995,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1267,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1527,
+ ["unit"]=0
+ }
+ },
+ [15279]={
+ ["next_chapter"]=15280,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24724,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8159,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=13125,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1326,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=13125,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1267,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1527,
+ ["unit"]=0
+ }
+ },
+ [15280]={
+ ["next_chapter"]=15281,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=24737,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8163,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=13256,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1339,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=13256,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1400,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1528,
+ ["unit"]=0
+ }
+ },
+ [15281]={
+ ["next_chapter"]=15282,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24750,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8167,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=13389,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1352,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=13389,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1400,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1528,
+ ["unit"]=0
+ }
+ },
+ [15282]={
+ ["next_chapter"]=15283,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24763,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8172,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=13523,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1366,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=13523,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1400,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1528,
+ ["unit"]=0
+ }
+ },
+ [15283]={
+ ["next_chapter"]=15284,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24775,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8176,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=13658,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1379,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=13658,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1400,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1528,
+ ["unit"]=0
+ }
+ },
+ [15284]={
+ ["next_chapter"]=15285,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24788,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8180,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=13795,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1393,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=13795,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1400,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1528,
+ ["unit"]=0
+ }
+ },
+ [15285]={
+ ["next_chapter"]=15286,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24801,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8184,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=13933,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1407,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=13933,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1400,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1528,
+ ["unit"]=0
+ }
+ },
+ [15286]={
+ ["next_chapter"]=15287,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24814,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8189,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=14072,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1421,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=14072,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1400,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1528,
+ ["unit"]=0
+ }
+ },
+ [15287]={
+ ["next_chapter"]=15288,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24827,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8193,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=14213,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1435,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=14213,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1400,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1528,
+ ["unit"]=0
+ }
+ },
+ [15288]={
+ ["next_chapter"]=15289,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24840,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8197,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=14355,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1450,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=14355,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1400,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1528,
+ ["unit"]=0
+ }
+ },
+ [15289]={
+ ["next_chapter"]=15290,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24853,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8201,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=14498,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1464,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=14498,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1400,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1528,
+ ["unit"]=0
+ }
+ },
+ [15290]={
+ ["next_chapter"]=15291,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=24865,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8206,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=14643,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1479,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=14643,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1546,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1529,
+ ["unit"]=0
+ }
+ },
+ [15291]={
+ ["next_chapter"]=15292,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24878,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8210,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=14790,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1494,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=14790,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1546,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1529,
+ ["unit"]=0
+ }
+ },
+ [15292]={
+ ["next_chapter"]=15293,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24891,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8214,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=14938,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1509,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=14938,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1546,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1529,
+ ["unit"]=0
+ }
+ },
+ [15293]={
+ ["next_chapter"]=15294,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24904,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8218,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=15087,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1524,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=15087,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1546,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1529,
+ ["unit"]=0
+ }
+ },
+ [15294]={
+ ["next_chapter"]=15295,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24917,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8223,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=15238,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1539,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=15238,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1546,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1529,
+ ["unit"]=0
+ }
+ },
+ [15295]={
+ ["next_chapter"]=15296,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24930,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8227,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=15390,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1554,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=15390,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1546,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1529,
+ ["unit"]=0
+ }
+ },
+ [15296]={
+ ["next_chapter"]=15297,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24943,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8231,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=15544,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1570,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=15544,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1546,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1529,
+ ["unit"]=0
+ }
+ },
+ [15297]={
+ ["next_chapter"]=15298,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24956,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8235,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=15700,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1586,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=15700,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1546,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1529,
+ ["unit"]=0
+ }
+ },
+ [15298]={
+ ["next_chapter"]=15299,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24969,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8240,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=15857,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1602,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=15857,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1546,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1529,
+ ["unit"]=0
+ }
+ },
+ [15299]={
+ ["next_chapter"]=15300,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=24981,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8244,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=16015,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1618,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=16015,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1546,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1529,
+ ["unit"]=0
+ }
+ },
+ [15300]={
+ ["next_chapter"]=15301,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_06",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=24994,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8248,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=16175,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1634,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=16175,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1708,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1530,
+ ["unit"]=0
+ }
+ },
+ [15301]={
+ ["next_chapter"]=15302,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25007,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8252,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=16337,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1650,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=16337,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1708,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1530,
+ ["unit"]=0
+ }
+ },
+ [15302]={
+ ["next_chapter"]=15303,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25020,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8257,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=16500,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1667,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=16500,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1708,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1530,
+ ["unit"]=0
+ }
+ },
+ [15303]={
+ ["next_chapter"]=15304,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25033,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8261,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=16665,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1683,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=16665,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1708,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1530,
+ ["unit"]=0
+ }
+ },
+ [15304]={
+ ["next_chapter"]=15305,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25046,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8265,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=16832,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1700,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=16832,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1708,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1530,
+ ["unit"]=0
+ }
+ },
+ [15305]={
+ ["next_chapter"]=15306,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25059,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8269,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=17000,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1717,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=17000,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1708,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1530,
+ ["unit"]=0
+ }
+ },
+ [15306]={
+ ["next_chapter"]=15307,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25072,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8274,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=17170,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1734,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=17170,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1708,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1530,
+ ["unit"]=0
+ }
+ },
+ [15307]={
+ ["next_chapter"]=15308,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25085,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8278,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=17342,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1752,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=17342,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1708,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1530,
+ ["unit"]=0
+ }
+ },
+ [15308]={
+ ["next_chapter"]=15309,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25098,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8282,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=17516,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1769,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=17516,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1708,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1530,
+ ["unit"]=0
+ }
+ },
+ [15309]={
+ ["next_chapter"]=15310,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25111,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8287,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=17691,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1787,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=17691,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1708,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1530,
+ ["unit"]=0
+ }
+ },
+ [15310]={
+ ["next_chapter"]=15311,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=25124,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8291,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=17868,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1805,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=17868,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1887,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1531,
+ ["unit"]=0
+ }
+ },
+ [15311]={
+ ["next_chapter"]=15312,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25137,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8295,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=18046,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1823,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=18046,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1887,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1531,
+ ["unit"]=0
+ }
+ },
+ [15312]={
+ ["next_chapter"]=15313,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25150,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8299,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=18227,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1841,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=18227,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1887,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1531,
+ ["unit"]=0
+ }
+ },
+ [15313]={
+ ["next_chapter"]=15314,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25163,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8304,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=18409,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1859,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=18409,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1887,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1531,
+ ["unit"]=0
+ }
+ },
+ [15314]={
+ ["next_chapter"]=15315,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25176,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8308,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=18593,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1878,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=18593,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1887,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1531,
+ ["unit"]=0
+ }
+ },
+ [15315]={
+ ["next_chapter"]=15316,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25189,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8312,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=18779,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1897,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=18779,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1887,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1531,
+ ["unit"]=0
+ }
+ },
+ [15316]={
+ ["next_chapter"]=15317,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25202,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8317,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=18967,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1916,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=18967,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1887,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1531,
+ ["unit"]=0
+ }
+ },
+ [15317]={
+ ["next_chapter"]=15318,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25215,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8321,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=19157,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1935,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=19157,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1887,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1531,
+ ["unit"]=0
+ }
+ },
+ [15318]={
+ ["next_chapter"]=15319,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25228,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8325,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=19348,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1954,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=19348,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1887,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1531,
+ ["unit"]=0
+ }
+ },
+ [15319]={
+ ["next_chapter"]=15320,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25241,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8329,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=19542,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1974,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=19542,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=1887,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1531,
+ ["unit"]=0
+ }
+ },
+ [15320]={
+ ["next_chapter"]=15321,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=204,
+ ["atk_coefficient"]={
+ ["value"]=25254,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8334,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=19737,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=1993,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=19737,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=2084,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1532,
+ ["unit"]=0
+ }
+ },
+ [15321]={
+ ["next_chapter"]=15322,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25267,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8338,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=19934,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2013,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=19934,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=2084,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1532,
+ ["unit"]=0
+ }
+ },
+ [15322]={
+ ["next_chapter"]=15323,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25280,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8342,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=20134,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2034,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=20134,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=2084,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1532,
+ ["unit"]=0
+ }
+ },
+ [15323]={
+ ["next_chapter"]=15324,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25293,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8347,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=20335,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2054,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=20335,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=2084,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1532,
+ ["unit"]=0
+ }
+ },
+ [15324]={
+ ["next_chapter"]=15325,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25306,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8351,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=20538,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2074,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=20538,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=2084,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1532,
+ ["unit"]=0
+ }
+ },
+ [15325]={
+ ["next_chapter"]=15326,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25319,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8355,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=20744,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2095,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=20744,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=2084,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1532,
+ ["unit"]=0
+ }
+ },
+ [15326]={
+ ["next_chapter"]=15327,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25332,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8359,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=20951,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2116,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=20951,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=2084,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1532,
+ ["unit"]=0
+ }
+ },
+ [15327]={
+ ["next_chapter"]=15328,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25345,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8364,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=21161,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2137,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=21161,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=2084,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1532,
+ ["unit"]=0
+ }
+ },
+ [15328]={
+ ["next_chapter"]=15329,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25358,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8368,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=21372,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2159,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=21372,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=2084,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1532,
+ ["unit"]=0
+ }
+ },
+ [15329]={
+ ["next_chapter"]=15330,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25371,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8372,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=21586,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2180,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=21586,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=2084,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1532,
+ ["unit"]=0
+ }
+ },
+ [15330]={
+ ["next_chapter"]=15331,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=25384,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8377,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=21802,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2202,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=21802,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=2302,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1533,
+ ["unit"]=0
+ }
+ },
+ [15331]={
+ ["next_chapter"]=15332,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25397,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8381,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=22020,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2224,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=22020,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=2302,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1533,
+ ["unit"]=0
+ }
+ },
+ [15332]={
+ ["next_chapter"]=15333,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25410,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8385,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=22240,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2246,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=22240,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=2302,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1533,
+ ["unit"]=0
+ }
+ },
+ [15333]={
+ ["next_chapter"]=15334,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25423,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8390,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=22463,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2269,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=22463,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=2302,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1533,
+ ["unit"]=0
+ }
+ },
+ [15334]={
+ ["next_chapter"]=15335,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25436,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8394,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=22687,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2291,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=22687,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=2302,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1533,
+ ["unit"]=0
+ }
+ },
+ [15335]={
+ ["next_chapter"]=15336,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25449,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8398,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=22914,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2314,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=22914,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=2302,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1533,
+ ["unit"]=0
+ }
+ },
+ [15336]={
+ ["next_chapter"]=15337,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25462,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8403,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=23143,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2337,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=23143,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=2302,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1533,
+ ["unit"]=0
+ }
+ },
+ [15337]={
+ ["next_chapter"]=15338,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25475,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8407,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=23375,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2361,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=23375,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=2302,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1533,
+ ["unit"]=0
+ }
+ },
+ [15338]={
+ ["next_chapter"]=15339,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25488,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8411,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=23608,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2384,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=23608,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=2302,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1533,
+ ["unit"]=0
+ }
+ },
+ [15339]={
+ ["next_chapter"]=15340,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25502,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8416,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=23844,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2408,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=23844,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=2302,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1533,
+ ["unit"]=0
+ }
+ },
+ [15340]={
+ ["next_chapter"]=15341,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=25515,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8420,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=24083,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2432,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=24083,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=2543,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1534,
+ ["unit"]=0
+ }
+ },
+ [15341]={
+ ["next_chapter"]=15342,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25528,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8424,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=24324,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2457,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=24324,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=2543,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1534,
+ ["unit"]=0
+ }
+ },
+ [15342]={
+ ["next_chapter"]=15343,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25541,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8428,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=24567,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2481,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=24567,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=2543,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1534,
+ ["unit"]=0
+ }
+ },
+ [15343]={
+ ["next_chapter"]=15344,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25554,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8433,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=24813,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2506,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=24813,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=2543,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1534,
+ ["unit"]=0
+ }
+ },
+ [15344]={
+ ["next_chapter"]=15345,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25567,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8437,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=25061,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2531,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=25061,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=2543,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1534,
+ ["unit"]=0
+ }
+ },
+ [15345]={
+ ["next_chapter"]=15346,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25580,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8441,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=25311,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2556,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=25311,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=2543,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1534,
+ ["unit"]=0
+ }
+ },
+ [15346]={
+ ["next_chapter"]=15347,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25593,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8446,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=25564,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2582,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=25564,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=2543,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1534,
+ ["unit"]=0
+ }
+ },
+ [15347]={
+ ["next_chapter"]=15348,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25606,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8450,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=25820,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2608,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=25820,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=2543,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1534,
+ ["unit"]=0
+ }
+ },
+ [15348]={
+ ["next_chapter"]=15349,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25620,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8454,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=26078,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2634,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=26078,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=2543,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1534,
+ ["unit"]=0
+ }
+ },
+ [15349]={
+ ["next_chapter"]=15350,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25633,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8459,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=26339,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2660,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=26339,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=2543,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1534,
+ ["unit"]=0
+ }
+ },
+ [15350]={
+ ["next_chapter"]=15351,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=25646,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8463,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=26602,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2687,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=26602,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=2809,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1535,
+ ["unit"]=0
+ }
+ },
+ [15351]={
+ ["next_chapter"]=15352,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25659,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8467,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=26868,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2714,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=26868,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=2809,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1535,
+ ["unit"]=0
+ }
+ },
+ [15352]={
+ ["next_chapter"]=15353,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25672,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8472,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=27137,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2741,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=27137,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=2809,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1535,
+ ["unit"]=0
+ }
+ },
+ [15353]={
+ ["next_chapter"]=15354,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25685,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8476,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=27409,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2768,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=27409,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=2809,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1535,
+ ["unit"]=0
+ }
+ },
+ [15354]={
+ ["next_chapter"]=15355,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25698,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8480,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=27683,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2796,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=27683,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=2809,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1535,
+ ["unit"]=0
+ }
+ },
+ [15355]={
+ ["next_chapter"]=15356,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25712,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8485,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=27959,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2824,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=27959,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=2809,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1535,
+ ["unit"]=0
+ }
+ },
+ [15356]={
+ ["next_chapter"]=15357,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25725,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8489,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=28239,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2852,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=28239,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=2809,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1535,
+ ["unit"]=0
+ }
+ },
+ [15357]={
+ ["next_chapter"]=15358,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25738,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8494,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=28521,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2881,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=28521,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=2809,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1535,
+ ["unit"]=0
+ }
+ },
+ [15358]={
+ ["next_chapter"]=15359,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25751,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8498,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=28807,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2909,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=28807,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=2809,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1535,
+ ["unit"]=0
+ }
+ },
+ [15359]={
+ ["next_chapter"]=15360,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25764,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8502,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=29095,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2939,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=29095,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=2809,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1535,
+ ["unit"]=0
+ }
+ },
+ [15360]={
+ ["next_chapter"]=15361,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=25777,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8507,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=29386,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2968,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=29386,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=3103,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1536,
+ ["unit"]=0
+ }
+ },
+ [15361]={
+ ["next_chapter"]=15362,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25791,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8511,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=29680,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=2998,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=29680,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=3103,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1536,
+ ["unit"]=0
+ }
+ },
+ [15362]={
+ ["next_chapter"]=15363,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25804,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8515,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=29976,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3028,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=29976,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=3103,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1536,
+ ["unit"]=0
+ }
+ },
+ [15363]={
+ ["next_chapter"]=15364,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25817,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8520,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=30276,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3058,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=30276,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=3103,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1536,
+ ["unit"]=0
+ }
+ },
+ [15364]={
+ ["next_chapter"]=15365,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25830,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8524,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=30579,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3088,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=30579,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=3103,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1536,
+ ["unit"]=0
+ }
+ },
+ [15365]={
+ ["next_chapter"]=15366,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25843,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8528,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=30885,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3119,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=30885,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=3103,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1536,
+ ["unit"]=0
+ }
+ },
+ [15366]={
+ ["next_chapter"]=15367,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25857,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8533,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=31193,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3151,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=31193,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=3103,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1536,
+ ["unit"]=0
+ }
+ },
+ [15367]={
+ ["next_chapter"]=15368,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25870,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8537,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=31505,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3182,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=31505,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=3103,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1536,
+ ["unit"]=0
+ }
+ },
+ [15368]={
+ ["next_chapter"]=15369,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25883,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8541,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=31820,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3214,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=31820,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=3103,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1536,
+ ["unit"]=0
+ }
+ },
+ [15369]={
+ ["next_chapter"]=15370,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25896,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8546,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=32139,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3246,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=32139,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=3103,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1536,
+ ["unit"]=0
+ }
+ },
+ [15370]={
+ ["next_chapter"]=15371,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=25910,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8550,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=32460,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3278,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=32460,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=3427,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1537,
+ ["unit"]=0
+ }
+ },
+ [15371]={
+ ["next_chapter"]=15372,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25923,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8555,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=32785,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3311,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=32785,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=3427,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1537,
+ ["unit"]=0
+ }
+ },
+ [15372]={
+ ["next_chapter"]=15373,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25936,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8559,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=33113,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3344,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=33113,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=3427,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1537,
+ ["unit"]=0
+ }
+ },
+ [15373]={
+ ["next_chapter"]=15374,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25949,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8563,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=33444,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3378,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=33444,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=3427,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1537,
+ ["unit"]=0
+ }
+ },
+ [15374]={
+ ["next_chapter"]=15375,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25962,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8568,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=33778,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3412,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=33778,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=3427,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1537,
+ ["unit"]=0
+ }
+ },
+ [15375]={
+ ["next_chapter"]=15376,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25976,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8572,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=34116,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3446,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=34116,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=3427,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1537,
+ ["unit"]=0
+ }
+ },
+ [15376]={
+ ["next_chapter"]=15377,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=25989,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8576,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=34457,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3480,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=34457,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=3427,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1537,
+ ["unit"]=0
+ }
+ },
+ [15377]={
+ ["next_chapter"]=15378,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26002,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8581,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=34802,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3515,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=34802,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=3427,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1537,
+ ["unit"]=0
+ }
+ },
+ [15378]={
+ ["next_chapter"]=15379,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26016,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8585,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=35150,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3550,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=35150,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=3427,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1537,
+ ["unit"]=0
+ }
+ },
+ [15379]={
+ ["next_chapter"]=15380,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26029,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8590,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=35501,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3586,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=35501,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=3427,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1537,
+ ["unit"]=0
+ }
+ },
+ [15380]={
+ ["next_chapter"]=15381,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=26042,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8594,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=35856,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3621,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=35856,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=3786,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1538,
+ ["unit"]=0
+ }
+ },
+ [15381]={
+ ["next_chapter"]=15382,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26055,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8598,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=36215,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3658,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=36215,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=3786,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1538,
+ ["unit"]=0
+ }
+ },
+ [15382]={
+ ["next_chapter"]=15383,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26069,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8603,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=36577,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3694,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=36577,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=3786,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1538,
+ ["unit"]=0
+ }
+ },
+ [15383]={
+ ["next_chapter"]=15384,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26082,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8607,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=36943,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3731,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=36943,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=3786,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1538,
+ ["unit"]=0
+ }
+ },
+ [15384]={
+ ["next_chapter"]=15385,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26095,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8611,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=37312,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3769,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=37312,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=3786,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1538,
+ ["unit"]=0
+ }
+ },
+ [15385]={
+ ["next_chapter"]=15386,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26109,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8616,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=37685,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3806,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=37685,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=3786,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1538,
+ ["unit"]=0
+ }
+ },
+ [15386]={
+ ["next_chapter"]=15387,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26122,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8620,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=38062,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3844,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=38062,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=3786,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1538,
+ ["unit"]=0
+ }
+ },
+ [15387]={
+ ["next_chapter"]=15388,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26135,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8625,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=38443,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3883,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=38443,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=3786,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1538,
+ ["unit"]=0
+ }
+ },
+ [15388]={
+ ["next_chapter"]=15389,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26148,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8629,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=38827,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3922,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=38827,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=3786,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1538,
+ ["unit"]=0
+ }
+ },
+ [15389]={
+ ["next_chapter"]=15390,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26162,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8633,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=39215,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=3961,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=39215,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=3786,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1538,
+ ["unit"]=0
+ }
+ },
+ [15390]={
+ ["next_chapter"]=15391,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=26175,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8638,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=39607,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4000,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=39607,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=4182,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1539,
+ ["unit"]=0
+ }
+ },
+ [15391]={
+ ["next_chapter"]=15392,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26188,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8642,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=40004,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4040,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=40004,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=4182,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1539,
+ ["unit"]=0
+ }
+ },
+ [15392]={
+ ["next_chapter"]=15393,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26202,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8647,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=40404,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4081,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=40404,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=4182,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1539,
+ ["unit"]=0
+ }
+ },
+ [15393]={
+ ["next_chapter"]=15394,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26215,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8651,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=40808,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4122,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=40808,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=4182,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1539,
+ ["unit"]=0
+ }
+ },
+ [15394]={
+ ["next_chapter"]=15395,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26228,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8655,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=41216,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4163,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=41216,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=4182,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1539,
+ ["unit"]=0
+ }
+ },
+ [15395]={
+ ["next_chapter"]=15396,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26242,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8660,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=41628,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4204,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=41628,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=4182,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1539,
+ ["unit"]=0
+ }
+ },
+ [15396]={
+ ["next_chapter"]=15397,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26255,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8664,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=42044,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4246,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=42044,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=4182,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1539,
+ ["unit"]=0
+ }
+ },
+ [15397]={
+ ["next_chapter"]=15398,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26268,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8669,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=42465,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4289,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=42465,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=4182,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1539,
+ ["unit"]=0
+ }
+ },
+ [15398]={
+ ["next_chapter"]=15399,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26282,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8673,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=42889,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4332,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=42889,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=4182,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1539,
+ ["unit"]=0
+ }
+ },
+ [15399]={
+ ["next_chapter"]=15400,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26295,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8677,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=43318,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4375,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=43318,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=4182,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1539,
+ ["unit"]=0
+ }
+ },
+ [15400]={
+ ["next_chapter"]=15401,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_01",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=26309,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8682,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=43751,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4419,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=43751,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=4619,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1540,
+ ["unit"]=0
+ }
+ },
+ [15401]={
+ ["next_chapter"]=15402,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26322,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8686,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=44189,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4463,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=44189,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=4619,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1540,
+ ["unit"]=0
+ }
+ },
+ [15402]={
+ ["next_chapter"]=15403,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26335,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8691,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=44631,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4508,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=44631,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=4619,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1540,
+ ["unit"]=0
+ }
+ },
+ [15403]={
+ ["next_chapter"]=15404,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26349,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8695,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=45077,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4553,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=45077,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=4619,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1540,
+ ["unit"]=0
+ }
+ },
+ [15404]={
+ ["next_chapter"]=15405,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26362,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8699,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=45528,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4598,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=45528,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=4619,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1540,
+ ["unit"]=0
+ }
+ },
+ [15405]={
+ ["next_chapter"]=15406,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26375,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8704,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=45983,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4644,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=45983,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=4619,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1540,
+ ["unit"]=0
+ }
+ },
+ [15406]={
+ ["next_chapter"]=15407,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26389,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8708,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=46443,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4691,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=46443,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=4619,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1540,
+ ["unit"]=0
+ }
+ },
+ [15407]={
+ ["next_chapter"]=15408,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26402,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8713,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=46907,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4738,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=46907,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=4619,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1540,
+ ["unit"]=0
+ }
+ },
+ [15408]={
+ ["next_chapter"]=15409,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26416,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8717,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=47376,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4785,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=47376,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=4619,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1540,
+ ["unit"]=0
+ }
+ },
+ [15409]={
+ ["next_chapter"]=15410,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26429,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8722,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=47850,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4833,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=47850,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=4619,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1540,
+ ["unit"]=0
+ }
+ },
+ [15410]={
+ ["next_chapter"]=15411,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=207,
+ ["atk_coefficient"]={
+ ["value"]=26442,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8726,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=48329,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4881,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=48329,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=5103,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1541,
+ ["unit"]=0
+ }
+ },
+ [15411]={
+ ["next_chapter"]=15412,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26456,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8730,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=48812,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4930,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=48812,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=5103,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1541,
+ ["unit"]=0
+ }
+ },
+ [15412]={
+ ["next_chapter"]=15413,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26469,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8735,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=49300,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=4979,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=49300,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=5103,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1541,
+ ["unit"]=0
+ }
+ },
+ [15413]={
+ ["next_chapter"]=15414,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26483,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8739,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=49793,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5029,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=49793,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=5103,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1541,
+ ["unit"]=0
+ }
+ },
+ [15414]={
+ ["next_chapter"]=15415,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26496,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8744,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=50291,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5079,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=50291,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=5103,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1541,
+ ["unit"]=0
+ }
+ },
+ [15415]={
+ ["next_chapter"]=15416,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26510,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8748,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=50794,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5130,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=50794,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=5103,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1541,
+ ["unit"]=0
+ }
+ },
+ [15416]={
+ ["next_chapter"]=15417,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26523,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8753,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=51302,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5181,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=51302,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=5103,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1541,
+ ["unit"]=0
+ }
+ },
+ [15417]={
+ ["next_chapter"]=15418,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26536,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8757,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=51815,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5233,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=51815,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=5103,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1541,
+ ["unit"]=0
+ }
+ },
+ [15418]={
+ ["next_chapter"]=15419,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26550,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8761,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=52333,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5286,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=52333,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=5103,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1541,
+ ["unit"]=0
+ }
+ },
+ [15419]={
+ ["next_chapter"]=15420,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26563,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8766,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=52856,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5338,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=52856,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=5103,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1541,
+ ["unit"]=0
+ }
+ },
+ [15420]={
+ ["next_chapter"]=15421,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=26577,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8770,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=53385,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5392,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=53385,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=5636,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1542,
+ ["unit"]=0
+ }
+ },
+ [15421]={
+ ["next_chapter"]=15422,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26590,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8775,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=53919,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5446,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=53919,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=5636,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1542,
+ ["unit"]=0
+ }
+ },
+ [15422]={
+ ["next_chapter"]=15423,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26604,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8779,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=54458,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5500,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=54458,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=5636,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1542,
+ ["unit"]=0
+ }
+ },
+ [15423]={
+ ["next_chapter"]=15424,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26617,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8784,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=55002,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5555,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=55002,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=5636,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1542,
+ ["unit"]=0
+ }
+ },
+ [15424]={
+ ["next_chapter"]=15425,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26631,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8788,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=55553,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5611,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=55553,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=5636,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1542,
+ ["unit"]=0
+ }
+ },
+ [15425]={
+ ["next_chapter"]=15426,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26644,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8793,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=56108,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5667,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=56108,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=5636,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1542,
+ ["unit"]=0
+ }
+ },
+ [15426]={
+ ["next_chapter"]=15427,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26658,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8797,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=56669,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5724,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=56669,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=5636,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1542,
+ ["unit"]=0
+ }
+ },
+ [15427]={
+ ["next_chapter"]=15428,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26671,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8801,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=57236,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5781,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=57236,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=5636,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1542,
+ ["unit"]=0
+ }
+ },
+ [15428]={
+ ["next_chapter"]=15429,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26685,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8806,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=57808,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5839,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=57808,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=5636,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1542,
+ ["unit"]=0
+ }
+ },
+ [15429]={
+ ["next_chapter"]=15430,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26698,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8810,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=58386,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5897,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=58386,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=5636,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1542,
+ ["unit"]=0
+ }
+ },
+ [15430]={
+ ["next_chapter"]=15431,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=26712,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8815,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=58970,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=5956,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=58970,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=6226,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1543,
+ ["unit"]=0
+ }
+ },
+ [15431]={
+ ["next_chapter"]=15432,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26725,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8819,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=59560,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6016,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=59560,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=6226,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1543,
+ ["unit"]=0
+ }
+ },
+ [15432]={
+ ["next_chapter"]=15433,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26739,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8824,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=60155,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6076,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=60155,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=6226,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1543,
+ ["unit"]=0
+ }
+ },
+ [15433]={
+ ["next_chapter"]=15434,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26752,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8828,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=60757,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6136,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=60757,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=6226,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1543,
+ ["unit"]=0
+ }
+ },
+ [15434]={
+ ["next_chapter"]=15435,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26766,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8833,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=61365,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6198,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=61365,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=6226,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1543,
+ ["unit"]=0
+ }
+ },
+ [15435]={
+ ["next_chapter"]=15436,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26779,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8837,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=61978,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6260,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=61978,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=6226,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1543,
+ ["unit"]=0
+ }
+ },
+ [15436]={
+ ["next_chapter"]=15437,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26793,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8842,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=62598,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6322,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=62598,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=6226,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1543,
+ ["unit"]=0
+ }
+ },
+ [15437]={
+ ["next_chapter"]=15438,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26806,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8846,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=63224,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6386,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=63224,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=6226,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1543,
+ ["unit"]=0
+ }
+ },
+ [15438]={
+ ["next_chapter"]=15439,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26820,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8851,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=63856,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6449,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=63856,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=6226,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1543,
+ ["unit"]=0
+ }
+ },
+ [15439]={
+ ["next_chapter"]=15440,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26833,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8855,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=64495,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6514,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=64495,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=6226,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1543,
+ ["unit"]=0
+ }
+ },
+ [15440]={
+ ["next_chapter"]=15441,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=206,
+ ["atk_coefficient"]={
+ ["value"]=26847,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8859,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=65140,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6579,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=65140,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=6878,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1544,
+ ["unit"]=0
+ }
+ },
+ [15441]={
+ ["next_chapter"]=15442,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26860,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8864,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=65791,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6645,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=65791,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=6878,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1544,
+ ["unit"]=0
+ }
+ },
+ [15442]={
+ ["next_chapter"]=15443,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26874,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8868,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=66449,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6711,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=66449,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=6878,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1544,
+ ["unit"]=0
+ }
+ },
+ [15443]={
+ ["next_chapter"]=15444,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26887,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8873,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=67113,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6778,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=67113,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=6878,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1544,
+ ["unit"]=0
+ }
+ },
+ [15444]={
+ ["next_chapter"]=15445,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26901,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8877,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=67785,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6846,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=67785,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=6878,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1544,
+ ["unit"]=0
+ }
+ },
+ [15445]={
+ ["next_chapter"]=15446,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26915,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8882,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=68462,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6915,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=68462,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=6878,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1544,
+ ["unit"]=0
+ }
+ },
+ [15446]={
+ ["next_chapter"]=15447,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26928,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8886,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=69147,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=6984,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=69147,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=6878,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1544,
+ ["unit"]=0
+ }
+ },
+ [15447]={
+ ["next_chapter"]=15448,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26942,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8891,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=69839,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7054,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=69839,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=6878,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1544,
+ ["unit"]=0
+ }
+ },
+ [15448]={
+ ["next_chapter"]=15449,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26955,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8895,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=70537,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7124,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=70537,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=6878,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1544,
+ ["unit"]=0
+ }
+ },
+ [15449]={
+ ["next_chapter"]=15450,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26969,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8900,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=71242,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7195,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=71242,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=6878,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1544,
+ ["unit"]=0
+ }
+ },
+ [15450]={
+ ["next_chapter"]=15451,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=26983,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8904,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=71955,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7267,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=71955,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=7597,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1545,
+ ["unit"]=0
+ }
+ },
+ [15451]={
+ ["next_chapter"]=15452,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=26996,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8909,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=72674,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7340,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=72674,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=7597,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1545,
+ ["unit"]=0
+ }
+ },
+ [15452]={
+ ["next_chapter"]=15453,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27010,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8913,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=73401,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7414,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=73401,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=7597,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1545,
+ ["unit"]=0
+ }
+ },
+ [15453]={
+ ["next_chapter"]=15454,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27023,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8918,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=74135,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7488,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=74135,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=7597,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1545,
+ ["unit"]=0
+ }
+ },
+ [15454]={
+ ["next_chapter"]=15455,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27037,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8922,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=74876,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7563,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=74876,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=7597,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1545,
+ ["unit"]=0
+ }
+ },
+ [15455]={
+ ["next_chapter"]=15456,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27051,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8927,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=75625,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7638,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=75625,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=7597,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1545,
+ ["unit"]=0
+ }
+ },
+ [15456]={
+ ["next_chapter"]=15457,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27064,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8931,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=76381,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7715,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=76381,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=7597,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1545,
+ ["unit"]=0
+ }
+ },
+ [15457]={
+ ["next_chapter"]=15458,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27078,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8936,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=77145,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7792,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=77145,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=7597,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1545,
+ ["unit"]=0
+ }
+ },
+ [15458]={
+ ["next_chapter"]=15459,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27091,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8940,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=77917,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7870,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=77917,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=7597,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1545,
+ ["unit"]=0
+ }
+ },
+ [15459]={
+ ["next_chapter"]=15460,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27105,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8945,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=78696,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=7948,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=78696,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=7597,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1545,
+ ["unit"]=0
+ }
+ },
+ [15460]={
+ ["next_chapter"]=15461,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=27119,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8949,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=79483,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8028,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=79483,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=8392,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1546,
+ ["unit"]=0
+ }
+ },
+ [15461]={
+ ["next_chapter"]=15462,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27132,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8954,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=80278,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8108,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=80278,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=8392,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1546,
+ ["unit"]=0
+ }
+ },
+ [15462]={
+ ["next_chapter"]=15463,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27146,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8958,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=81080,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8189,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=81080,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=8392,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1546,
+ ["unit"]=0
+ }
+ },
+ [15463]={
+ ["next_chapter"]=15464,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27160,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8963,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=81891,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8271,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=81891,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=8392,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1546,
+ ["unit"]=0
+ }
+ },
+ [15464]={
+ ["next_chapter"]=15465,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27173,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8967,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=82710,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8354,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=82710,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=8392,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1546,
+ ["unit"]=0
+ }
+ },
+ [15465]={
+ ["next_chapter"]=15466,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27187,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8972,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=83537,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8437,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=83537,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=8392,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1546,
+ ["unit"]=0
+ }
+ },
+ [15466]={
+ ["next_chapter"]=15467,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27201,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8976,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=84373,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8522,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=84373,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=8392,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1546,
+ ["unit"]=0
+ }
+ },
+ [15467]={
+ ["next_chapter"]=15468,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27214,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8981,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=85216,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8607,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=85216,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=8392,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1546,
+ ["unit"]=0
+ }
+ },
+ [15468]={
+ ["next_chapter"]=15469,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27228,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8985,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=86068,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8693,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=86068,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=8392,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1546,
+ ["unit"]=0
+ }
+ },
+ [15469]={
+ ["next_chapter"]=15470,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27242,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8990,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=86929,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8780,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=86929,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=8392,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1546,
+ ["unit"]=0
+ }
+ },
+ [15470]={
+ ["next_chapter"]=15471,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=27255,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8994,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=87798,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8868,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=87798,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=9270,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1547,
+ ["unit"]=0
+ }
+ },
+ [15471]={
+ ["next_chapter"]=15472,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27269,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=8999,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=88676,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=8956,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=88676,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=9270,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1547,
+ ["unit"]=0
+ }
+ },
+ [15472]={
+ ["next_chapter"]=15473,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27283,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9003,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=89563,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9046,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=89563,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=9270,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1547,
+ ["unit"]=0
+ }
+ },
+ [15473]={
+ ["next_chapter"]=15474,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27296,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9008,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=90459,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9136,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=90459,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=9270,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1547,
+ ["unit"]=0
+ }
+ },
+ [15474]={
+ ["next_chapter"]=15475,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27310,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9012,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=91363,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9228,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=91363,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=9270,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1547,
+ ["unit"]=0
+ }
+ },
+ [15475]={
+ ["next_chapter"]=15476,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27324,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9017,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=92277,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9320,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=92277,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=9270,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1547,
+ ["unit"]=0
+ }
+ },
+ [15476]={
+ ["next_chapter"]=15477,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27338,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9021,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=93200,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9413,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=93200,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=9270,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1547,
+ ["unit"]=0
+ }
+ },
+ [15477]={
+ ["next_chapter"]=15478,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27351,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9026,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=94132,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9507,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=94132,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=9270,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1547,
+ ["unit"]=0
+ }
+ },
+ [15478]={
+ ["next_chapter"]=15479,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27365,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9030,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=95073,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9602,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=95073,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=9270,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1547,
+ ["unit"]=0
+ }
+ },
+ [15479]={
+ ["next_chapter"]=15480,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27379,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9035,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=96024,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9698,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=96024,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=9270,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1547,
+ ["unit"]=0
+ }
+ },
+ [15480]={
+ ["next_chapter"]=15481,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=27392,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9040,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=96984,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9795,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=96984,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=10240,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1548,
+ ["unit"]=0
+ }
+ },
+ [15481]={
+ ["next_chapter"]=15482,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27406,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9044,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=97954,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9893,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=97954,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=10240,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1548,
+ ["unit"]=0
+ }
+ },
+ [15482]={
+ ["next_chapter"]=15483,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27420,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9049,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=98933,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=9992,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=98933,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=10240,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1548,
+ ["unit"]=0
+ }
+ },
+ [15483]={
+ ["next_chapter"]=15484,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27434,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9053,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=99923,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10092,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=99923,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=10240,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1548,
+ ["unit"]=0
+ }
+ },
+ [15484]={
+ ["next_chapter"]=15485,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27447,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9058,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=100922,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10193,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=100922,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=10240,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1548,
+ ["unit"]=0
+ }
+ },
+ [15485]={
+ ["next_chapter"]=15486,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27461,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9062,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=101931,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10295,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=101931,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=10240,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1548,
+ ["unit"]=0
+ }
+ },
+ [15486]={
+ ["next_chapter"]=15487,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27475,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9067,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=102951,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10398,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=102951,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=10240,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1548,
+ ["unit"]=0
+ }
+ },
+ [15487]={
+ ["next_chapter"]=15488,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27489,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9071,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=103980,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10502,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=103980,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=10240,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1548,
+ ["unit"]=0
+ }
+ },
+ [15488]={
+ ["next_chapter"]=15489,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27502,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9076,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=105020,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10607,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=105020,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=10240,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1548,
+ ["unit"]=0
+ }
+ },
+ [15489]={
+ ["next_chapter"]=15490,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27516,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9080,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=106070,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10713,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=106070,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=10240,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1548,
+ ["unit"]=0
+ }
+ },
+ [15490]={
+ ["next_chapter"]=15491,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=27530,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9085,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=107131,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10820,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=107131,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=11311,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1549,
+ ["unit"]=0
+ }
+ },
+ [15491]={
+ ["next_chapter"]=15492,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27544,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9089,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=108202,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=10928,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=108202,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=11311,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1549,
+ ["unit"]=0
+ }
+ },
+ [15492]={
+ ["next_chapter"]=15493,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27558,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9094,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=109284,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11038,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=109284,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=11311,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1549,
+ ["unit"]=0
+ }
+ },
+ [15493]={
+ ["next_chapter"]=15494,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27571,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9099,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=110377,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11148,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=110377,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=11311,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1549,
+ ["unit"]=0
+ }
+ },
+ [15494]={
+ ["next_chapter"]=15495,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27585,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9103,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=111481,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11260,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=111481,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=11311,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1549,
+ ["unit"]=0
+ }
+ },
+ [15495]={
+ ["next_chapter"]=15496,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27599,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9108,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=112596,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11372,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=112596,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=11311,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1549,
+ ["unit"]=0
+ }
+ },
+ [15496]={
+ ["next_chapter"]=15497,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27613,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9112,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=113721,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11486,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=113721,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=11311,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1549,
+ ["unit"]=0
+ }
+ },
+ [15497]={
+ ["next_chapter"]=15498,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27627,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9117,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=114859,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11601,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=114859,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=11311,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1549,
+ ["unit"]=0
+ }
+ },
+ [15498]={
+ ["next_chapter"]=15499,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27640,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9121,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=116007,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11717,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=116007,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=11311,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1549,
+ ["unit"]=0
+ }
+ },
+ [15499]={
+ ["next_chapter"]=15500,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27654,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9126,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=117167,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11834,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=117167,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=11311,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1549,
+ ["unit"]=0
+ }
+ },
+ [15500]={
+ ["next_chapter"]=15501,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_02",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=27668,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9130,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=118339,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=11952,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=118339,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=12494,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1550,
+ ["unit"]=0
+ }
+ },
+ [15501]={
+ ["next_chapter"]=15502,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27682,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9135,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=119522,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12072,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=119522,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=12494,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1550,
+ ["unit"]=0
+ }
+ },
+ [15502]={
+ ["next_chapter"]=15503,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27696,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9140,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=120718,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12192,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=120718,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=12494,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1550,
+ ["unit"]=0
+ }
+ },
+ [15503]={
+ ["next_chapter"]=15504,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27709,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9144,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=121925,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12314,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=121925,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=12494,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1550,
+ ["unit"]=0
+ }
+ },
+ [15504]={
+ ["next_chapter"]=15505,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27723,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9149,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=123144,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12438,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=123144,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=12494,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1550,
+ ["unit"]=0
+ }
+ },
+ [15505]={
+ ["next_chapter"]=15506,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27737,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9153,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=124376,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12562,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=124376,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=12494,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1550,
+ ["unit"]=0
+ }
+ },
+ [15506]={
+ ["next_chapter"]=15507,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27751,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9158,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=125619,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12688,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=125619,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=12494,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1550,
+ ["unit"]=0
+ }
+ },
+ [15507]={
+ ["next_chapter"]=15508,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27765,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9162,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=126875,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12814,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=126875,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=12494,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1550,
+ ["unit"]=0
+ }
+ },
+ [15508]={
+ ["next_chapter"]=15509,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27779,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9167,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=128144,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=12943,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=128144,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=12494,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1550,
+ ["unit"]=0
+ }
+ },
+ [15509]={
+ ["next_chapter"]=15510,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27793,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9172,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=129426,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13072,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=129426,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=12494,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1550,
+ ["unit"]=0
+ }
+ },
+ [15510]={
+ ["next_chapter"]=15511,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=27806,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9176,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=130720,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13203,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=130720,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=13802,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1551,
+ ["unit"]=0
+ }
+ },
+ [15511]={
+ ["next_chapter"]=15512,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27820,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9181,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=132027,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13335,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=132027,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=13802,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1551,
+ ["unit"]=0
+ }
+ },
+ [15512]={
+ ["next_chapter"]=15513,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27834,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9185,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=133347,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13468,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=133347,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=13802,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1551,
+ ["unit"]=0
+ }
+ },
+ [15513]={
+ ["next_chapter"]=15514,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27848,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9190,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=134681,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13603,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=134681,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=13802,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1551,
+ ["unit"]=0
+ }
+ },
+ [15514]={
+ ["next_chapter"]=15515,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27862,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9194,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=136028,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13739,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=136028,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=13802,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1551,
+ ["unit"]=0
+ }
+ },
+ [15515]={
+ ["next_chapter"]=15516,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27876,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9199,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=137388,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=13876,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=137388,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=13802,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1551,
+ ["unit"]=0
+ }
+ },
+ [15516]={
+ ["next_chapter"]=15517,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27890,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9204,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=138762,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14015,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=138762,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=13802,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1551,
+ ["unit"]=0
+ }
+ },
+ [15517]={
+ ["next_chapter"]=15518,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27904,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9208,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=140149,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14155,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=140149,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=13802,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1551,
+ ["unit"]=0
+ }
+ },
+ [15518]={
+ ["next_chapter"]=15519,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27918,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9213,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=141551,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14297,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=141551,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=13802,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1551,
+ ["unit"]=0
+ }
+ },
+ [15519]={
+ ["next_chapter"]=15520,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27931,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9217,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=142966,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14440,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=142966,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=13802,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1551,
+ ["unit"]=0
+ }
+ },
+ [15520]={
+ ["next_chapter"]=15521,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=27945,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9222,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=144396,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14584,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=144396,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=15246,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1552,
+ ["unit"]=0
+ }
+ },
+ [15521]={
+ ["next_chapter"]=15522,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27959,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9227,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=145840,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14730,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=145840,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=15246,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1552,
+ ["unit"]=0
+ }
+ },
+ [15522]={
+ ["next_chapter"]=15523,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27973,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9231,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=147298,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=14877,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=147298,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=15246,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1552,
+ ["unit"]=0
+ }
+ },
+ [15523]={
+ ["next_chapter"]=15524,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=27987,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9236,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=148771,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15026,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=148771,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=15246,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1552,
+ ["unit"]=0
+ }
+ },
+ [15524]={
+ ["next_chapter"]=15525,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28001,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9240,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=150259,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15176,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=150259,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=15246,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1552,
+ ["unit"]=0
+ }
+ },
+ [15525]={
+ ["next_chapter"]=15526,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28015,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9245,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=151762,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15328,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=151762,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=15246,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1552,
+ ["unit"]=0
+ }
+ },
+ [15526]={
+ ["next_chapter"]=15527,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28029,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9250,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=153279,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15481,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=153279,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=15246,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1552,
+ ["unit"]=0
+ }
+ },
+ [15527]={
+ ["next_chapter"]=15528,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28043,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9254,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=154812,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15636,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=154812,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=15246,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1552,
+ ["unit"]=0
+ }
+ },
+ [15528]={
+ ["next_chapter"]=15529,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28057,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9259,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=156360,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15792,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=156360,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=15246,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1552,
+ ["unit"]=0
+ }
+ },
+ [15529]={
+ ["next_chapter"]=15530,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28071,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9263,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=157924,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=15950,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=157924,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=15246,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1552,
+ ["unit"]=0
+ }
+ },
+ [15530]={
+ ["next_chapter"]=15531,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=208,
+ ["atk_coefficient"]={
+ ["value"]=28085,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9268,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=159503,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16110,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=159503,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=16841,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1553,
+ ["unit"]=0
+ }
+ },
+ [15531]={
+ ["next_chapter"]=15532,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28099,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9273,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=161098,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16271,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=161098,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=16841,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1553,
+ ["unit"]=0
+ }
+ },
+ [15532]={
+ ["next_chapter"]=15533,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28113,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9277,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=162709,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16434,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=162709,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=16841,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1553,
+ ["unit"]=0
+ }
+ },
+ [15533]={
+ ["next_chapter"]=15534,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28127,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9282,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=164336,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16598,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=164336,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=16841,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1553,
+ ["unit"]=0
+ }
+ },
+ [15534]={
+ ["next_chapter"]=15535,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28141,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9286,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=165980,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16764,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=165980,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=16841,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1553,
+ ["unit"]=0
+ }
+ },
+ [15535]={
+ ["next_chapter"]=15536,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28155,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9291,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=167639,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=16932,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=167639,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=16841,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1553,
+ ["unit"]=0
+ }
+ },
+ [15536]={
+ ["next_chapter"]=15537,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28169,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9296,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=169316,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17101,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=169316,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=16841,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1553,
+ ["unit"]=0
+ }
+ },
+ [15537]={
+ ["next_chapter"]=15538,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28183,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9300,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=171009,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17272,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=171009,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=16841,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1553,
+ ["unit"]=0
+ }
+ },
+ [15538]={
+ ["next_chapter"]=15539,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28197,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9305,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=172719,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17445,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=172719,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=16841,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1553,
+ ["unit"]=0
+ }
+ },
+ [15539]={
+ ["next_chapter"]=15540,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28211,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9310,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=174446,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17619,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=174446,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=16841,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1553,
+ ["unit"]=0
+ }
+ },
+ [15540]={
+ ["next_chapter"]=15541,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=28225,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9314,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=176191,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17795,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=176191,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=18603,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1554,
+ ["unit"]=0
+ }
+ },
+ [15541]={
+ ["next_chapter"]=15542,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28239,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9319,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=177953,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=17973,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=177953,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=18603,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1554,
+ ["unit"]=0
+ }
+ },
+ [15542]={
+ ["next_chapter"]=15543,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28253,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9323,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=179732,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18153,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=179732,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=18603,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1554,
+ ["unit"]=0
+ }
+ },
+ [15543]={
+ ["next_chapter"]=15544,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28267,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9328,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=181529,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18334,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=181529,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=18603,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1554,
+ ["unit"]=0
+ }
+ },
+ [15544]={
+ ["next_chapter"]=15545,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28281,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9333,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=183345,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18518,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=183345,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=18603,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1554,
+ ["unit"]=0
+ }
+ },
+ [15545]={
+ ["next_chapter"]=15546,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28295,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9337,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=185178,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18703,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=185178,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=18603,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1554,
+ ["unit"]=0
+ }
+ },
+ [15546]={
+ ["next_chapter"]=15547,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28309,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9342,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=187030,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=18890,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=187030,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=18603,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1554,
+ ["unit"]=0
+ }
+ },
+ [15547]={
+ ["next_chapter"]=15548,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28323,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9347,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=188900,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19079,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=188900,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=18603,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1554,
+ ["unit"]=0
+ }
+ },
+ [15548]={
+ ["next_chapter"]=15549,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28337,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9351,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=190789,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19270,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=190789,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=18603,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1554,
+ ["unit"]=0
+ }
+ },
+ [15549]={
+ ["next_chapter"]=15550,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28351,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9356,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=192697,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19462,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=192697,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=18603,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1554,
+ ["unit"]=0
+ }
+ },
+ [15550]={
+ ["next_chapter"]=15551,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=28365,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9360,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=194624,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19657,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=194624,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=20549,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1555,
+ ["unit"]=0
+ }
+ },
+ [15551]={
+ ["next_chapter"]=15552,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28379,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9365,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=196570,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=19854,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=196570,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=20549,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1555,
+ ["unit"]=0
+ }
+ },
+ [15552]={
+ ["next_chapter"]=15553,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28393,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9370,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=198536,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20052,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=198536,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=20549,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1555,
+ ["unit"]=0
+ }
+ },
+ [15553]={
+ ["next_chapter"]=15554,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28407,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9374,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=200521,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20253,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=200521,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=20549,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1555,
+ ["unit"]=0
+ }
+ },
+ [15554]={
+ ["next_chapter"]=15555,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28421,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9379,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=202527,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20455,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=202527,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=20549,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1555,
+ ["unit"]=0
+ }
+ },
+ [15555]={
+ ["next_chapter"]=15556,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28435,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9384,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=204552,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20660,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=204552,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=20549,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1555,
+ ["unit"]=0
+ }
+ },
+ [15556]={
+ ["next_chapter"]=15557,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28449,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9388,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=206597,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=20866,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=206597,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=20549,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1555,
+ ["unit"]=0
+ }
+ },
+ [15557]={
+ ["next_chapter"]=15558,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28463,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9393,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=208663,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21075,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=208663,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=20549,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1555,
+ ["unit"]=0
+ }
+ },
+ [15558]={
+ ["next_chapter"]=15559,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28478,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9398,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=210750,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21286,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=210750,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=20549,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1555,
+ ["unit"]=0
+ }
+ },
+ [15559]={
+ ["next_chapter"]=15560,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28492,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9402,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=212858,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21499,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=212858,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=20549,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1555,
+ ["unit"]=0
+ }
+ },
+ [15560]={
+ ["next_chapter"]=15561,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=28506,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9407,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=214986,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21714,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=214986,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=22699,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1556,
+ ["unit"]=0
+ }
+ },
+ [15561]={
+ ["next_chapter"]=15562,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28520,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9412,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=217136,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=21931,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=217136,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=22699,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1556,
+ ["unit"]=0
+ }
+ },
+ [15562]={
+ ["next_chapter"]=15563,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28534,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9416,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=219307,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22150,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=219307,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=22699,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1556,
+ ["unit"]=0
+ }
+ },
+ [15563]={
+ ["next_chapter"]=15564,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28548,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9421,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=221500,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22372,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=221500,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=22699,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1556,
+ ["unit"]=0
+ }
+ },
+ [15564]={
+ ["next_chapter"]=15565,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28562,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9426,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=223715,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22595,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=223715,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=22699,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1556,
+ ["unit"]=0
+ }
+ },
+ [15565]={
+ ["next_chapter"]=15566,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28576,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9430,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=225953,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=22821,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=225953,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=22699,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1556,
+ ["unit"]=0
+ }
+ },
+ [15566]={
+ ["next_chapter"]=15567,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28590,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9435,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=228212,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23049,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=228212,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=22699,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1556,
+ ["unit"]=0
+ }
+ },
+ [15567]={
+ ["next_chapter"]=15568,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28605,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9440,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=230494,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23280,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=230494,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=22699,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1556,
+ ["unit"]=0
+ }
+ },
+ [15568]={
+ ["next_chapter"]=15569,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28619,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9444,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=232799,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23513,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=232799,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=22699,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1556,
+ ["unit"]=0
+ }
+ },
+ [15569]={
+ ["next_chapter"]=15570,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28633,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9449,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=235127,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23748,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=235127,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=22699,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1556,
+ ["unit"]=0
+ }
+ },
+ [15570]={
+ ["next_chapter"]=15571,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=28647,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9454,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=237478,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=23985,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=237478,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=25073,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1557,
+ ["unit"]=0
+ }
+ },
+ [15571]={
+ ["next_chapter"]=15572,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28661,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9458,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=239853,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24225,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=239853,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=25073,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1557,
+ ["unit"]=0
+ }
+ },
+ [15572]={
+ ["next_chapter"]=15573,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28675,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9463,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=242252,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24467,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=242252,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=25073,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1557,
+ ["unit"]=0
+ }
+ },
+ [15573]={
+ ["next_chapter"]=15574,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28689,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9468,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=244674,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24712,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=244674,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=25073,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1557,
+ ["unit"]=0
+ }
+ },
+ [15574]={
+ ["next_chapter"]=15575,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28704,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9472,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=247121,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=24959,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=247121,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=25073,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1557,
+ ["unit"]=0
+ }
+ },
+ [15575]={
+ ["next_chapter"]=15576,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28718,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9477,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=249592,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25209,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=249592,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=25073,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1557,
+ ["unit"]=0
+ }
+ },
+ [15576]={
+ ["next_chapter"]=15577,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28732,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9482,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=252088,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25461,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=252088,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=25073,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1557,
+ ["unit"]=0
+ }
+ },
+ [15577]={
+ ["next_chapter"]=15578,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28746,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9486,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=254609,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25716,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=254609,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=25073,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1557,
+ ["unit"]=0
+ }
+ },
+ [15578]={
+ ["next_chapter"]=15579,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28760,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9491,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=257155,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=25973,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=257155,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=25073,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1557,
+ ["unit"]=0
+ }
+ },
+ [15579]={
+ ["next_chapter"]=15580,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28775,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9496,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=259727,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26232,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=259727,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=25073,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1557,
+ ["unit"]=0
+ }
+ },
+ [15580]={
+ ["next_chapter"]=15581,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=211,
+ ["atk_coefficient"]={
+ ["value"]=28789,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9500,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=262324,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26495,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=262324,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=27697,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1558,
+ ["unit"]=0
+ }
+ },
+ [15581]={
+ ["next_chapter"]=15582,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28803,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9505,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=264947,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=26760,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=264947,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=27697,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1558,
+ ["unit"]=0
+ }
+ },
+ [15582]={
+ ["next_chapter"]=15583,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28817,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9510,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=267597,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27027,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=267597,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=27697,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1558,
+ ["unit"]=0
+ }
+ },
+ [15583]={
+ ["next_chapter"]=15584,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28831,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9514,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=270273,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27298,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=270273,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=27697,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1558,
+ ["unit"]=0
+ }
+ },
+ [15584]={
+ ["next_chapter"]=15585,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28846,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9519,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=272975,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27571,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=272975,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=27697,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1558,
+ ["unit"]=0
+ }
+ },
+ [15585]={
+ ["next_chapter"]=15586,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28860,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9524,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=275705,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=27846,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=275705,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=27697,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1558,
+ ["unit"]=0
+ }
+ },
+ [15586]={
+ ["next_chapter"]=15587,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28874,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9528,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=278462,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28125,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=278462,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=27697,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1558,
+ ["unit"]=0
+ }
+ },
+ [15587]={
+ ["next_chapter"]=15588,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28888,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9533,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=281247,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28406,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=281247,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=27697,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1558,
+ ["unit"]=0
+ }
+ },
+ [15588]={
+ ["next_chapter"]=15589,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28902,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9538,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=284059,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28690,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=284059,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=27697,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1558,
+ ["unit"]=0
+ }
+ },
+ [15589]={
+ ["next_chapter"]=15590,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28917,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9543,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=286900,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=28977,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=286900,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=27697,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1558,
+ ["unit"]=0
+ }
+ },
+ [15590]={
+ ["next_chapter"]=15591,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=28931,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9547,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=289769,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29267,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=289769,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=30594,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1559,
+ ["unit"]=0
+ }
+ },
+ [15591]={
+ ["next_chapter"]=15592,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28945,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9552,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=292667,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29559,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=292667,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=30594,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1559,
+ ["unit"]=0
+ }
+ },
+ [15592]={
+ ["next_chapter"]=15593,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28959,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9557,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=295593,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=29855,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=295593,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=30594,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1559,
+ ["unit"]=0
+ }
+ },
+ [15593]={
+ ["next_chapter"]=15594,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28974,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9561,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=298549,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30153,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=298549,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=30594,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1559,
+ ["unit"]=0
+ }
+ },
+ [15594]={
+ ["next_chapter"]=15595,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=28988,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9566,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=301535,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30455,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=301535,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=30594,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1559,
+ ["unit"]=0
+ }
+ },
+ [15595]={
+ ["next_chapter"]=15596,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29002,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9571,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=304550,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=30760,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=304550,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=30594,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1559,
+ ["unit"]=0
+ }
+ },
+ [15596]={
+ ["next_chapter"]=15597,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29016,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9575,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=307595,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31067,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=307595,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=30594,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1559,
+ ["unit"]=0
+ }
+ },
+ [15597]={
+ ["next_chapter"]=15598,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29031,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9580,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=310671,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31378,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=310671,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=30594,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1559,
+ ["unit"]=0
+ }
+ },
+ [15598]={
+ ["next_chapter"]=15599,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29045,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9585,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=313778,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=31692,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=313778,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=30594,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1559,
+ ["unit"]=0
+ }
+ },
+ [15599]={
+ ["next_chapter"]=15600,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29059,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9590,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=316916,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32009,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=316916,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=30594,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1559,
+ ["unit"]=0
+ }
+ },
+ [15600]={
+ ["next_chapter"]=15601,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_03",
+ ["time_limit"]=60000,
+ ["random_monster"]=210,
+ ["atk_coefficient"]={
+ ["value"]=29074,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9594,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=320085,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32329,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=320085,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=33795,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1560,
+ ["unit"]=0
+ }
+ },
+ [15601]={
+ ["next_chapter"]=15602,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29088,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9599,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=323286,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32652,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=323286,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=33795,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1560,
+ ["unit"]=0
+ }
+ },
+ [15602]={
+ ["next_chapter"]=15603,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29102,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9604,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=326519,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=32978,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=326519,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=33795,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1560,
+ ["unit"]=0
+ }
+ },
+ [15603]={
+ ["next_chapter"]=15604,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29116,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9608,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=329784,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33308,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=329784,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=33795,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1560,
+ ["unit"]=0
+ }
+ },
+ [15604]={
+ ["next_chapter"]=15605,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29131,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9613,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=333082,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33641,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=333082,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=33795,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1560,
+ ["unit"]=0
+ }
+ },
+ [15605]={
+ ["next_chapter"]=15606,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29145,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9618,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=336413,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=33978,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=336413,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=33795,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1560,
+ ["unit"]=0
+ }
+ },
+ [15606]={
+ ["next_chapter"]=15607,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29159,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9623,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=339777,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34317,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=339777,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=33795,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1560,
+ ["unit"]=0
+ }
+ },
+ [15607]={
+ ["next_chapter"]=15608,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29174,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9627,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=343175,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=34661,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=343175,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=33795,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1560,
+ ["unit"]=0
+ }
+ },
+ [15608]={
+ ["next_chapter"]=15609,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29188,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9632,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=346606,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35007,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=346606,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=33795,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1560,
+ ["unit"]=0
+ }
+ },
+ [15609]={
+ ["next_chapter"]=15610,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29202,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9637,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=350072,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35357,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=350072,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=33795,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1560,
+ ["unit"]=0
+ }
+ },
+ [15610]={
+ ["next_chapter"]=15611,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=201,
+ ["atk_coefficient"]={
+ ["value"]=29217,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9642,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=353573,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=35711,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=353573,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=37331,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1561,
+ ["unit"]=0
+ }
+ },
+ [15611]={
+ ["next_chapter"]=15612,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29231,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9646,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=357109,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36068,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=357109,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=37331,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1561,
+ ["unit"]=0
+ }
+ },
+ [15612]={
+ ["next_chapter"]=15613,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29245,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9651,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=360680,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36429,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=360680,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=37331,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1561,
+ ["unit"]=0
+ }
+ },
+ [15613]={
+ ["next_chapter"]=15614,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29260,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9656,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=364287,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=36793,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=364287,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=37331,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1561,
+ ["unit"]=0
+ }
+ },
+ [15614]={
+ ["next_chapter"]=15615,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29274,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9660,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=367930,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37161,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=367930,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=37331,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1561,
+ ["unit"]=0
+ }
+ },
+ [15615]={
+ ["next_chapter"]=15616,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29288,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9665,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=371609,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37532,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=371609,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=37331,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1561,
+ ["unit"]=0
+ }
+ },
+ [15616]={
+ ["next_chapter"]=15617,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29303,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9670,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=375325,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=37908,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=375325,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=37331,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1561,
+ ["unit"]=0
+ }
+ },
+ [15617]={
+ ["next_chapter"]=15618,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29317,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9675,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=379078,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=38287,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=379078,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=37331,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1561,
+ ["unit"]=0
+ }
+ },
+ [15618]={
+ ["next_chapter"]=15619,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29332,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9679,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=382869,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=38670,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=382869,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=37331,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1561,
+ ["unit"]=0
+ }
+ },
+ [15619]={
+ ["next_chapter"]=15620,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29346,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9684,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=386698,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39056,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=386698,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=37331,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1561,
+ ["unit"]=0
+ }
+ },
+ [15620]={
+ ["next_chapter"]=15621,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=29360,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9689,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=390565,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39447,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=390565,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=41237,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1562,
+ ["unit"]=0
+ }
+ },
+ [15621]={
+ ["next_chapter"]=15622,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29375,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9694,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=394470,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=39841,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=394470,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=41237,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1562,
+ ["unit"]=0
+ }
+ },
+ [15622]={
+ ["next_chapter"]=15623,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29389,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9698,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=398415,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=40240,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=398415,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=41237,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1562,
+ ["unit"]=0
+ }
+ },
+ [15623]={
+ ["next_chapter"]=15624,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29403,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9703,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=402399,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=40642,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=402399,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=41237,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1562,
+ ["unit"]=0
+ }
+ },
+ [15624]={
+ ["next_chapter"]=15625,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29418,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9708,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=406423,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41049,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=406423,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=41237,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1562,
+ ["unit"]=0
+ }
+ },
+ [15625]={
+ ["next_chapter"]=15626,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29432,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9713,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=410487,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41459,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=410487,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=41237,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1562,
+ ["unit"]=0
+ }
+ },
+ [15626]={
+ ["next_chapter"]=15627,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29447,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9717,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=414592,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=41874,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=414592,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=41237,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1562,
+ ["unit"]=0
+ }
+ },
+ [15627]={
+ ["next_chapter"]=15628,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29461,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9722,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=418738,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=42293,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=418738,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=41237,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1562,
+ ["unit"]=0
+ }
+ },
+ [15628]={
+ ["next_chapter"]=15629,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29475,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9727,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=422925,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=42715,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=422925,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=41237,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1562,
+ ["unit"]=0
+ }
+ },
+ [15629]={
+ ["next_chapter"]=15630,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29490,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9732,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=427155,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=43143,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=427155,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=41237,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1562,
+ ["unit"]=0
+ }
+ },
+ [15630]={
+ ["next_chapter"]=15631,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=209,
+ ["atk_coefficient"]={
+ ["value"]=29504,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9736,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=431426,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=43574,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=431426,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=45551,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1563,
+ ["unit"]=0
+ }
+ },
+ [15631]={
+ ["next_chapter"]=15632,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29519,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9741,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=435741,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=44010,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=435741,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=45551,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1563,
+ ["unit"]=0
+ }
+ },
+ [15632]={
+ ["next_chapter"]=15633,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29533,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9746,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=440098,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=44450,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=440098,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=45551,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1563,
+ ["unit"]=0
+ }
+ },
+ [15633]={
+ ["next_chapter"]=15634,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29548,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9751,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=444499,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=44894,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=444499,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=45551,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1563,
+ ["unit"]=0
+ }
+ },
+ [15634]={
+ ["next_chapter"]=15635,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29562,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9755,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=448944,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=45343,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=448944,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=45551,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1563,
+ ["unit"]=0
+ }
+ },
+ [15635]={
+ ["next_chapter"]=15636,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29577,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9760,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=453433,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=45797,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=453433,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=45551,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1563,
+ ["unit"]=0
+ }
+ },
+ [15636]={
+ ["next_chapter"]=15637,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29591,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9765,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=457968,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=46255,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=457968,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=45551,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1563,
+ ["unit"]=0
+ }
+ },
+ [15637]={
+ ["next_chapter"]=15638,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29605,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9770,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=462547,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=46717,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=462547,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=45551,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1563,
+ ["unit"]=0
+ }
+ },
+ [15638]={
+ ["next_chapter"]=15639,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29620,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9775,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=467173,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=47184,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=467173,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=45551,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1563,
+ ["unit"]=0
+ }
+ },
+ [15639]={
+ ["next_chapter"]=15640,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29634,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9779,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=471845,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=47656,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=471845,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=45551,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1563,
+ ["unit"]=0
+ }
+ },
+ [15640]={
+ ["next_chapter"]=15641,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=29649,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9784,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=476563,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=48133,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=476563,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=50317,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1564,
+ ["unit"]=0
+ }
+ },
+ [15641]={
+ ["next_chapter"]=15642,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29663,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9789,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=481329,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=48614,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=481329,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=50317,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1564,
+ ["unit"]=0
+ }
+ },
+ [15642]={
+ ["next_chapter"]=15643,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29678,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9794,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=486142,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=49100,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=486142,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=50317,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1564,
+ ["unit"]=0
+ }
+ },
+ [15643]={
+ ["next_chapter"]=15644,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29692,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9798,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=491003,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=49591,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=491003,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=50317,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1564,
+ ["unit"]=0
+ }
+ },
+ [15644]={
+ ["next_chapter"]=15645,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29707,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9803,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=495913,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=50087,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=495913,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=50317,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1564,
+ ["unit"]=0
+ }
+ },
+ [15645]={
+ ["next_chapter"]=15646,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29721,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9808,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=500873,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=50588,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=500873,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=50317,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1564,
+ ["unit"]=0
+ }
+ },
+ [15646]={
+ ["next_chapter"]=15647,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29736,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9813,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=505881,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=51094,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=505881,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=50317,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1564,
+ ["unit"]=0
+ }
+ },
+ [15647]={
+ ["next_chapter"]=15648,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29750,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9818,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=510940,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=51605,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=510940,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=50317,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1564,
+ ["unit"]=0
+ }
+ },
+ [15648]={
+ ["next_chapter"]=15649,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29765,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9822,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=516049,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=52121,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=516049,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=50317,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1564,
+ ["unit"]=0
+ }
+ },
+ [15649]={
+ ["next_chapter"]=15650,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29779,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9827,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=521210,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=52642,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=521210,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=50317,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1564,
+ ["unit"]=0
+ }
+ },
+ [15650]={
+ ["next_chapter"]=15651,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=29794,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9832,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=526422,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=53169,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=526422,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=55581,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1565,
+ ["unit"]=0
+ }
+ },
+ [15651]={
+ ["next_chapter"]=15652,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29808,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9837,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=531686,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=53700,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=531686,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=55581,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1565,
+ ["unit"]=0
+ }
+ },
+ [15652]={
+ ["next_chapter"]=15653,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29823,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9842,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=537003,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=54237,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=537003,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=55581,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1565,
+ ["unit"]=0
+ }
+ },
+ [15653]={
+ ["next_chapter"]=15654,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29837,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9846,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=542373,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=54780,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=542373,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=55581,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1565,
+ ["unit"]=0
+ }
+ },
+ [15654]={
+ ["next_chapter"]=15655,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29852,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9851,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=547797,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=55327,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=547797,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=55581,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1565,
+ ["unit"]=0
+ }
+ },
+ [15655]={
+ ["next_chapter"]=15656,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29867,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9856,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=553275,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=55881,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=553275,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=55581,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1565,
+ ["unit"]=0
+ }
+ },
+ [15656]={
+ ["next_chapter"]=15657,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29881,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9861,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=558808,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=56440,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=558808,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=55581,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1565,
+ ["unit"]=0
+ }
+ },
+ [15657]={
+ ["next_chapter"]=15658,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29896,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9866,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=564396,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=57004,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=564396,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=55581,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1565,
+ ["unit"]=0
+ }
+ },
+ [15658]={
+ ["next_chapter"]=15659,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29910,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9870,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=570040,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=57574,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=570040,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=55581,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1565,
+ ["unit"]=0
+ }
+ },
+ [15659]={
+ ["next_chapter"]=15660,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29925,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9875,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=575740,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=58150,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=575740,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=55581,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1565,
+ ["unit"]=0
+ }
+ },
+ [15660]={
+ ["next_chapter"]=15661,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=29939,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9880,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=581497,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=58731,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=581497,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=61396,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1566,
+ ["unit"]=0
+ }
+ },
+ [15661]={
+ ["next_chapter"]=15662,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29954,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9885,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=587312,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=59319,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=587312,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=61396,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1566,
+ ["unit"]=0
+ }
+ },
+ [15662]={
+ ["next_chapter"]=15663,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29968,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9890,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=593186,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=59912,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=593186,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=61396,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1566,
+ ["unit"]=0
+ }
+ },
+ [15663]={
+ ["next_chapter"]=15664,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29983,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9894,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=599117,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=60511,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=599117,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=61396,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1566,
+ ["unit"]=0
+ }
+ },
+ [15664]={
+ ["next_chapter"]=15665,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=29998,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9899,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=605109,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=61116,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=605109,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=61396,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1566,
+ ["unit"]=0
+ }
+ },
+ [15665]={
+ ["next_chapter"]=15666,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30012,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9904,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=611160,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=61727,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=611160,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=61396,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1566,
+ ["unit"]=0
+ }
+ },
+ [15666]={
+ ["next_chapter"]=15667,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30027,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9909,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=617271,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=62344,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=617271,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=61396,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1566,
+ ["unit"]=0
+ }
+ },
+ [15667]={
+ ["next_chapter"]=15668,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30041,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9914,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=623444,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=62968,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=623444,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=61396,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1566,
+ ["unit"]=0
+ }
+ },
+ [15668]={
+ ["next_chapter"]=15669,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30056,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9919,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=629678,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=63598,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=629678,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=61396,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1566,
+ ["unit"]=0
+ }
+ },
+ [15669]={
+ ["next_chapter"]=15670,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30071,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9923,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=635975,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=64233,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=635975,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=61396,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1566,
+ ["unit"]=0
+ }
+ },
+ [15670]={
+ ["next_chapter"]=15671,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=213,
+ ["atk_coefficient"]={
+ ["value"]=30085,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9928,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=642335,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=64876,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=642335,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=67819,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1567,
+ ["unit"]=0
+ }
+ },
+ [15671]={
+ ["next_chapter"]=15672,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30100,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9933,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=648758,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=65525,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=648758,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=67819,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1567,
+ ["unit"]=0
+ }
+ },
+ [15672]={
+ ["next_chapter"]=15673,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30115,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9938,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=655246,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=66180,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=655246,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=67819,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1567,
+ ["unit"]=0
+ }
+ },
+ [15673]={
+ ["next_chapter"]=15674,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30129,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9943,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=661798,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=66842,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=661798,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=67819,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1567,
+ ["unit"]=0
+ }
+ },
+ [15674]={
+ ["next_chapter"]=15675,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30144,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9947,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=668416,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=67510,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=668416,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=67819,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1567,
+ ["unit"]=0
+ }
+ },
+ [15675]={
+ ["next_chapter"]=15676,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30158,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9952,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=675100,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=68185,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=675100,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=67819,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1567,
+ ["unit"]=0
+ }
+ },
+ [15676]={
+ ["next_chapter"]=15677,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30173,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9957,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=681852,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=68867,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=681852,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=67819,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1567,
+ ["unit"]=0
+ }
+ },
+ [15677]={
+ ["next_chapter"]=15678,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30188,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9962,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=688670,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=69556,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=688670,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=67819,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1567,
+ ["unit"]=0
+ }
+ },
+ [15678]={
+ ["next_chapter"]=15679,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30202,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9967,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=695557,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=70251,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=695557,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=67819,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1567,
+ ["unit"]=0
+ }
+ },
+ [15679]={
+ ["next_chapter"]=15680,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30217,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9972,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=702512,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=70954,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=702512,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=67819,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1567,
+ ["unit"]=0
+ }
+ },
+ [15680]={
+ ["next_chapter"]=15681,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=212,
+ ["atk_coefficient"]={
+ ["value"]=30232,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9976,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=709537,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=71663,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=709537,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=74914,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1568,
+ ["unit"]=0
+ }
+ },
+ [15681]={
+ ["next_chapter"]=15682,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30246,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9981,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=716633,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=72380,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=716633,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=74914,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1568,
+ ["unit"]=0
+ }
+ },
+ [15682]={
+ ["next_chapter"]=15683,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30261,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9986,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=723799,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=73104,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=723799,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=74914,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1568,
+ ["unit"]=0
+ }
+ },
+ [15683]={
+ ["next_chapter"]=15684,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30276,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9991,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=731037,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=73835,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=731037,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=74914,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1568,
+ ["unit"]=0
+ }
+ },
+ [15684]={
+ ["next_chapter"]=15685,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30290,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=9996,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=738347,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=74573,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=738347,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=74914,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1568,
+ ["unit"]=0
+ }
+ },
+ [15685]={
+ ["next_chapter"]=15686,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30305,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=10001,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=745731,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=75319,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=745731,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=74914,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1568,
+ ["unit"]=0
+ }
+ },
+ [15686]={
+ ["next_chapter"]=15687,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30320,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=10006,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=753188,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=76072,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=753188,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=74914,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1568,
+ ["unit"]=0
+ }
+ },
+ [15687]={
+ ["next_chapter"]=15688,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30334,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=10010,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=760720,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=76833,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=760720,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=74914,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1568,
+ ["unit"]=0
+ }
+ },
+ [15688]={
+ ["next_chapter"]=15689,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30349,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=10015,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=768327,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=77601,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=768327,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=74914,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1568,
+ ["unit"]=0
+ }
+ },
+ [15689]={
+ ["next_chapter"]=15690,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30364,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=10020,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=776011,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=78377,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=776011,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=74914,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1568,
+ ["unit"]=0
+ }
+ },
+ [15690]={
+ ["next_chapter"]=15691,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=205,
+ ["atk_coefficient"]={
+ ["value"]=30379,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=10025,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=783771,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=79161,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=783771,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=82752,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1569,
+ ["unit"]=0
+ }
+ },
+ [15691]={
+ ["next_chapter"]=15692,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30393,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=10030,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=791608,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=79952,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=791608,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=82752,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1569,
+ ["unit"]=0
+ }
+ },
+ [15692]={
+ ["next_chapter"]=15693,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30408,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=10035,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=799525,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=80752,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=799525,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=82752,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1569,
+ ["unit"]=0
+ }
+ },
+ [15693]={
+ ["next_chapter"]=15694,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30423,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=10040,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=807520,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=81559,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=807520,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=82752,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1569,
+ ["unit"]=0
+ }
+ },
+ [15694]={
+ ["next_chapter"]=15695,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30438,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=10044,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=815595,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=82375,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=815595,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=82752,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1569,
+ ["unit"]=0
+ }
+ },
+ [15695]={
+ ["next_chapter"]=15696,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30452,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=10049,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=823751,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=83199,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=823751,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=82752,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1569,
+ ["unit"]=0
+ }
+ },
+ [15696]={
+ ["next_chapter"]=15697,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30467,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=10054,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=831988,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=84031,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=831988,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=82752,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1569,
+ ["unit"]=0
+ }
+ },
+ [15697]={
+ ["next_chapter"]=15698,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30482,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=10059,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=840308,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=84871,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=840308,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=82752,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1569,
+ ["unit"]=0
+ }
+ },
+ [15698]={
+ ["next_chapter"]=15699,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30496,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=10064,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=848711,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=85720,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=848711,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=82752,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1569,
+ ["unit"]=0
+ }
+ },
+ [15699]={
+ ["next_chapter"]=15700,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30511,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=10069,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=857198,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=86577,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=857198,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=82752,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1569,
+ ["unit"]=0
+ }
+ },
+ [15700]={
+ ["next_chapter"]=15701,
+ ["type"]=2,
+ ["scene"]="ui_chapter_bg_main_04",
+ ["time_limit"]=60000,
+ ["random_monster"]=202,
+ ["atk_coefficient"]={
+ ["value"]=30526,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=10074,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=865770,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=87443,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=865770,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=91410,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1570,
+ ["unit"]=0
+ }
+ },
+ [15701]={
+ ["next_chapter"]=15702,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30541,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=10078,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=874428,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=88317,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=874428,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=91410,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1570,
+ ["unit"]=0
+ }
+ },
+ [15702]={
+ ["next_chapter"]=15703,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30556,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=10083,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=883172,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=89200,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=883172,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=91410,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1570,
+ ["unit"]=0
+ }
+ },
+ [15703]={
+ ["next_chapter"]=15704,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30570,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=10088,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=892004,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=90092,
+ ["unit"]=22
+ },
+ ["idle_gold"]={
+ ["value"]=892004,
+ ["unit"]=21
+ },
+ ["chapter_drop"]=63,
+ ["grasp_gold_reward"]={
+ ["value"]=91410,
+ ["unit"]=22
+ },
+ ["grasp_mastery_reward"]={
+ ["value"]=1570,
+ ["unit"]=0
+ }
+ },
+ [15704]={
+ ["next_chapter"]=15705,
+ ["type"]=1,
+ ["scene"]="ui_chapter_bg_main_05",
+ ["random_monster"]=100,
+ ["atk_coefficient"]={
+ ["value"]=30585,
+ ["unit"]=9
+ },
+ ["hp_coefficient"]={
+ ["value"]=10093,
+ ["unit"]=10
+ },
+ ["gold_reward"]={
+ ["value"]=900924,
+ ["unit"]=21
+ },
+ ["quick_pass_gold_reward"]={
+ ["value"]=90993,
+ ["unit"]=22
+ },